@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img, video, svg {
  display: block;
  max-width: 100%;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  appearance: none;
}
button { cursor: pointer; }

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --oat:        #e8e0d2;
  --chalk:      #f5f2ed;
  --sage:       #7d9b76;
  --sage-light: #a3ba9d;
  --sage-dark:  #5a7554;
  --rose:       #c4937e;
  --rose-light: #d9b3a2;
  --driftwood:  #2e2319;
  --driftwood-mid: #3d3025;
  --driftwood-soft: #5a4a38;
  --ink:        #1a1410;
  --surface:    #231c14;
  --surface-2:  #2e2319;
  --surface-3:  #3a2e22;
  --muted:      #7a6e62;
  --border:     rgba(232,224,210,0.12);
  --border-soft: rgba(232,224,210,0.08);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --step--1: clamp(0.78rem, 0.72rem + 0.3vw, 0.9rem);
  --step-0:  clamp(0.9rem,  0.84rem + 0.4vw, 1rem);
  --step-1:  clamp(1.1rem,  0.98rem + 0.6vw, 1.25rem);
  --step-2:  clamp(1.3rem,  1.1rem  + 1vw,   1.6rem);
  --step-3:  clamp(1.7rem,  1.3rem  + 2vw,   2.4rem);
  --step-4:  clamp(2.2rem,  1.6rem  + 3vw,   3.5rem);
  --step-5:  clamp(3rem,    2rem    + 5vw,    5.5rem);

  --space-xs:  clamp(0.5rem,  0.4rem  + 0.5vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 0.6rem  + 0.8vw, 1.1rem);
  --space-md:  clamp(1.2rem,  1rem    + 1vw,   1.75rem);
  --space-lg:  clamp(2rem,    1.5rem  + 2.5vw, 3.5rem);
  --space-xl:  clamp(3.5rem,  2.5rem  + 4vw,   6rem);
  --space-2xl: clamp(5rem,    3.5rem  + 6vw,   9rem);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 36px;

  --shadow-card: 0 2px 20px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-btn:  0 4px 24px rgba(125,155,118,0.3);
  --shadow-hero: 0 24px 80px rgba(0,0,0,0.5);

  --transition: 220ms cubic-bezier(0.4,0,0.2,1);
}

/* ─── BASE ───────────────────────────────────────────────── */
html, body {
  background-color: var(--surface);
  color: var(--oat);
  font-family: var(--ff-sans);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--chalk);
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }
h5 { font-size: var(--step-1); font-family: var(--ff-sans); font-weight: 500; letter-spacing: 0.04em; }

p {
  font-size: var(--step-0);
  color: var(--oat);
  max-width: 68ch;
  line-height: 1.8;
}
p.lead {
  font-size: var(--step-1);
  color: var(--chalk);
  font-weight: 300;
  max-width: 55ch;
}
.txt-muted { color: var(--muted); }
.txt-sage   { color: var(--sage-light); }
.txt-rose   { color: var(--rose-light); }
.txt-center { text-align: center; }
.txt-center p { margin-inline: auto; }

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--ff-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage-light);
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sage);
  color: var(--ink);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--sage-light);
  box-shadow: 0 6px 32px rgba(125,155,118,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(232,224,210,0.3);
}
.btn--ghost:hover {
  border-color: var(--sage-light);
  color: var(--sage-light);
}

.btn--rose {
  background: var(--rose);
  color: var(--ink);
}
.btn--rose:hover {
  background: var(--rose-light);
  box-shadow: 0 6px 28px rgba(196,147,126,0.4);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ─── LINKS ──────────────────────────────────────────────── */
a.text-link {
  color: var(--sage-light);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
a.text-link:hover {
  border-color: var(--sage-light);
  color: var(--chalk);
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-sm);
  background: rgba(26,20,16,0.82);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(26,20,16,0.96);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.site-header__wordmark {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--chalk);
  text-transform: uppercase;
}
.site-header__tagline-small {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 400;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.site-nav__link {
  font-size: var(--step--1);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--oat);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-light);
  transition: width var(--transition);
}
.site-nav__link:hover { color: var(--chalk); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link--active {
  color: var(--sage-light);
}
.site-nav__link--active::after { width: 100%; }

.site-nav__cta {
  margin-left: var(--space-sm);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle__bar {
  display: block;
  height: 1.5px;
  background: var(--oat);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav-toggle__bar:nth-child(2) { width: 70%; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding-block: var(--space-xl) var(--space-lg);
  margin-top: auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-soft);
}
.site-footer__brand-col {}
.site-footer__wordmark {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  display: block;
  margin-bottom: var(--space-sm);
}
.site-footer__brand-desc {
  font-size: var(--step--1);
  color: var(--muted);
  max-width: 28ch;
  line-height: 1.7;
}
.site-footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.site-footer__social-link:hover {
  border-color: var(--sage-light);
  color: var(--sage-light);
  background: rgba(125,155,118,0.08);
}
.site-footer__col-title {
  font-family: var(--ff-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: var(--space-md);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.site-footer__link {
  font-size: var(--step--1);
  color: var(--muted);
  transition: color var(--transition);
}
.site-footer__link:hover { color: var(--oat); }

.site-footer__newsletter {}
.site-footer__newsletter-text {
  font-size: var(--step--1);
  color: var(--muted);
  margin-bottom: var(--space-sm);
  max-width: 28ch;
  line-height: 1.65;
}
.site-footer__form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: border-color var(--transition);
}
.site-footer__form:focus-within {
  border-color: var(--sage);
}
.site-footer__input {
  flex: 1;
  padding: 0.65em 1.1em;
  background: transparent;
  color: var(--oat);
  font-size: var(--step--1);
  min-width: 0;
}
.site-footer__input::placeholder { color: var(--muted); }
.site-footer__submit {
  padding: 0.65em 1.2em;
  background: var(--sage);
  color: var(--ink);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--transition);
}
.site-footer__submit:hover { background: var(--sage-light); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
}
.site-footer__copy {
  font-size: var(--step--1);
  color: var(--muted);
}
.site-footer__legal {
  display: flex;
  gap: var(--space-md);
}
.site-footer__legal-link {
  font-size: var(--step--1);
  color: var(--muted);
  transition: color var(--transition);
}
.site-footer__legal-link:hover { color: var(--oat); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section {
  padding-block: var(--space-2xl);
}
.section--sm { padding-block: var(--space-xl); }
.section--dark { background: var(--surface); }
.section--deeper { background: var(--ink); }
.section--mid { background: var(--surface-2); }
.section--sage {
  background: linear-gradient(135deg, #3d4f3a 0%, #2e3d2b 100%);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  padding-top: calc(var(--space-2xl) + 80px);
  padding-bottom: var(--space-2xl);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(90,117,84,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(196,147,126,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-grid__copy {}
.hero-grid__image {
  position: relative;
}
.hero-grid__image img {
  width: 100%;
  height: clamp(400px, 55vw, 680px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero);
}
.hero-grid__image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(125,155,118,0.4), rgba(196,147,126,0.2), transparent);
  z-index: -1;
}
.hero-title {
  margin-bottom: var(--space-md);
}
.hero-title em {
  font-style: italic;
  color: var(--sage-light);
}
.hero-subtitle {
  font-size: var(--step-1);
  color: var(--oat);
  max-width: 44ch;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── CONTENT SECTION ────────────────────────────────────── */
.content-block {}
.content-block__inner {
  max-width: 72ch;
}
.content-block__inner.centered {
  max-width: 60ch;
  margin-inline: auto;
}
.content-block__heading {
  margin-bottom: var(--space-md);
}
.content-block__lead {
  margin-bottom: var(--space-md);
}
.content-block__body {
  color: var(--muted);
  line-height: 1.85;
}
.content-block__body + .content-block__body {
  margin-top: var(--space-sm);
}

/* ─── CARD GRID ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border-color: rgba(125,155,118,0.3);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--rose));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(125,155,118,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--sage-light);
  font-size: 1.3rem;
}
.card__title {
  font-size: var(--step-2);
  margin-bottom: var(--space-sm);
  color: var(--chalk);
}
.card__text {
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.75;
  max-width: none;
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.stat-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.stat-item__number {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.25em;
}
.stat-item__label {
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--driftwood-mid) 0%, #1e1a12 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(125,155,118,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 10% 30%, rgba(196,147,126,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
}
.cta-band__copy {}
.cta-band__title {
  margin-bottom: var(--space-sm);
}
.cta-band__text {
  color: var(--oat);
  max-width: 50ch;
}
.cta-band__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: var(--step-2);
  color: var(--chalk);
  font-weight: 300;
  transition: color var(--transition);
  list-style: none;
  user-select: none;
}
.faq-item__question:hover { color: var(--sage-light); }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item details[open] .faq-item__question { color: var(--sage-light); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sage-light);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}
details[open] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(125,155,118,0.15);
}
.faq-item__answer {
  padding: 0 0 var(--space-md) 0;
  color: var(--muted);
  font-size: var(--step-0);
  line-height: 1.8;
  max-width: 70ch;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 400ms ease;
}
.product-card:hover .product-card__image { transform: scale(1.03); }
.product-card__body {
  padding: var(--space-md);
}
.product-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
  margin-bottom: 0.4em;
}
.product-card__name {
  font-family: var(--ff-serif);
  font-size: var(--step-2);
  color: var(--chalk);
  margin-bottom: var(--space-xs);
  font-weight: 300;
}
.product-card__price {
  font-size: var(--step-1);
  color: var(--oat);
  font-weight: 400;
}
.product-card__price del {
  color: var(--muted);
  font-size: var(--step--1);
  margin-left: 0.5em;
}

/* ─── IMAGE TREATMENT ────────────────────────────────────── */
.img-rounded { border-radius: var(--radius-lg); }
.img-circle   { border-radius: 50%; }
.img-cover    { width: 100%; height: 100%; object-fit: cover; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), transparent);
  margin-block: var(--space-md);
}
.divider--center { margin-inline: auto; }

/* ─── FORM ELEMENTS ──────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.form-label {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-textarea {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75em 1.1em;
  color: var(--oat);
  font-size: var(--step-0);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-xl);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge--sage { background: rgba(125,155,118,0.2); color: var(--sage-light); border: 1px solid rgba(125,155,118,0.3); }
.badge--rose { background: rgba(196,147,126,0.2); color: var(--rose-light); border: 1px solid rgba(196,147,126,0.3); }
.badge--oat  { background: rgba(232,224,210,0.1); color: var(--oat);        border: 1px solid rgba(232,224,210,0.2); }

/* ─── SCROLL OFFSET ──────────────────────────────────────── */
.page-main { padding-top: 76px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18,13,9,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 99;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link { font-size: var(--step-2); }
  .site-nav__cta { margin-left: 0; }
  .nav-toggle { display: flex; z-index: 101; position: relative; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .hero-grid__image { order: -1; }
  .hero-grid__image img { height: clamp(280px, 55vw, 420px); }

  .card-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .site-footer__brand-col { grid-column: 1 / -1; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text  { margin-inline: auto; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 600px) {
  .card-grid  { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .btn-group  { flex-direction: column; align-items: flex-start; }
  .hero-grid__image img { height: clamp(240px, 60vw, 360px); }
} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 