/*
Theme Name: Garden Room
Theme URI: https://roomingarden.com
Author: Garden Room
Author URI: https://roomingarden.com
Description: Modern editorial theme for Garden Room — backyard offices and garden rooms. Elementor-compatible.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: garden-room
Tags: custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/
/* ==========================================================================
   Garden Room — Site Styles
   Design direction: refined editorial minimalism
   Palette: charcoal + cedar wood + warm off-white
   Type: Fraunces (display serif) + Inter Tight (body grotesque)
   ========================================================================== */

/* Fonts are loaded via wp_enqueue_style in functions.php (non-blocking, with display=swap). */

:root {
  /* Colors */
  --charcoal-900: #1a1a1a;
  --charcoal-800: #242424;
  --charcoal-700: #2e2e2e;
  --charcoal-500: #4a4a4a;
  --charcoal-300: #8a8a8a;
  --charcoal-200: #b8b8b8;

  --cedar-700: #8a4a1f;
  --cedar-600: #a8612e;
  --cedar-500: #c47845;
  --cedar-400: #d99670;
  --cedar-100: #f4e6d6;

  --bone: #f7f4ee;
  --bone-warm: #efe9dd;
  --paper: #fbfaf6;
  --white: #ffffff;

  --green-soft: #7a8862;
  --green-mist: #e8ebe0;

  --bg: var(--paper);
  --text: var(--charcoal-900);
  --text-muted: var(--charcoal-500);
  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(26, 26, 26, 0.16);

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container: 1320px;
  --container-narrow: 980px;
  --container-text: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  display: inline-block;
}
.eyebrow--cedar { color: var(--cedar-600); }
.eyebrow--light { color: rgba(255,255,255,0.7); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  font-feature-settings: "ss01";
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-variation-settings: "opsz" 48; }
h4 { font-size: 1.15rem; font-variation-settings: "opsz" 24; }

.italic-em {
  font-style: italic;
  font-weight: 300;
  color: var(--cedar-600);
}

p { margin: 0 0 1rem; }
p.lede {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ===== Layout primitives ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ===== WordPress admin bar compensation ===== */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }
@media screen and (max-width: 600px) {
  .admin-bar .site-nav { top: 0; }
  html.wp-toolbar { padding-top: 0 !important; }
}

/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 250, 246, 0.78);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 48;
}
.brand__logo-pic {
  display: block;
}
.brand__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 880px) {
  .brand__logo { height: 52px; }
}
@media (max-width: 540px) {
  .brand__logo { height: 44px; }
}
.site-foot .brand__logo {
  filter: invert(1) brightness(1.2);
  height: 88px;
}
.brand__mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--charcoal-900);
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0;
  font-weight: 600;
  background: var(--charcoal-900);
  color: var(--bone);
  align-self: center;
}
.brand__name { line-height: 1; }
.brand__name em { font-style: italic; color: var(--cedar-600); font-weight: 300; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--charcoal-700);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--charcoal-900); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--cedar-600);
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--charcoal-900);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal-900);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1.5rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    gap: 1.1rem;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn--ghost { display: none; }
}
@media (max-width: 480px) {
  .nav-cta { gap: 0.4rem; }
  .nav-cta .btn--small { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
  .site-nav__inner { gap: 0.5rem; padding-block: 0.7rem; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--charcoal-900);
  color: var(--paper);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--charcoal-700); transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.25); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--cedar { background: var(--cedar-600); }
.btn--cedar:hover { background: var(--cedar-700); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal-900);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: var(--charcoal-900); color: var(--paper); border-color: var(--charcoal-900); }

.btn--light {
  background: rgba(255,255,255,0.94);
  color: var(--charcoal-900);
}
.btn--light:hover { background: var(--white); }

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--paper); }

.btn--small { padding: 0.65rem 1.15rem; font-size: 0.85rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal-900);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 8vh, 5rem);
  width: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.hero h1 {
  color: var(--paper);
  max-width: 14ch;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cedar-400);
}
.hero__sub {
  margin-top: 1.25rem;
  max-width: 38ch;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--paper);
  font-weight: 400;
}
.hero__meta small { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; }

.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  overflow: hidden;
  padding-block: 0.9rem;
}
.hero__marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__marquee-track span { display: inline-flex; align-items: center; gap: 1rem; }
.hero__marquee-track span::after {
  content: "";
  width: 4px; height: 4px;
  background: var(--cedar-500);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__meta { align-items: flex-start; text-align: left; flex-direction: row; gap: 1rem; align-items: end; }
}

/* ===== Section header ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-head__title h2 { max-width: 16ch; }
.section-head__body { color: var(--text-muted); max-width: 56ch; }
.section-head--center {
  display: block;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.section-head--center .eyebrow { margin-bottom: 1rem; }
.section-head--center h2 { max-width: none; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Benefits ===== */
.benefits {
  background: var(--bone);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.benefit {
  background: var(--bone);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
}
.benefit__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--cedar-600);
}
.benefit__icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.benefit h3 { font-size: 1.35rem; }
.benefit p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

@media (max-width: 880px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
}

/* ===== Showcase ===== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.showcase__main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone-warm);
  aspect-ratio: 4 / 5;
}
.showcase__main img { width: 100%; height: 100%; object-fit: cover; }
.showcase__main-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,0.94);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.showcase__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}
.showcase__side-img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone-warm);
  position: relative;
}
.showcase__side-img img { width: 100%; height: 100%; object-fit: cover; }

.showcase__details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.showcase__detail h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.showcase__detail p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 880px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase__main { aspect-ratio: 4 / 3; }
  .showcase__details { grid-template-columns: 1fr 1fr; }
}

/* ===== Backyard Fit CTA ===== */
.backyard-fit-cta .permit-cta__card {
  background: var(--bone-warm);
  border-radius: 16px;
  padding: 2.5rem 2.75rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.backyard-fit-cta .permit-cta__body h2 { max-width: 16ch; }
.backyard-fit-cta .permit-cta__body p { color: var(--charcoal-700); max-width: 56ch; margin-bottom: 0; }
.backyard-fit-cta .permit-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.backyard-fit-cta .permit-cta__action .btn { white-space: nowrap; }
.backyard-fit-cta .permit-cta__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 880px) {
  .backyard-fit-cta .permit-cta__card {
    grid-template-columns: 1fr;
    padding: 2rem 1.75rem;
    gap: 1.5rem;
  }
  .backyard-fit-cta .permit-cta__action { align-items: stretch; }
  .backyard-fit-cta .permit-cta__action .btn { justify-content: center; }
}

/* ===== Uses grid ===== */
.uses {
  background: var(--charcoal-900);
  color: var(--paper);
  position: relative;
}
.uses .section-head__title h2 { color: var(--paper); }
.uses .section-head__body { color: rgba(255,255,255,0.7); }

.uses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.use {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal-700);
  isolation: isolate;
  display: block;
  cursor: pointer;
}
.use__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  filter: grayscale(0.2) brightness(0.85);
}
.use:hover .use__bg { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.use::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.use__label {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.use__label-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.use__label-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 880px) { .uses__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  padding: 2.5rem 1.25rem 2.5rem 0;
  position: relative;
  counter-increment: step;
}
.step + .step { padding-left: 1.25rem; border-left: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--cedar-600);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
  display: block;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; line-height: 1.55; }

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(4) { padding-left: 0; border-left: none; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3),
  .step:nth-child(5) { padding-left: 0; border-left: none; }
  .step:nth-child(4) { padding-left: 1.25rem; border-left: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 2rem; }
}

/* ===== Reservation banner ===== */
.reserve-banner {
  background: var(--cedar-100);
  position: relative;
  overflow: hidden;
}
.reserve-banner__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reserve-banner h2 { max-width: 16ch; }
.reserve-banner p { color: var(--charcoal-700); max-width: 48ch; }
.reserve-banner__card {
  background: var(--paper);
  border-radius: 10px;
  padding: 2.25rem;
  box-shadow: 0 18px 60px -30px rgba(60, 30, 0, 0.2);
}
.reserve-banner__card .price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 400;
}
.reserve-banner__card .price sup {
  font-size: 1.2rem;
  vertical-align: top;
  top: 0.6rem;
  position: relative;
  color: var(--text-muted);
  margin-right: 0.15rem;
}
.reserve-banner__card .price-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reserve-banner__card ul {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.reserve-banner__card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.reserve-banner__card li svg { flex-shrink: 0; margin-top: 4px; color: var(--cedar-600); }
.reserve-banner__card .btn { width: 100%; justify-content: center; }
.reserve-banner__disclaimer { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

@media (max-width: 880px) {
  .reserve-banner__grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq__list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  line-height: 1.25;
  transition: color 0.2s var(--ease);
}
.faq-item__q:hover { color: var(--cedar-600); }
.faq-item__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--charcoal-900);
  color: var(--paper);
  border-color: var(--charcoal-900);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item__a-inner {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  max-width: 65ch;
}
.faq-item.is-open .faq-item__a {
  max-height: 600px;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--charcoal-900);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196, 120, 69, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 120, 69, 0.08) 0%, transparent 50%);
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 18ch; margin-inline: auto; }
.final-cta h2 em { font-style: italic; font-weight: 300; color: var(--cedar-400); }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 50ch; margin: 1.5rem auto 2.5rem; }
.final-cta__buttons { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ===== Footer ===== */
.site-foot {
  background: var(--charcoal-900);
  color: rgba(255,255,255,0.7);
  padding-block: 4rem 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand .brand { color: var(--paper); font-size: 1.5rem; }
.foot-brand .brand__mark { background: var(--paper); color: var(--charcoal-900); border-color: var(--paper); }
.foot-brand p { margin-top: 1rem; max-width: 30ch; }
.site-foot h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
  margin: 0 0 1.1rem;
}
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-list a:hover { color: var(--cedar-400); }
.foot-social { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.foot-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}
.foot-social a:hover { background: var(--paper); color: var(--charcoal-900); border-color: var(--paper); }
.foot-social svg { width: 16px; height: 16px; }
.site-foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.site-foot__bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

@media (max-width: 880px) {
  .site-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-foot__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Inner page header ===== */
.page-head {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-head__eyebrow { margin-bottom: 1.25rem; display: block; }
.page-head h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  max-width: 18ch;
}
.page-head__lede {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 60ch;
}
.crumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  letter-spacing: 0.04em;
}
.crumbs a:hover { color: var(--charcoal-900); }
.crumbs .sep { color: var(--charcoal-200); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bone-warm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }

.gallery-item--wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.gallery-item--tall { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-item--half { grid-column: span 6; aspect-ratio: 4 / 3; }
.gallery-item--third { grid-column: span 4; aspect-ratio: 1 / 1; }

@media (max-width: 880px) {
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--half,
  .gallery-item--third { grid-column: span 12; aspect-ratio: 4 / 3; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  z-index: 100;
  padding: 4rem 2rem;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ===== Product detail ===== */
.product-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-hero__media {
  position: sticky;
  top: 90px;
}
.product-hero__main {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone-warm);
  margin-bottom: 0.75rem;
}
.product-hero__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s var(--ease); }
.product-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.product-hero__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bone-warm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s var(--ease);
  padding: 0;
}
.product-hero__thumb.is-active { border-color: var(--charcoal-900); }
.product-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-hero__info .eyebrow { margin-bottom: 1rem; display: block; }
.product-hero__info h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: 1rem; }
.product-hero__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-block: 1.75rem;
}
.product-hero__price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.product-hero__price-label { color: var(--text-muted); font-size: 0.95rem; }

.product-hero__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-block: 2rem;
}
.spec-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.spec-item p { margin: 0; font-size: 1.02rem; }

.product-hero__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-hero__media { position: static; }
}

/* ===== Models listing ===== */
.model-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
  border-top: 1px solid var(--line);
}
.model-card:last-child { border-bottom: 1px solid var(--line); }
.model-card__img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone-warm);
}
.model-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.model-card:hover .model-card__img img { transform: scale(1.03); }
.model-card__info .eyebrow { margin-bottom: 0.75rem; display: block; }
.model-card__info h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.model-card__info p { color: var(--text-muted); max-width: 48ch; }
.model-card__meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  margin-block: 1.5rem;
}
.model-card__meta div h5 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin: 0 0 0.25rem; }
.model-card__meta div strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.model-card__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.model-card--coming { opacity: 0.55; pointer-events: none; }
.model-card--coming .model-card__img { background: var(--bone-warm); display: grid; place-items: center; }
.model-card--coming .model-card__placeholder { font-family: var(--font-display); font-style: italic; color: var(--cedar-600); font-size: 2rem; }

@media (max-width: 880px) {
  .model-card { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== Forms ===== */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.75rem, 4vw, 3rem);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-field label .req { color: var(--cedar-600); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--charcoal-900);
  box-shadow: 0 0 0 3px rgba(196, 120, 69, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field__hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

.summary-card {
  background: var(--bone);
  border-radius: 10px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.summary-card h3 { margin-bottom: 1.25rem; font-size: 1.4rem; }
.summary-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.summary-card ul li { display: flex; justify-content: space-between; gap: 1rem; color: var(--text-muted); }
.summary-card ul li strong { color: var(--text); font-weight: 500; }
.summary-card .total {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-card .total > span { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; color: var(--text-muted); }
.summary-card .total strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}
.summary-card .secure {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; order: -1; }
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); max-width: 50ch; margin-bottom: 2rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li h5 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 0.25rem;
}
.contact-list li a, .contact-list li p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
.contact-list li a:hover { color: var(--cedar-600); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== How it works full ===== */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  padding-block: 4rem;
  border-top: 1px solid var(--line);
  align-items: center;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.85;
  color: var(--cedar-500);
}
.process-step h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.process-step p { color: var(--text-muted); max-width: 56ch; }

@media (max-width: 880px) {
  .process-step { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 3rem; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== About page ===== */
.mission-card {
  background: var(--bone-warm);
  border-left: 3px solid var(--cedar-500);
  padding: 2rem 2.25rem;
  border-radius: 8px;
  max-width: 820px;
}
.mission-card .eyebrow {
  display: block;
  margin-bottom: 0.8rem;
}
.mission-card__statement {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--charcoal-900);
  margin: 0;
  font-variation-settings: "opsz" 60;
}
@media (max-width: 640px) {
  .mission-card { padding: 1.5rem 1.5rem; }
  .mission-card__statement { font-size: 1.25rem; }
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-split__media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}
.about-split__copy h2 {
  font-size: 2.2rem;
  line-height: 1.15;
}
.about-split__copy > p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  margin: 1rem 0;
}
.about-callout {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--bone-warm);
  border-left: 3px solid var(--cedar-500);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}
.about-callout strong {
  color: var(--cedar-700);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-split__copy h2 { font-size: 1.8rem; }
}

.about-tech {
  background: var(--bone);
}
.tech-pillars {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
}
.tech-pillars li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.tech-pillars li:hover {
  border-color: var(--cedar-500);
  transform: translateY(-2px);
}
.tech-pillars__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cedar-600);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.tech-pillars h4 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--charcoal-900);
}
.tech-pillars p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.about-tech__link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.about-tech__link a {
  color: var(--cedar-700);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.about-tech__link a:hover { color: var(--charcoal-900); }
@media (max-width: 720px) {
  .tech-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .tech-pillars li { padding: 1.5rem 1.5rem 1.25rem; }
}

.entity-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.entity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.entity-card__flag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--charcoal-900);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}
.entity-card h3 {
  font-size: 1.4rem;
  margin: 0;
}
.entity-card__entity {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text);
}
.entity-card__entity strong { color: var(--charcoal-900); }
.entity-card__detail {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0.5rem 0 0.75rem;
}
.entity-card__currency {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cedar-700);
  font-weight: 500;
}
.entity-footnote {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}
.entity-footnote a { color: var(--cedar-700); }
@media (max-width: 720px) {
  .entity-cards { grid-template-columns: 1fr; }
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--bone);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.testimonials__grid[data-preview="true"]::after {
  content: "Preview content";
  position: absolute;
  top: -2.75rem;
  right: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cedar-700);
  background: rgba(196, 120, 69, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 120, 69, 0.3);
}
.testimonials__preview-note {
  color: var(--cedar-700);
  font-size: 0.85rem;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.75rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover {
  border-color: var(--charcoal-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(0,0,0,0.15);
}
.testimonial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.t-stars { color: var(--cedar-600); font-size: 0.95rem; letter-spacing: 0.05em; line-height: 1; }
.t-stars__empty { color: var(--line-strong); }
.testimonial__verified {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bone-warm);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-weight: 500;
}
.testimonial__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--charcoal-900);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  flex: 1;
}
.testimonial__quote::before {
  content: "\201C";
  display: block;
  font-size: 2.2rem;
  line-height: 0.3;
  color: var(--cedar-500);
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}
.testimonial__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testimonial__name { color: var(--charcoal-900); font-weight: 500; }
.testimonial__sep { color: var(--text-muted); opacity: 0.6; }
.testimonial__use {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cedar-700);
  background: rgba(196, 120, 69, 0.08);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-weight: 500;
}
.testimonials__cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.testimonials__cta a { color: var(--cedar-700); border-bottom: 1px solid currentColor; text-decoration: none; }
.testimonials__cta a:hover { color: var(--charcoal-900); }

@media (max-width: 1000px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial { padding: 1.5rem 1.5rem 1.25rem; }
  .testimonial__use { margin-left: 0; }
}

/* ===== Cookie notice ===== */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: var(--charcoal-900);
  color: var(--paper);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.9rem;
  max-width: 920px;
  margin: 0 auto;
}
.cookie-bar.is-visible { opacity: 1; transform: translateY(0); }
.cookie-bar__inner { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.cookie-bar__text { margin: 0; flex: 1; min-width: 240px; line-height: 1.55; color: rgba(255,255,255,0.92); }
.cookie-bar__text a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar__btn {
  background: var(--paper);
  color: var(--charcoal-900);
  border: 0;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cookie-bar__btn:hover { background: var(--bone); }
@media (max-width: 540px) {
  .cookie-bar { padding: 0.85rem 1rem; font-size: 0.85rem; }
  .cookie-bar__btn { width: 100%; padding: 0.7rem; }
}

/* ===== Country / currency switcher ===== */
.country-switcher { position: relative; }
.country-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal-900);
  transition: border-color 0.2s, background 0.2s;
}
.country-switcher__btn:hover { border-color: var(--charcoal-900); }
.country-switcher__btn-chev { width: 10px; height: 10px; opacity: 0.5; margin-left: 0.1rem; }
.country-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 60;
}
.country-switcher__menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.country-switcher__menu-head {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem 0.4rem;
  font-weight: 500;
}
.country-switcher__opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 0;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  color: var(--charcoal-900);
  transition: background 0.15s;
}
.country-switcher__opt:hover { background: var(--bone-warm); }
.country-switcher__opt[aria-checked="true"] { background: var(--bone-warm); font-weight: 500; }
.country-switcher__opt[aria-checked="true"]::after { content: "✓"; margin-left: auto; color: var(--cedar-600); font-weight: 600; }
.country-switcher__opt-flag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--charcoal-900);
  color: var(--paper);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  min-width: 28px;
  text-align: center;
}
.country-switcher__opt-currency { margin-left: auto; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }
.country-switcher__opt[aria-checked="true"] .country-switcher__opt-currency { display: none; }

@media (max-width: 1080px) { .nav-cta .btn--ghost { display: none; } }
@media (max-width: 540px) {
  .country-switcher__btn { padding: 0.5rem 0.7rem; font-size: 0.75rem; }
  .country-switcher__menu { right: -20px; }
}

/* ===== Construction (exploded view) ===== */
.construction { background: var(--white); }
.exploded { margin: 2.5rem 0 0; padding: 0; }
.exploded img { width: 100%; height: auto; display: block; border-radius: 12px; background: var(--white); }
.exploded figcaption { margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); text-align: center; letter-spacing: 0.02em; }
.construction__specs {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
.construction__specs li { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.construction__specs h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cedar-600);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.construction__specs p { margin: 0; font-size: 0.95rem; color: var(--text); line-height: 1.55; }
@media (max-width: 900px) { .construction__specs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .construction__specs { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ===== Swatch selector ===== */
.swatch-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 0.25rem; }
.swatch {
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.55rem 0.85rem;
  background: var(--paper);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
}
.swatch:hover { border-color: var(--charcoal-700); transform: translateY(-1px); }
.swatch input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.swatch:has(input:checked) { border-color: var(--cedar-600); box-shadow: 0 0 0 3px rgba(196, 120, 69, 0.15); }
.swatch:has(input:checked) .swatch__visual::after {
  content: "✓";
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 22px; height: 22px;
  background: var(--cedar-600);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.swatch__visual { position: relative; aspect-ratio: 1/1; border-radius: 6px; background-size: cover; background-position: center; margin-bottom: 0.55rem; }
.swatch__label { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: var(--charcoal-900); line-height: 1.25; }
.swatch__sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.15rem; letter-spacing: 0.02em; }
@media (max-width: 540px) {
  .swatch-group { grid-template-columns: 1fr; gap: 0.6rem; }
  .swatch { flex-direction: row; align-items: center; gap: 0.9rem; padding: 0.55rem 0.75rem; }
  .swatch__visual { width: 56px; flex-shrink: 0; margin-bottom: 0; }
  .swatch:has(input:checked) .swatch__visual::after { top: -4px; right: -4px; width: 18px; height: 18px; font-size: 11px; }
}

/* ===== Legal documents ===== */
.legal-toc { background: var(--bone-warm); border-radius: 12px; padding: 1.5rem 1.75rem; margin-bottom: 3rem; }
.legal-toc__title { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin: 0 0 1rem; }
.legal-toc ol { columns: 2; column-gap: 2rem; list-style: decimal; padding-left: 1.5rem; margin: 0; font-size: 0.9rem; line-height: 1.9; }
.legal-toc a { color: var(--charcoal-900); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.legal-toc a:hover { border-color: var(--cedar-500); }
@media (max-width: 720px) { .legal-toc ol { columns: 1; } }

.legal-doc h2 { font-size: 1.4rem; margin: 3rem 0 1rem; scroll-margin-top: 100px; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; color: var(--cedar-700); font-family: var(--font-body); font-weight: 600; }
.legal-doc p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 1rem; color: var(--text); }
.legal-doc ul, .legal-doc ol { padding-left: 1.25rem; margin-bottom: 1.25rem; line-height: 1.7; }
.legal-doc li { margin-bottom: 0.4rem; }

.legal-table-wrap { overflow-x: auto; margin: 1.5rem 0 2rem; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 600px; }
.legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 0.9rem 1rem; border: 1px solid var(--line); line-height: 1.55; }
.legal-table thead th { background: var(--bone-warm); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.legal-table tbody th { width: 22%; background: var(--bone); font-weight: 500; }

.legal-contact { background: var(--bone-warm); border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1rem 0 2rem; }
.legal-contact dt { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cedar-700); font-weight: 500; margin-top: 1rem; }
.legal-contact dt:first-child { margin-top: 0; }
.legal-contact dd { margin: 0.4rem 0 0; font-size: 0.92rem; line-height: 1.7; }
.legal-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--text-muted); text-align: center; letter-spacing: 0.04em; }

/* ===== Short checkout terms ===== */
.checkout-terms { background: var(--bone-warm); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem 1.75rem; margin-top: 1.5rem; font-size: 0.88rem; line-height: 1.65; color: var(--text); }
.checkout-terms__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.checkout-terms__title { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cedar-700); font-weight: 600; margin: 0; }
.checkout-terms__region { font-size: 0.78rem; color: var(--text-muted); background: var(--bone); padding: 0.25rem 0.6rem; border-radius: 999px; border: 1px solid var(--line); }
.checkout-terms p { margin: 0 0 0.85rem; }
.checkout-terms p:last-child { margin-bottom: 0; }
.checkout-terms a { color: var(--cedar-700); }
.checkout-terms__variant { display: none; }
html[data-country="US"] .checkout-terms__variant--us { display: block; }
html[data-country="CA"] .checkout-terms__variant--ca { display: block; }

/* ===== Skip to content ===== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal-900);
  color: var(--paper);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  transition: top 0.18s;
}
.skip-to-content:focus { top: 0.75rem; outline: 2px solid var(--cedar-500); outline-offset: 2px; }

/* ===== Reveal animation ===== */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__marquee-track { animation: none; }
}

/* ===== Success message ===== */
.success-message {
  background: var(--green-mist);
  border: 1px solid var(--green-soft);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  color: #3a4a2a;
  display: none;
  margin-bottom: 1.5rem;
}
.success-message.is-visible { display: block; }
.success-message h4 { font-size: 1.1rem; margin-bottom: 0.25rem; color: #2a3a1c; }
.success-message p { margin: 0; font-size: 0.92rem; }
