/* =============================================================================
   DecoScape Commercial — Atlantic Collection Landing Page
   style.css  ·  base + component styles (desktop-first, mobile in responsive.css)
   ============================================================================= */

/* ------------------------------ Design tokens ----------------------------- */
:root {
  /* Brand palette (DecoScape Branding Guidelines) */
  --bg: #ffffff;
  --bg-soft: #f5f1ea;      /* light cream tint */
  --bg-sand: #e9e2d6;      /* brand cream  · e9e2d6 */
  --ink: #1a1a1a;          /* brand near-black · 1a1a1a */
  --ink-soft: #3a3a3a;     /* brand dark grey · 3a3a3a */
  --brand: #51483b;        /* primary dark golden-brown · 51483b */
  --brand-2: #7f705b;      /* secondary golden-brown · 7f705b */
  --muted: #6f6960;        /* warm grey text */
  --line: #e3ddd2;         /* hairline (brownish) */
  --accent: #7f705b;       /* accent = golden-brown */
  --accent-deep: #51483b;
  --accent-light: #b6a17d; /* lighter gold for dark backgrounds */
  --white: #ffffff;

  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(26, 26, 26, .04), 0 4px 14px rgba(26, 26, 26, .05);
  --shadow-md: 0 6px 20px rgba(26, 26, 26, .07), 0 20px 50px rgba(26, 26, 26, .08);
  --shadow-lg: 0 30px 80px rgba(26, 26, 26, .16);

  --container: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  /* Typography — Athelas (titles) + Montserrat (everything else).
     Windows/non-Apple visitors fall back to Cormorant Garamond, then Georgia. */
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Athelas", "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -----------------------------------------------------------------------------
   Athelas — brand title font.
   Athelas is a licensed font (bundled on Apple devices; not a Google Font).
   `local()` uses it on any device that already has it installed. To display it
   to ALL visitors, add the licensed web files to /assets/fonts/ (see that
   folder's README) — they will be picked up automatically below.
   ----------------------------------------------------------------------------- */
@font-face {
  font-family: "Athelas";
  src: local("Athelas"),
       url("../assets/fonts/Athelas.woff2") format("woff2"),
       url("../assets/fonts/Athelas.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Athelas";
  src: local("Athelas Italic"),
       url("../assets/fonts/Athelas-Italic.woff2") format("woff2"),
       url("../assets/fonts/Athelas-Italic.woff") format("woff");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------ Reset / base ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 0; color: var(--ink); }
/* Brand: titles set in Athelas, always uppercase with open kerning. */
h1, h2 { text-transform: uppercase; letter-spacing: 0.04em; }
h3 { letter-spacing: 0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: 800px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------- Buttons -------------------------------- */
.btn {
  --btn-py: .95rem; --btn-px: 1.75rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn-sm { --btn-py: .65rem; --btn-px: 1.25rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-invert { color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost-invert:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* --------------------------------- Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .9rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { display: block; height: 32px; width: auto; }
.brand-tag { font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-left: .6rem; border-left: 1px solid var(--line); }

.eyebrow { font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; }
.eyebrow .google-g { display: inline-block; }

/* ---------------------------- Hero (full-bleed) --------------------------- */
.hero { position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; z-index: 0; }
/* Keep the photo's real color; slight left-weighted scrim just for text legibility. */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,14,11,.76) 0%, rgba(16,14,11,.55) 32%, rgba(16,14,11,.22) 58%, rgba(16,14,11,0) 82%),
    linear-gradient(180deg, rgba(16,14,11,0) 55%, rgba(16,14,11,.22) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.05fr minmax(380px, 460px); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { max-width: 640px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.34);
  padding: .55rem 1.1rem; border-radius: 999px; margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-light); box-shadow: 0 0 0 4px rgba(182,161,125,.28); }

.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.9rem); line-height: 1.06; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--bg-sand); text-transform: uppercase; }

.hero .lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: rgba(255,255,255,.92); max-width: 56ch; margin-bottom: 1.9rem; text-shadow: 0 1px 14px rgba(0,0,0,.3); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; }
.hero-badges li { position: relative; padding-left: 1.5rem; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.94); }
.hero-badges li::before { content: ""; position: absolute; left: 0; top: .45em; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-light); }

/* Brand golden-brown CTA */
.btn-gold { background: linear-gradient(180deg, #8a7961, #7f705b); color: #f6f1e8; box-shadow: 0 10px 24px rgba(81,72,59,.32); }
.btn-gold:hover { background: linear-gradient(180deg, #7f705b, #6b5d49); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(81,72,59,.4); }

/* Hero lead-form card */
/* Glassmorphism lead form */
.hero-form-card {
  background: rgba(30, 26, 22, .34);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(1.4rem, 2vw, 1.9rem);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(20px) saturate(130%); -webkit-backdrop-filter: blur(20px) saturate(130%);
}
.hero-form-head { margin-bottom: 1.1rem; }
.hero-form-head h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: .35rem; color: #fff; }
.hero-form-head p { color: rgba(255,255,255,.78); font-size: .92rem; }
.hero-form-card .quote-form { display: grid; grid-template-columns: 1fr; gap: .6rem; background: none; padding: 0; box-shadow: none; }
.hero-form-card .field label { font-size: .82rem; color: rgba(255,255,255,.92); font-weight: 500; }
.hero-form-card .field input, .hero-form-card .field textarea, .hero-form-card .field select {
  padding: .72rem .85rem; font-size: .95rem; color: var(--ink);
  background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5);
}
.hero-form-card .field input::placeholder, .hero-form-card .field textarea::placeholder { color: #7a756c; }
.hero-form-card .field input:focus, .hero-form-card .field textarea:focus, .hero-form-card .field select:focus { background: #fff; border-color: var(--accent-light); }
.hero-form-card .form-fineprint { font-size: .74rem; color: rgba(255,255,255,.7); }

/* --------------------------------- Trust bar ------------------------------ */
.trust-bar { background: var(--brand); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding-block: 1.6rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: .15rem; position: relative; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: calc(-.5rem - 1px); top: 50%; transform: translateY(-50%); height: 60%; width: 1px; background: rgba(255,255,255,.14); }
.trust-item strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: #fff; }
.trust-item span { font-size: .82rem; color: rgba(255,255,255,.66); }

/* -------------------------------- Sections -------------------------------- */
.section { padding-block: var(--section-y); }
.section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }

/* Perfect For — chips */
.perfect-for { background: var(--bg-soft); }
.chip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; max-width: 950px; margin-inline: auto; }
.chip-grid li {
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft);
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 500; font-size: .98rem;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.chip-grid li:hover { transform: translateY(-3px); border-color: var(--accent); }

/* Why DecoScape — feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-index { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--accent); margin-bottom: 1rem; letter-spacing: .05em; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* Showcase — product grid */
.showcase { background: var(--bg-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.product-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--bg-sand); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-cat { position: absolute; top: 1rem; left: 1rem; background: rgba(255, 255, 255, .92); color: var(--ink-soft); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px; backdrop-filter: blur(4px); }
.product-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.product-body p {
  color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2;
  overflow: hidden;
}
.product-view {
  align-self: flex-start; display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem; color: var(--ink); border: none; background: none; cursor: pointer; padding: 0;
}
.product-view .arrow { transition: transform .3s var(--ease); color: var(--accent); }
.product-card:hover .product-view .arrow { transform: translateX(5px); }

/* Applications — 2-column list layout */
.app-list { max-width: 1040px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(1.5rem, 4vw, 3.5rem); border-top: 1px solid var(--line); }
.app-row {
  display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 1.25rem;
  padding: clamp(1.2rem, 2.2vw, 1.7rem) .5rem;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.app-row:hover { background: var(--bg-soft); padding-left: 1.2rem; }
.app-num { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--accent); letter-spacing: .05em; }
.app-row-text { display: flex; flex-direction: column; gap: .35rem; }
.app-row-text h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.app-row-text p { color: var(--muted); font-size: .98rem; max-width: 60ch; }

.app-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 2.5rem; }
.app-tags li { background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); padding: .65rem 1.2rem; border-radius: 999px; font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-sm); }

/* Material & Quality */
.material { background: var(--bg-soft); }
.material-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.material-media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.material-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.material-badge { position: absolute; left: 1.4rem; bottom: 1.4rem; display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.96); border-radius: var(--radius); padding: .9rem 1.2rem; box-shadow: var(--shadow-md); }
.material-badge-num { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--accent); }
.material-badge span:last-child { font-size: .82rem; font-weight: 600; color: var(--ink-soft); line-height: 1.2; }
.material-content h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 1rem; }
.material-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.material-list li { display: flex; gap: 1rem; align-items: flex-start; }
.material-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; background: var(--bg-sand); color: var(--accent); display: grid; place-items: center; font-size: 1rem; }
.material-list h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.material-list p { color: var(--muted); font-size: .95rem; }

/* Process — interactive tab stepper */
.process-stepper { max-width: 960px; margin-inline: auto; }
.process-tabs { display: flex; position: relative; gap: 1rem; }
/* Connector line behind the step numbers. */
.process-tabs::before { content: ""; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line); z-index: 0; }
.process-tab {
  position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; align-items: center; gap: .7rem;
  background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font-body); color: var(--muted);
  transition: color .3s var(--ease);
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
  border-radius: 50%; background: var(--bg-soft); border: 2px solid var(--line); color: var(--muted);
  font-family: var(--font-display); font-size: 1.45rem; transition: all .3s var(--ease);
}
.process-tab:hover .process-num { border-color: var(--accent); color: var(--accent); }
.process-tab.is-active .process-num { background: var(--ink); border-color: var(--ink); color: #fff; transform: scale(1.05); box-shadow: var(--shadow-md); }
.process-name { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); }
.process-tab.is-active .process-name { color: var(--ink); }

.process-panel-wrap { margin-top: 2.2rem; }
.process-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); text-align: center;
  max-width: 720px; margin-inline: auto;
}
.process-panel[hidden] { display: none; }
.process-panel.is-active { animation: procFade .4s var(--ease); }
.process-panel h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.process-panel p { color: var(--muted); font-size: 1rem; }
@keyframes procFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Testimonials — 3-column slider */
.testi-slider { position: relative; margin-inline: auto; padding-inline: 3.5rem; outline: none; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform .6s var(--ease); will-change: transform; --per-view: 3; }
.testi-slide { flex: 0 0 calc(100% / var(--per-view)); box-sizing: border-box; padding: .6rem; display: flex; }
.testi-card {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.4vw, 2.1rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.1rem; width: 100%;
}
.testi-stars { display: inline-flex; gap: .15rem; font-size: 1rem; }
.testi-stars .star { color: var(--line); }
.testi-stars .star.on { color: var(--accent-light); }
.testi-card blockquote { margin: 0; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--ink); flex: 1; }
.testi-person { display: flex; align-items: center; gap: .75rem; padding-top: .4rem; border-top: 1px solid var(--line); }
.testi-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.testi-meta { display: flex; flex-direction: column; }
.testi-name { font-weight: 600; font-size: .95rem; }
.testi-role { color: var(--muted); font-size: .85rem; }
.testi-via { display: inline-flex; align-items: center; gap: .3rem; margin-left: auto; font-size: .78rem; color: var(--muted); font-weight: 500; }

.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.testi-arrow:hover { border-color: var(--accent); background: var(--bg-soft); }
.testi-arrow-prev { left: 0; }
.testi-arrow-next { right: 0; }
.testi-arrow-prev:hover { transform: translateY(-50%) translateX(-3px); }
.testi-arrow-next:hover { transform: translateY(-50%) translateX(3px); }

.testi-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.8rem; }
.testi-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease); }
.testi-dot:hover { background: var(--muted); }
.testi-dot.active { background: var(--accent); transform: scale(1.25); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 1.6rem; font-weight: 600; font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); transition: transform .3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.6rem 1.5rem; color: var(--muted); }

/* Quote form */
.quote { background: var(--bg-sand); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.quote-intro { position: sticky; top: 100px; }
.quote-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 1rem; }
.quote-points { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.quote-points li { position: relative; padding-left: 1.9rem; font-weight: 500; }
.quote-points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--accent); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; }

.quote-form { background: var(--white); padding: clamp(1.8rem, 3vw, 2.6rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .9rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%; resize: vertical;
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236f6b61' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field input:focus, .field textarea:focus, .field select:focus { background-color: #fff; border-color: var(--accent); outline: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; background-color: #fdf3f2; }
.error { color: #c0392b; font-size: .8rem; min-height: 1em; }
.btn-block { grid-column: 1 / -1; }

.btn-spinner { width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; border-radius: 50%; display: none; animation: spin .7s linear infinite; }
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status { grid-column: 1 / -1; font-weight: 600; margin-top: .6rem; min-height: 1.2em; padding: 0.85rem 1.1rem; border-radius: 8px; font-size: 0.95rem; line-height: 1.4; display: none; }
.form-status.success { display: block; background: #0f2e1a; color: #4ade80; border: 1px solid #166534; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.form-status.error { display: block; background: #381313; color: #f87171; border: 1px solid #991b1b; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.form-fineprint { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }

/* ==================== TOAST NOTIFICATION ==================== */
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 99999;
  max-width: 460px;
  width: calc(100% - 4rem);
  pointer-events: none;
}

.toast {
  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #d4af37;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transform: translateY(-30px) scale(0.92);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  border: 1.5px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 0.35rem 0;
  letter-spacing: 0.02em;
}

.toast-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f1ede6;
  margin: 0;
}

.toast-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #c5bfb4;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: scale(1.1);
}

/* Final CTA */
.final-cta { background: var(--brand); color: #fff; text-align: center; border-radius: 0; }
.final-inner { max-width: 760px; margin-inline: auto; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.final-cta p { color: rgba(255, 255, 255, .7); font-size: 1.15rem; margin-bottom: 2.2rem; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.final-cta .btn-primary { background: #fff; color: var(--ink); }
.final-cta .btn-primary:hover { background: var(--bg-soft); }

/* Footer */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: 2.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.footer-copy { color: var(--muted); font-size: .9rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: var(--ink-soft); font-size: .92rem; font-weight: 500; transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--accent); }

/* --------------------------- Reveal animations ---------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------- Modal ------------------------------------ */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2.5rem); }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(20, 19, 16, .6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s var(--ease); }
.modal-dialog {
  position: relative; z-index: 1; width: min(1100px, 100%); max-height: 92vh; overflow: auto;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.98); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.modal.is-open .modal-overlay { opacity: 1; }
.modal.is-open .modal-dialog { transform: none; opacity: 1; }

.modal-close { position: absolute; top: .9rem; right: 1rem; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .9); color: var(--ink); font-size: 1.8rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), background .2s var(--ease); }
.modal-close:hover { transform: rotate(90deg); background: #fff; }

.modal-body { display: grid; grid-template-columns: 1.15fr 1fr; }
.modal-gallery { position: relative; background: var(--bg-sand); padding: clamp(1rem, 2vw, 1.6rem); display: flex; flex-direction: column; gap: 1rem; }
.modal-stage { position: relative; aspect-ratio: 4 / 3.2; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); display: grid; place-items: center; cursor: zoom-in; }
.modal-stage img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), opacity .3s var(--ease); }
.modal-stage.zoomed { cursor: zoom-out; }
.modal-stage.zoomed img { transform: scale(1.9); }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .92); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: background .2s var(--ease), transform .2s var(--ease); }
.modal-nav:hover { background: #fff; }
.modal-prev { left: calc(clamp(1rem, 2vw, 1.6rem) + .4rem); }
.modal-next { right: calc(clamp(1rem, 2vw, 1.6rem) + .4rem); }
.modal-nav.modal-prev:hover { transform: translateY(-50%) translateX(-3px); }
.modal-nav.modal-next:hover { transform: translateY(-50%) translateX(3px); }
.modal-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.modal-thumb { width: 66px; height: 66px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: none; opacity: .65; transition: opacity .2s var(--ease), border-color .2s var(--ease); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumb.active { opacity: 1; border-color: var(--accent); }

.modal-info { padding: clamp(1.8rem, 3vw, 3rem); display: flex; flex-direction: column; }
.modal-info h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 1rem; }
.modal-desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 1.6rem; }
.modal-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: auto; padding-bottom: 1.8rem; }
.modal-specs li { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .95rem; font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.modal-link { margin-top: 1rem; font-weight: 600; font-size: .92rem; color: var(--accent); }
.modal-link:hover { color: var(--accent-deep); }

.no-scroll { overflow: hidden; }
