/* ============================================================
   ARLET — Boutique Wellness Retreats
   Design system & styles
   Palette: warm ivory, sand, sage/olive, espresso, terracotta
   Type: Cormorant Garamond (display serif) + Jost (sans)
   ============================================================ */

:root {
  /* Colour */
  --ivory:      #F6F1E7;
  --cream:      #FBF8F1;
  --sand:       #E9DFCE;
  --sand-deep:  #DcCfb8;
  --olive:      #5E6048;
  --olive-soft: #7C7B5E;
  --sage:       #9AA083;
  --espresso:   #2A2420;
  --bark:       #4A3F35;
  --terracotta: #A9785A;
  --terracotta-soft:#C49A7E;
  --ink:        #2A2622;
  --muted:      #6E665C;
  --line:       rgba(42, 36, 32, 0.14);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Space / motion */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--espresso);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
p  { margin: 0 0 1.1em; }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--terracotta);
  margin: 0 0 1.4rem;
  display: inline-block;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--muted); font-weight: 300; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 46ch; }
.mx-auto { margin-inline: auto; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 1rem 2rem;
  font-family: var(--sans); font-weight: 400; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  border-radius: 100px; border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--espresso); color: var(--cream); }
.btn--primary:hover { background: var(--bark); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--espresso); color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); }
.btn--light { background: rgba(251,248,241,0.92); color: var(--espresso); }
.btn--light:hover { background: var(--cream); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(251,248,241,0.7); color: var(--cream); }
.btn--outline-light:hover { background: rgba(251,248,241,0.14); }
.btn--wa { background: #4A6049; color: var(--cream); }
.btn--wa:hover { background: #3c4f3b; transform: translateY(-2px); }
.link-arrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--espresso); border-bottom: 1px solid var(--terracotta); padding-bottom: 4px; transition: gap .3s; display: inline-flex; gap: .5em; }
.link-arrow:hover { color: var(--terracotta); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow .5s;
  color: var(--cream);
}
.site-header.scrolled {
  background: rgba(246,241,231,0.92);
  backdrop-filter: blur(12px);
  color: var(--espresso);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--serif); font-size: 1.65rem; letter-spacing: 0.42em; padding-left: 0.42em; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 400; position: relative; opacity: 0.9; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 0.7rem 1.4rem; }
.site-header:not(.scrolled) .nav .btn--ghost { border-color: rgba(251,248,241,0.6); color: var(--cream); }
.site-header:not(.scrolled) .nav .btn--ghost:hover { background: rgba(251,248,241,0.15); }
.lang-switch { display: inline-flex; align-items: center; gap: 0.1rem; border: 1px solid currentColor; border-radius: 100px; padding: 2px; opacity: 0.85; }
.lang-switch button { background: none; border: 0; color: currentColor; font-family: var(--sans); font-size: 0.66rem; font-weight: 400; letter-spacing: 0.12em; padding: 0.3rem 0.6rem; border-radius: 100px; opacity: 0.55; transition: opacity .25s, background .25s; line-height: 1; cursor: pointer; }
.lang-switch button.active { opacity: 1; font-weight: 500; background: rgba(127,127,127,0.2); }
.nav-toggle { display: none; background: none; border: 0; color: currentColor; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; margin: 5px auto; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,24,18,0.42) 0%, rgba(30,24,18,0.12) 38%, rgba(28,22,16,0.72) 100%); }
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 8vw, 6rem); max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: 0.4em; }
.hero .lead { color: rgba(251,248,241,0.92); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8; writing-mode: vertical-rl; }
.hero--page { min-height: 70svh; }

/* ---------- Marquee wordmark ---------- */
.wordmark-strip { background: var(--espresso); color: var(--cream); padding-block: 1.6rem; overflow: hidden; }
.wordmark-strip__track { display: flex; gap: 3.5rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.wordmark-strip span { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: 0.5em; opacity: 0.85; }
.wordmark-strip span::after { content: '◦'; margin-left: 3.5rem; color: var(--terracotta-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Promise / intro ---------- */
.promise { background: var(--cream); }
.promise__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.promise__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.promise__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pillars ---------- */
.pillars__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.6rem 2.2rem; transition: transform .5s var(--ease), box-shadow .5s; position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(42,36,32,0.35); }
.pillar__no { font-family: var(--serif); font-size: 1rem; color: var(--terracotta); letter-spacing: .1em; }
.pillar h3 { margin-top: 0.4rem; }
.pillar p { color: var(--muted); margin-bottom: 1.4rem; }
.pillar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pillar li { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--olive); border: 1px solid var(--line); border-radius: 100px; padding: 0.35rem 0.8rem; }

/* ---------- Feature split (alternating image/text) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem,5vw,5rem); }
.feature--reverse .feature__media { order: 2; }
.feature__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature__media:hover img { transform: scale(1.04); }
.feature + .feature { margin-top: clamp(4rem, 8vw, 7rem); }

/* ---------- "Who it's for" ---------- */
.audience { background: var(--olive); color: var(--cream); }
.audience h2 { color: var(--cream); }
.audience__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.6rem; margin-top: 3rem; }
.audience__item { border-top: 1px solid rgba(251,248,241,0.25); padding-top: 1.1rem; }
.audience__item span { font-family: var(--serif); font-size: 1.5rem; color: var(--terracotta-soft); }
.audience__item p { margin: 0.3rem 0 0; color: rgba(251,248,241,0.85); font-size: 0.98rem; }

/* ---------- Programme timeline ---------- */
.programme { background: var(--cream); }
.day-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.day-tab { background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: 0.7rem 1.6rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: .3s; }
.day-tab.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.day-panel { display: none; max-width: 760px; margin-inline: auto; }
.day-panel.active { display: block; animation: fade .5s var(--ease); }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 110px 1fr; gap: 1.5rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.timeline time { font-family: var(--serif); font-size: 1.25rem; color: var(--terracotta); }
.timeline h4 { font-family: var(--sans); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; margin: 0 0 0.3rem; color: var(--espresso); }
.timeline p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to {opacity:1;transform:none;} }

/* ---------- Included / not included ---------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.incl-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem; }
.incl-card h3 { display: flex; align-items: center; gap: 0.6rem; }
.incl-card ul { list-style: none; padding: 0; margin: 0; }
.incl-card li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 0.7rem; align-items: baseline; color: var(--muted); }
.incl-card li:last-child { border-bottom: 0; }
.incl-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex: none; transform: translateY(-2px); }
.incl-card--yes li::before { background: var(--olive); }
.incl-card--no li::before { background: var(--terracotta); opacity: .6; }

/* ---------- Retreat cards ---------- */
.retreat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 1.8rem; }
.retreat-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s; }
.retreat-card:hover { transform: translateY(-6px); box-shadow: 0 28px 55px -30px rgba(42,36,32,0.4); }
.retreat-card__img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.retreat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.retreat-card:hover .retreat-card__img img { transform: scale(1.05); }
.retreat-card__tag { position: absolute; top: 1rem; left: 1rem; background: rgba(251,248,241,0.94); color: var(--espresso); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45rem 0.9rem; border-radius: 100px; }
.retreat-card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.retreat-card__meta { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--terracotta); margin-bottom: 0.6rem; }
.retreat-card h3 { margin-bottom: 0.5rem; }
.retreat-card p { color: var(--muted); font-size: 0.96rem; }
.retreat-card__foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.retreat-card__price { font-family: var(--serif); font-size: 1.5rem; color: var(--espresso); }
.retreat-card__price small { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); display: block; }
.places { font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--olive); }
.places.low { color: var(--terracotta); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--sand); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.6rem; margin-top: 3rem; }
.quote { background: var(--cream); border-radius: var(--radius); padding: 2.4rem; border: 1px solid var(--line); }
.quote__stars { color: var(--terracotta); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 1rem; }
.quote p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; color: var(--bark); font-style: italic; }
.quote cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 2rem; font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.45rem); color: var(--espresso); }
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--terracotta); transition: transform .3s var(--ease); }
.faq-q .plus::before { inset: 11px 0; height: 2px; }
.faq-q .plus::after  { inset: 0 11px; width: 2px; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding-bottom: 1.5rem; color: var(--muted); margin: 0; max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: var(--cream); text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(30,24,18,0.6); }
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: rgba(251,248,241,0.9); }
.cta-band__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.1rem; transition: border .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--olive); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.form-success { background: var(--olive); color: var(--cream); padding: 1rem 1.3rem; border-radius: 12px; margin-bottom: 1.2rem; display: none; }
.form-success.show { display: block; animation: fade .4s var(--ease); }

/* ---------- Contact split ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info a.row, .contact-info .row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info .row span.k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--terracotta); display: block; margin-bottom: 0.2rem; }
.contact-info .row .v { color: var(--espresso); font-size: 1.05rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 2rem; text-align: center; }
.stat strong { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--espresso); display: block; line-height: 1; }
.stat span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(251,248,241,0.8); padding-block: clamp(3.5rem,7vw,5.5rem) 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.footer-grid h4 { color: var(--cream); font-family: var(--sans); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.3rem; }
.footer-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-grid a:hover { color: var(--cream); }
.footer-news { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-news input { flex: 1; background: rgba(251,248,241,0.08); border: 1px solid rgba(251,248,241,0.18); border-radius: 100px; padding: 0.8rem 1.2rem; color: var(--cream); font-family: var(--sans); }
.footer-news input::placeholder { color: rgba(251,248,241,0.5); }
.footer-news button { background: var(--cream); color: var(--espresso); border: 0; border-radius: 100px; padding: 0 1.3rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid rgba(251,248,241,0.15); font-size: 0.78rem; }
.footer-bottom a { margin-left: 1.4rem; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #4A6049; color: var(--cream); display: grid; place-items: center; box-shadow: 0 12px 30px -10px rgba(42,36,32,0.5); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; color: var(--cream); padding-block: clamp(8rem,16vw,12rem) clamp(3rem,6vw,5rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,24,18,0.55), rgba(30,24,18,0.5)); }
.page-hero h1 { color: var(--cream); }
.page-hero .lead { color: rgba(251,248,241,0.9); max-width: 56ch; }

/* ---------- Detail meta bar ---------- */
.meta-bar { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 2rem; display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 1.5rem; }
.meta-bar .k { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--terracotta); }
.meta-bar .v { font-family: var(--serif); font-size: 1.35rem; color: var(--espresso); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.gallery a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .promise__grid, .feature, .feature--reverse .feature__media, .incl-grid, .contact-split, .form-grid { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.6rem; background: var(--cream); color: var(--espresso); padding: 2.5rem; transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: -20px 0 60px -30px rgba(0,0,0,.4); }
  .nav.open { transform: none; }
  .nav a { font-size: 1rem; color: var(--espresso); }
  .nav-toggle { display: block; z-index: 101; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 80px 1fr; gap: 1rem; }
  .meta-bar { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
