/* =====================================================================
   PALMŌ RETREATS — Stylesheet
   Quiet luxury · Editorial · Bone, Sand, Espresso, Champagne
   ===================================================================== */

/* ---------- 0. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --bone:        #F5F0E8;
  --bone-light:  #EFE8DC;
  --sand:        #E8DDC9;
  --sand-deep:   #DBCDB3;
  --soft-stone:  #D4C9B5;
  --stone:       #6B6258;
  --espresso:    #2A2520;
  --charcoal:    #1F1A14;
  --champagne:   #B8A07E;
  --champagne-soft: #C9B594;
  --muted-aqua:  #7A9A99;
  --sage:        #94A18C;

  /* Typography */
  --font-serif:  "Cormorant Garamond", "EB Garamond", Garamond, "Times New Roman", serif;
  --font-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container:   1280px;
  --reading:     720px;
  --gutter:      clamp(20px, 4vw, 40px);

  /* Vertical rhythm */
  --section-y:   clamp(64px, 9vw, 120px);
  --section-y-sm: clamp(48px, 7vw, 80px);

  /* Motion */
  --ease:        cubic-bezier(.215, .61, .355, 1);
  --t-fast:      .25s var(--ease);
  --t-med:       .45s var(--ease);
  --t-slow:      .8s var(--ease);
}

/* ---------- 2. Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--champagne); color: var(--bone); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--reading); }
.container--wide { max-width: 1440px; }

/* Section */
section { padding-block: var(--section-y); position: relative; }
section.compact { padding-block: var(--section-y-sm); }
.bg-sand { background: var(--sand); }
.bg-espresso { background: var(--espresso); color: var(--bone-light); }
.bg-bone-light { background: var(--bone-light); }

/* ---------- 3. Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.bg-espresso .eyebrow { color: var(--champagne); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3, .bg-espresso h4 { color: var(--bone); }

h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.012em;
}
h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.18;
}
h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
}
h4 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
}

.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--charcoal);
  letter-spacing: 0.005em;
}
.bg-espresso .lead { color: var(--bone); }

p { max-width: 64ch; }
p.wide { max-width: none; }

.body-large { font-size: 17px; line-height: 1.7; }
.caption {
  font-size: 13px; line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--stone);
}

a.in-text {
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
a.in-text:hover { color: var(--champagne); border-color: var(--charcoal); }

/* Decorative divider */
.rule {
  display: block;
  width: 32px; height: 1px;
  background: var(--champagne);
  margin: 1.5rem 0;
}
.rule.center { margin-inline: auto; }
.rule.long { width: 56px; }

/* Glyph divider */
.glyph {
  width: 18px; height: 18px;
  margin: 0 auto;
  fill: none;
  stroke: var(--champagne);
  stroke-width: 1.2;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--bone);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { background: var(--espresso); border-color: var(--espresso); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--bone); }

.btn--light {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--charcoal);
}
.btn--light:hover { background: var(--champagne); border-color: var(--champagne); color: var(--bone); }

.btn--ghost-light {
  background: transparent;
  border-color: var(--bone-light);
  color: var(--bone-light);
}
.btn--ghost-light:hover { background: var(--bone); color: var(--charcoal); border-color: var(--bone); }

.btn .arrow {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--t-fast);
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}
.btn:hover .arrow { width: 22px; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--champagne);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link-arrow:hover { color: var(--champagne); }
.link-arrow .arrow {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--t-fast);
}
.link-arrow .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.link-arrow:hover .arrow { width: 22px; }

.bg-espresso .link-arrow { color: var(--bone-light); border-color: var(--champagne); }
.bg-espresso .link-arrow:hover { color: var(--champagne); }

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--t-med), padding var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--soft-stone);
}
.site-header.is-light:not(.is-scrolled) { color: var(--bone); }
.site-header.is-light:not(.is-scrolled) .nav-link { color: var(--bone-light); }
.site-header.is-light:not(.is-scrolled) .brand-mark { color: var(--bone); }
.site-header.is-light:not(.is-scrolled) .menu-toggle span { background: var(--bone); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.005em;
  color: var(--charcoal);
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  line-height: 1;
  transition: color var(--t-fast);
}
.brand-mark .palmo {
  font-style: normal;
}
.brand-mark .retreats {
  font-family: var(--font-sans);
  font-size: 0.42em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--stone);
  position: relative;
  top: -0.2em;
  margin-left: 0.4em;
}
.site-header.is-light:not(.is-scrolled) .brand-mark .retreats { color: var(--champagne); }

.nav-primary { display: flex; gap: clamp(20px, 2.6vw, 36px); align-items: center; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 4px 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width var(--t-med);
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link:hover { color: var(--champagne); }
.site-header.is-light:not(.is-scrolled) .nav-link:hover { color: var(--champagne); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 101;
}
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--charcoal);
  transition: transform var(--t-med), top var(--t-med), opacity var(--t-fast);
}
.menu-toggle span:nth-child(1) { top: 6px; }
.menu-toggle span:nth-child(2) { top: 12px; }
.menu-toggle span:nth-child(3) { top: 18px; }
body.menu-open .menu-toggle span { background: var(--charcoal); }
body.menu-open .menu-toggle span:nth-child(1) { top: 12px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 99;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav .nav-link {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-stone);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .footer-block {
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  height: clamp(540px, 78vh, 780px);
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bone);
  padding-bottom: clamp(60px, 9vw, 110px);
}
.hero__media {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-color: var(--espresso);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,20,0.18) 0%, rgba(31,26,20,0.0) 28%, rgba(31,26,20,0.0) 50%, rgba(31,26,20,0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-light);
  opacity: 0.85;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--champagne);
}
.hero__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.05;
  color: var(--bone);
  max-width: 16ch;
  letter-spacing: -0.01em;
}
.hero__headline em { font-style: italic; color: var(--champagne-soft); }
.hero__subline {
  margin-top: 24px;
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bone-light);
  opacity: 0.92;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-light);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 28px;
  background: var(--bone-light);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero variant: page hero (smaller) */
.page-hero {
  padding-top: 180px;
  padding-bottom: var(--section-y-sm);
  position: relative;
  background: var(--bone);
}
.page-hero__inner { max-width: 760px; }
.page-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.page-hero .lead { color: var(--stone); }

/* ---------- 7. Brand statement ---------- */
.statement {
  text-align: center;
  padding-block: var(--section-y);
}
.statement__quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0.5;
  color: var(--champagne);
  display: block;
  margin-bottom: 24px;
}
.statement__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1.5;
  font-weight: 400;
  max-width: 30ch;
  margin-inline: auto;
  color: var(--charcoal);
}
.statement__text em { color: var(--champagne); font-style: italic; }
.statement__sig {
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- 8. Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 64px; }
  .section-head--center { grid-template-columns: 1fr; text-align: center; }
  .section-head--center .section-head__lead { margin-inline: auto; }
}
.section-head h2 { letter-spacing: -0.005em; }
.section-head__lead {
  color: var(--stone);
  font-size: 17px;
  line-height: 1.7;
  max-width: 48ch;
}

/* ---------- 9. Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.pillar {
  position: relative;
}
.pillar__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--champagne);
  margin-bottom: 28px;
  display: block;
}
.pillar__icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 1.2;
}
.pillar h3 {
  margin-bottom: 16px;
  font-size: 26px;
}
.pillar p { color: var(--stone); font-size: 16px; line-height: 1.7; max-width: 32ch; }
.pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 1px;
  background: var(--champagne);
}

/* ---------- 10. Process ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 700px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 56px 64px; }
}
@media (min-width: 1000px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.step {
  position: relative;
  padding-top: 32px;
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step__num::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--champagne);
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 400;
}
.step p { color: var(--stone); font-size: 15px; line-height: 1.65; }

/* ---------- 11. Featured Field Note ---------- */
.feature-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .feature-note { grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); }
  .feature-note.reverse > .feature-note__media { order: 2; }
}
.feature-note__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.feature-note__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.feature-note:hover .feature-note__media img { transform: scale(1.04); }
.feature-note__body { padding-block: 16px; }
.feature-note__body h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 20px;
}
.feature-note__body .lead { margin-bottom: 28px; }
.feature-note__body p { color: var(--stone); margin-bottom: 32px; }

/* ---------- 12. Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (min-width: 1000px) {
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

.card {
  display: block;
  position: relative;
  color: inherit;
  group: card;
}
.card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--sand);
  position: relative;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,26,20,0.16));
  opacity: 0;
  transition: opacity var(--t-med);
}
.card:hover .card__media::after { opacity: 1; }

.card__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.card:hover .card__title { color: var(--champagne); }
.card__sub {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
  max-width: 36ch;
}

/* Editorial card variant (Inspiration index) */
.card--editorial .card__media { aspect-ratio: 3/4; }
.card--editorial .card__title { font-size: 28px; }

/* Wide destination card variant */
.card--wide .card__media { aspect-ratio: 5/6; }

/* ---------- 13. Newsletter ---------- */
.newsletter {
  text-align: center;
  padding-block: var(--section-y);
}
.newsletter__inner { max-width: 540px; margin-inline: auto; }
.newsletter h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 16px;
}
.newsletter p { color: var(--stone); margin-bottom: 32px; max-width: 46ch; margin-inline: auto; }

.form-inline {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 4px;
  align-items: stretch;
}
.form-inline input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 0;
  font-size: 15px;
  outline: 0;
  font-family: var(--font-sans);
}
.form-inline input::placeholder { color: var(--stone); opacity: 0.7; }
.form-inline button {
  background: transparent;
  border: 0;
  padding: 12px 0 12px 16px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-fast);
}
.form-inline button:hover { color: var(--champagne); }
.form-fineprint {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--stone);
  max-width: 44ch;
  margin-inline: auto;
}
.form-success {
  background: var(--bone-light);
  border: 1px solid var(--soft-stone);
  padding: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--charcoal);
}
.form-success.hidden { display: none; }

/* ---------- 14. Final CTA ---------- */
.final-cta {
  background: var(--espresso);
  color: var(--bone);
  padding-block: clamp(80px, 12vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at center, rgba(184,160,126,0.06) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; padding-inline: var(--gutter); }
.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  color: var(--bone);
  margin-bottom: 24px;
}
.final-cta h2 em { color: var(--champagne); }
.final-cta p {
  font-size: 17px;
  color: var(--bone-light);
  opacity: 0.88;
  max-width: 44ch;
  margin: 0 auto 40px;
}
.final-cta .glyph { stroke: var(--champagne); margin-bottom: 32px; }

/* ---------- 15. Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--bone-light);
  padding: clamp(64px, 9vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px; }
}
.footer-brand { max-width: 380px; }
.footer-brand .brand-mark { color: var(--bone); margin-bottom: 24px; }
.footer-brand .brand-mark .retreats { color: var(--champagne); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--bone-light);
  opacity: 0.78;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-size: 14px;
  color: var(--bone-light);
  opacity: 0.78;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.footer-col a:hover { opacity: 1; color: var(--champagne); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--bone-light);
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--champagne); opacity: 1; }
.footer-claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  opacity: 0.85;
}

/* ---------- 16. Forms (Contact) ---------- */
.form-stack { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.field label .opt { font-weight: 400; opacity: 0.7; text-transform: none; letter-spacing: 0.02em; font-size: 11px; }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--soft-stone);
  padding: 12px 0;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  outline: 0;
  transition: border-color var(--t-fast);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23B8A07E' stroke-width='1.2' d='M1 1l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--charcoal); }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  cursor: pointer;
}
.field-checkbox input {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--soft-stone);
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field-checkbox input:checked {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.field-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--bone);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.field-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--soft-stone);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.chip input { display: none; }
.chip:hover { border-color: var(--champagne); color: var(--charcoal); }
.chip:has(input:checked) {
  background: var(--charcoal);
  color: var(--bone);
  border-color: var(--charcoal);
}

/* ---------- 17. Editorial article ---------- */
.article-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bone);
  padding-bottom: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(48px, 8vw, 96px);
}
.article-hero__media {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
}
.article-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.10) 0%, transparent 30%, rgba(31,26,20,0.55) 100%);
}
.article-hero__inner { position: relative; z-index: 2; }
.article-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-light);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.article-hero__eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--champagne);
}
.article-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  color: var(--bone);
  max-width: 18ch;
  letter-spacing: -0.005em;
}
.article-hero__sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--bone-light);
  max-width: 52ch;
  opacity: 0.92;
}

.article-body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.article-body p {
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 1.4em;
  color: var(--charcoal);
  max-width: 64ch;
}
.article-body p.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 2em;
}
.article-body h2 {
  font-size: 32px;
  margin-top: 2.6em;
  margin-bottom: 0.6em;
  font-weight: 400;
}
.article-body h2::before {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--champagne);
  margin-bottom: 28px;
}
.article-body figure {
  margin: clamp(48px, 6vw, 72px) 0;
  margin-inline: calc(-1 * var(--gutter));
}
.article-body figure img { width: 100%; height: auto; }
.article-body figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--stone);
  margin-top: 14px;
  padding-inline: var(--gutter);
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--charcoal);
  text-align: center;
  margin: clamp(48px, 6vw, 72px) 0;
  padding-block: 32px;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--champagne);
  margin: 0 auto;
}
.pull-quote::before { margin-bottom: 32px; }
.pull-quote::after { margin-top: 32px; }

/* Two-column inline (article) */
.duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: clamp(40px, 5vw, 64px) 0;
}
@media (min-width: 800px) {
  .duo { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
}
.duo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* Article footer CTA */
.article-cta {
  background: var(--bone-light);
  padding: clamp(48px, 7vw, 72px) clamp(32px, 5vw, 56px);
  margin-top: clamp(48px, 7vw, 80px);
  text-align: center;
  border: 1px solid var(--soft-stone);
}
.article-cta h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}
.article-cta p { color: var(--stone); max-width: 44ch; margin-inline: auto; margin-bottom: 24px; }

/* ---------- 18. Manifesto / About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.4fr; gap: clamp(48px, 7vw, 96px); align-items: start; }
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sand);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-top: 2.5em;
  margin-bottom: 0.6em;
}
.about-text h3:first-child { margin-top: 0; }
.about-text h3::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--champagne);
  margin-bottom: 20px;
}
.about-text p { color: var(--charcoal); margin-bottom: 1.2em; line-height: 1.78; max-width: 60ch; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft-stone);
  font-size: 16px;
  color: var(--charcoal);
}
.about-list li::before {
  content: "—";
  color: var(--champagne);
  font-family: var(--font-serif);
}
.about-list li:last-child { border-bottom: 0; }

/* ---------- 19. Legal pages ---------- */
.legal-content { padding-bottom: var(--section-y); }
.legal-content h2 {
  font-size: 26px;
  margin-top: 3em;
  margin-bottom: 0.8em;
  font-weight: 400;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.75; color: var(--charcoal); margin-bottom: 1em; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 1em; }
.legal-placeholder {
  background: var(--bone-light);
  border-left: 2px solid var(--champagne);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--stone);
  font-style: italic;
}

/* ---------- 20. Utility ---------- */
.text-center { text-align: center; }
.mt-l { margin-top: clamp(32px, 5vw, 56px); }
.mb-l { margin-bottom: clamp(32px, 5vw, 56px); }
.divider {
  width: 100%;
  height: 1px;
  background: var(--soft-stone);
  border: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 16px; top: 16px;
  z-index: 200;
  background: var(--charcoal);
  color: var(--bone);
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 900px) {
  .nav-primary { display: none; }
  .menu-toggle { display: block; }
  section { padding-block: var(--section-y-sm); }
  .hero { height: clamp(540px, 88vh, 720px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
