/* Rare Garden — premium botanical landing (mockup) */

:root {
  --forest-950: #0f2419;
  --forest-900: #1a3d2e;
  --forest-800: #234d3a;
  --forest-700: #2d6a4f;
  --forest-600: #40916c;
  --forest-400: #74c69d;
  --forest-200: #b7e4c7;
  --forest-100: #d8f3dc;
  --sage-50: #f4f7f2;
  --cream: #faf8f4;
  --sand: #ebe6dc;
  --ink: #141814;
  --ink-muted: #5a635c;
  --ink-soft: #8a948c;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-soft: #f5ecd4;
  --shadow-sm: 0 2px 8px rgba(15, 36, 25, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 36, 25, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 36, 25, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.dev-banner {
  background: linear-gradient(90deg, var(--gold-soft), #fff8e6);
  border-bottom: 1px solid #e8d9a8;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: #6b5a1e;
  text-align: center;
}
.dev-banner code {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.6);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 61, 46, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
}
.brand img { height: 44px; width: auto; border-radius: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.nav-desktop a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover {
  color: var(--forest-800);
  background: rgba(45, 106, 79, 0.08);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.5rem;
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-900);
  border-radius: 2px;
  transition: transform 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 199;
  background: var(--cream);
  padding: 1.5rem clamp(1.25rem, 4vw, 2rem);
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
}
.mobile-nav .mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--forest-800);
  border: 1.5px solid rgba(45, 106, 79, 0.25);
}
.btn-secondary:hover { border-color: var(--forest-600); }
.btn-ghost {
  background: transparent;
  color: var(--forest-800);
  padding: 0.5rem 1rem;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }
.btn-icon svg { width: 1.1em; height: 1.1em; }

/* ─── Section system ─── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
}
.section-wrap--tight { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest-700);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--forest-400);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest-900);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(116, 198, 157, 0.25), transparent),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(45, 106, 79, 0.4), transparent),
    linear-gradient(165deg, var(--forest-950) 0%, var(--forest-900) 45%, #1e4d38 100%);
}
.hero-bg.has-image {
  background-size: cover;
  background-position: center;
}
.hero-bg.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,36,25,0.92) 0%, rgba(15,36,25,0.55) 50%, rgba(15,36,25,0.75) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c8 12 8 18 0 30-8-12-8-18 0-30z' fill='%23fff' fill-opacity='1'/%3E%3C/svg%3E");
}
.hero .inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
  width: 100%;
  display: grid;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 900px) {
  .hero .inner { grid-template-columns: 1.15fr 0.85fr; }
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-400);
  box-shadow: 0 0 12px var(--forest-400);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest-200);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 2rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  display: none;
  position: relative;
}
@media (min-width: 900px) {
  .hero-visual { display: block; }
}
.hero-card-stack {
  position: relative;
  height: 420px;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.hero-float-card--main {
  right: 0;
  top: 10%;
  width: 72%;
  padding: 0;
  overflow: hidden;
}
.hero-float-card--main .plant-preview {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--forest-100), var(--forest-400));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.hero-float-card--main .plant-preview span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-900);
}
.hero-float-card--badge {
  left: 0;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-float-card--badge .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-100);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

/* ─── Trust strip ─── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
}
.trust-strip .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.trust-item svg { flex-shrink: 0; color: var(--forest-600); }

/* ─── App section ─── */
.apps-section {
  background: linear-gradient(180deg, var(--sage-50) 0%, var(--cream) 100%);
}
.apps-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .apps-grid { grid-template-columns: 1fr 1fr; }
}
.phone-mock {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.phone-frame {
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.08);
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: linear-gradient(180deg, var(--forest-100), var(--forest-600));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.phone-screen strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.store-badge.android { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.store-badge small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  font-weight: 400;
}
.store-badge strong { font-size: 0.95rem; font-weight: 600; }

/* ─── About ─── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, var(--forest-100) 0%, var(--forest-600) 100%);
  box-shadow: var(--shadow-md);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 140px;
  padding: 1.25rem;
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest-900);
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}
.about-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

/* ─── Benefits ─── */
.benefits-section { background: var(--cream); }
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(26, 61, 46, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-600), var(--forest-400));
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--forest-100);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--forest-900);
}
.benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ─── Products ─── */
.products-section { background: var(--white); }
.products-section--alt { background: var(--sage-50); }

.products-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sage-50), var(--forest-100));
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.35;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.65rem;
  background: var(--forest-900);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
}
.product-body {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: var(--forest-900);
}
.product-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-800);
}
.product-link-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-100);
  display: grid;
  place-items: center;
  color: var(--forest-800);
  transition: background 0.2s, color 0.2s;
}
.product-card:hover .product-link-arrow {
  background: var(--forest-700);
  color: var(--white);
}

/* ─── Videos ─── */
.videos-section { background: var(--cream); }
.video-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .video-grid--featured { grid-template-columns: 1.2fr 0.8fr; }
  .video-grid--featured .video-card:first-child { grid-row: span 2; }
}
.video-grid--tutorials {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.video-card:hover { box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--forest-900);
  cursor: pointer;
  overflow: hidden;
}
.video-card:first-child .video-thumb { aspect-ratio: auto; min-height: 100%; }
.video-grid--featured .video-card:first-child .video-thumb { aspect-ratio: unset; height: 100%; min-height: 280px; }
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 36, 25, 0.25);
  transition: background 0.25s;
}
.video-thumb:hover .video-play { background: rgba(15, 36, 25, 0.4); }
.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--forest-900);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}
.video-thumb:hover .video-play-btn { transform: scale(1.08); }
.video-body { padding: 1.35rem; }
.video-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--forest-900);
}
.video-body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.video-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--forest-900);
  color: var(--white);
}
.testimonials-section .section-eyebrow { color: var(--forest-200); }
.testimonials-section .section-eyebrow::before { background: var(--forest-400); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-lead { color: rgba(255,255,255,0.7); }

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--forest-400);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.testimonial-card blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}
.testimonial-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-600);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-author cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-item summary {
  list-style: none;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-900);
  cursor: pointer;
  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-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest-600);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.35rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 0.9875rem;
}

/* ─── Contact ─── */
.contact-section {
  background: linear-gradient(180deg, var(--sage-50), var(--cream));
}
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--forest-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--forest-800);
}
.contact-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.contact-list a, .contact-list span { color: var(--ink); font-weight: 500; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, var(--forest-100), var(--forest-400));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand);
}
.contact-map a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--forest-950);
  color: rgba(255,255,255,0.75);
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .brand-name { color: var(--white); font-size: 1.5rem; }
.footer-brand p { margin: 1rem 0 1.5rem; max-width: 32ch; line-height: 1.7; font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--forest-400);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.hidden { display: none !important; }

/* ─── Video modal ─── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 36, 25, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.video-modal.is-open { display: flex; }
.video-modal-inner { width: 100%; max-width: 960px; position: relative; }
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
}
.video-modal-box {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal-box iframe { width: 100%; height: 100%; border: 0; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
