/* =====================================================================
   LUXURY HOST — styles.css
   Owner-acquisition site · Kelowna & the Okanagan
   ---------------------------------------------------------------------
   IMAGES TO REPLACE (download royalty-free photos from Unsplash/Pexels,
   put them in an /images folder next to this file, then swap the URLs):
     • .hero          → bright, pristine made-up bedroom / luxury interior (≥2000px wide)
     • .why-media     → a clean, bright Okanagan interior (living room or bedroom)
   Search terms that work well: "luxury bedroom", "clean white bedroom",
   "hotel room", "bright modern living room".
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core neutrals */
  --espresso: #221A16;   /* warm near-black — dark sections, headings */
  --cocoa:    #34271F;   /* layered dark surface */
  --ink:      #2A211C;   /* body text on light */
  --muted:    #6E5C4F;   /* secondary text on light (AA on ivory) */
  --ivory:    #FBF6EF;   /* primary light background */
  --ivory-2:  #F4EBE0;   /* alternate light background */
  --white:    #FFFFFF;

  /* Brand colour from your cards */
  --blush:      #D9B5A8; /* dusty rose */
  --blush-soft: #F0DFD6; /* tinted section background */

  /* Copper foil accents */
  --copper:    #B0744D;  /* primary accent (links, eyebrows, borders) */
  --copper-dk: #8F5B38;  /* deeper copper for text on light if needed */
  --champagne: #D2A877;  /* lighter gold (accents on dark) */

  /* Hairlines */
  --line:      #E8DCCF;
  --line-dark: rgba(210, 168, 119, 0.22);

  /* Muted text on dark */
  --on-dark:        rgba(251, 246, 239, 0.92);
  --on-dark-muted:  rgba(251, 246, 239, 0.66);

  /* The "foil" sheen — used on accent words & the key mark */
  --foil: linear-gradient(100deg, #A9683F 0%, #D9A874 30%, #F0D6B0 50%, #CFA06A 72%, #A9683F 100%);

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 24px 60px -28px rgba(34, 26, 22, 0.45);
  --shadow-sm: 0 10px 30px -18px rgba(34, 26, 22, 0.4);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px; /* offset for the sticky header on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blush); color: var(--espresso); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

.eyebrow {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper-dk);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.eyebrow-light { color: var(--champagne); }

.section-title {
  font-size: clamp(2.05rem, 5vw, 3.3rem);
  margin-bottom: 1rem;
}
.section-title-light { color: var(--ivory); }

.section-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.65;
}
.section-lead-light { color: var(--on-dark-muted); }

/* Foil accent word (used inside headings, e.g. hero <em>) */
em {
  font-style: italic;
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper); /* fallback */
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.82em;
  --btn-pad-x: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-lg { font-size: 1rem; --btn-pad-y: 0.95em; --btn-pad-x: 1.95em; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--foil);
  color: var(--espresso);
  box-shadow: 0 14px 30px -16px rgba(176, 116, 77, 0.85);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -16px rgba(176, 116, 77, 0.95); }

.btn-ghost {
  background: transparent;
  border-color: var(--copper);
  color: var(--copper-dk);
}
.btn-ghost:hover { background: var(--copper); color: var(--white); transform: translateY(-2px); }

.btn-ghost-light { border-color: rgba(251, 246, 239, 0.55); color: var(--ivory); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--espresso); border-color: var(--ivory); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 246, 239, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(34, 26, 22, 0.5);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { display: inline-flex; }
.brand-word {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled .brand-word { color: var(--espresso); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a:not(.nav-cta) {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--on-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease);
}
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }
.site-header.is-scrolled .nav-links > a:not(.nav-cta) { color: var(--ink); }
.site-header.is-scrolled .nav-links > a:not(.nav-cta)::after { background: var(--copper); }

.nav-cta { padding: 0.6em 1.3em; font-size: 0.86rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--espresso); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--espresso);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 8px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* SWAP this image URL with your own /images/hero.jpg.
     The dark gradient under it is a fallback if the image fails to load. */
  background:
    linear-gradient(160deg, #2c211b 0%, #211814 100%),
    #211814;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=2100&q=80");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 19, 16, 0.62) 0%, rgba(26, 19, 16, 0.42) 38%, rgba(26, 19, 16, 0.78) 100%);
}
.hero-content { padding-top: 120px; padding-bottom: 110px; max-width: 860px; }
.hero-title {
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.005em;
  margin: 0.4rem 0 1.4rem;
}
.hero-sub {
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: var(--on-dark);
  max-width: 38ch;
  line-height: 1.6;
  font-weight: 300;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2.2rem 0 2rem; }
.hero-platforms {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.hero-platforms strong { color: var(--champagne); font-weight: 500; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(251, 246, 239, 0.5);
  border-radius: 20px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  width: 3px; height: 8px;
  background: var(--champagne);
  border-radius: 3px;
  margin-top: 7px;
  animation: scrollcue 1.8s infinite var(--ease);
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- Section base ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

.section-head { max-width: 640px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); text-align: center; }
.section-head .section-lead { margin-inline: auto; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head-left .section-lead { margin-inline: 0; }

/* ---------- How it works ---------- */
.how { background: var(--ivory); }
.steps {
  list-style: none;
  display: grid;
  gap: 1.6rem;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 2.2rem 1.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  background: var(--foil);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step-title { font-size: 1.45rem; margin-bottom: 0.55rem; }
.step p { color: var(--muted); font-size: 0.98rem; }
.how-cta { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }

/* ---------- Services / feature cards ---------- */
.services { background: var(--ivory-2); position: relative; }
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--blush);
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blush-soft);
  color: var(--copper-dk);
  margin-bottom: 1.15rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 0.45rem; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Why Luxury Host (dark) ---------- */
.why { background: var(--espresso); position: relative; overflow: hidden; }
.why::after {
  /* soft copper glow */
  content: ""; position: absolute;
  width: 480px; height: 480px;
  right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(210, 168, 119, 0.16), transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; gap: 2.6rem; align-items: center; position: relative; z-index: 1; }
.why-media {
  min-height: 320px;
  border-radius: var(--radius);
  /* SWAP image → /images/why.jpg. Gradient fallback shows if it fails. */
  background:
    linear-gradient(135deg, rgba(176,116,77,0.25), rgba(34,26,22,0.25)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1400&q=80"),
    #4a3a30;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.why-list { list-style: none; margin-top: 2rem; display: grid; gap: 1.5rem; }
.why-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-key {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  background: rgba(210, 168, 119, 0.08);
  color: var(--champagne);
}
.why-key svg { width: 24px; height: 24px; }
.why-list h3 { color: var(--ivory); font-size: 1.35rem; margin-bottom: 0.25rem; }
.why-list p { color: var(--on-dark-muted); font-size: 0.96rem; }

/* ---------- Owner benefits ---------- */
.benefits { background: var(--blush-soft); }
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.benefit-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: var(--shadow); }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--copper-dk);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--ivory); }
.faq-inner { display: grid; gap: 2.6rem; align-items: start; }
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item.open { border-color: var(--blush); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--espresso);
}
.faq-icon {
  flex: none;
  position: relative;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--copper);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.4rem 1.3rem; }
.faq-a p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Lead-capture form ---------- */
.list { background: var(--cocoa); position: relative; }
.list-grid { display: grid; gap: 2.6rem; align-items: center; }
.list-assurances { list-style: none; margin: 1.8rem 0; display: grid; gap: 0.7rem; }
.list-assurances li { display: flex; gap: 0.7rem; align-items: center; color: var(--on-dark); font-size: 0.98rem; }
.list-assurances span { color: var(--champagne); font-weight: 600; }
.list-contact { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 1.4rem; }
.list-contact a { color: var(--champagne); font-size: 1.05rem; letter-spacing: 0.02em; transition: color 0.25s var(--ease); }
.list-contact a:hover { color: var(--ivory); }

.form-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.field-row { margin-bottom: 1rem; }
.field-row.two { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.45rem;
}
.field .optional { text-transform: none; letter-spacing: 0; color: #a7988b; }
.field input, .field select, .field textarea {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(176, 116, 77, 0.16);
}
.form-card .btn-block { margin-top: 0.6rem; }
.form-fineprint { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; line-height: 1.5; }
.form-status { font-size: 0.95rem; margin-top: 0.9rem; font-weight: 500; }
.form-status.success { color: #2f7d50; }
.form-status.error { color: #b3402f; }
.form-fallback { font-size: 0.88rem; margin-top: 0.7rem; color: var(--muted); }
.form-fallback a { color: var(--copper-dk); text-decoration: underline; text-underline-offset: 2px; }

/* honeypot — hidden from people, visible to bots */
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: var(--on-dark); padding-top: clamp(3.4rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.brand-footer .brand-word { color: var(--ivory); }
.footer-tag { color: var(--on-dark-muted); font-size: 0.94rem; margin-top: 1rem; max-width: 30ch; }
.footer-col h4 {
  font-family: "Jost", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a { display: block; color: var(--on-dark-muted); font-size: 0.95rem; padding: 0.28rem 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-area { color: var(--on-dark-muted); font-size: 0.92rem; margin-top: 0.6rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; align-items: center;
  padding: 1.6rem 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
  color: var(--on-dark-muted);
}
.footer-built { letter-spacing: 0.08em; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* gentle stagger inside grids */
.card-grid .feature-card:nth-child(2), .benefit-grid .benefit-card:nth-child(2), .steps .step:nth-child(2) { transition-delay: 0.08s; }
.card-grid .feature-card:nth-child(3), .benefit-grid .benefit-card:nth-child(3), .steps .step:nth-child(3) { transition-delay: 0.16s; }
.card-grid .feature-card:nth-child(4), .benefit-grid .benefit-card:nth-child(4), .steps .step:nth-child(4) { transition-delay: 0.24s; }
.card-grid .feature-card:nth-child(5) { transition-delay: 0.10s; }
.card-grid .feature-card:nth-child(6) { transition-delay: 0.18s; }

/* ---------- Focus visibility (a11y) ---------- */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================================
   RESPONSIVE — mobile-first; below are progressive enhancements up
   ===================================================================== */
@media (min-width: 600px) {
  .field-row.two { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 760px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}

@media (min-width: 980px) {
  .container { padding-inline: 32px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
  .why-media { min-height: 520px; }
  .faq-inner { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
  .list-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; }
  .footer-bottom { padding-inline: 32px; }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Mobile nav (drawer) ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    background: var(--espresso);
    padding: 96px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.nav-cta) { color: var(--on-dark); font-size: 1.1rem; padding: 0.7rem 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .site-header.is-scrolled .nav-links > a:not(.nav-cta) { color: var(--on-dark); }
  .nav-cta { margin-top: 1.4rem; width: 100%; }

  /* hamburger → X */
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle.active span { background: var(--ivory); }

  body.nav-open { overflow: hidden; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
