/* ============================================================
   RenewMD Coastal — Global Styles
   Palette: Forest greens, warm whites, seafoam, amber gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* Fonts loaded async via <link> in Base.astro - no @import to avoid render blocking */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --sage:          #5c7a5c;
  --sage-light:    #7a9e7a;
  --forest:        #1e2d1e;
  --forest-soft:   #3a4a3a;
  --warm-gray:     #6b7b6b;
  --gold:          #b8973a;
  --amber:         #f5a524;
  --parchment:     #e8e0d0;
  --sand:          #f2ede4;
  --warm-white:    #faf9f6;
  --white:         #ffffff;
  --forest-dark:   #13612e;
  --sage-mist:     #eaf0ea;
  --seafoam:       #a8c5b5;
  --seafoam-light: #d4e8df;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 68px;

  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

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

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  260ms;

  --shadow-card: 0 2px 16px rgba(30,45,30,0.07);
  --shadow-hover: 0 10px 36px rgba(30,45,30,0.13);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--forest-soft);
  background: var(--warm-white);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
}

/* ── Top Navigation ─────────────────────────────────────── */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--forest);
  display: flex;
  align-items: center;
  z-index: 200;
  padding: 0 var(--space-lg);
  gap: var(--space-lg);
}

.topnav-brand {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.topnav-brand img {
  height: 36px;
  width: auto;
  /* Natural SVG colors retained — no filter */
}

/* Desktop links */
.topnav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.topnav-links > li { position: relative; }

.topnav-links > li > a,
.topnav-links > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0.9rem;
  height: var(--nav-h);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250,249,246,0.78);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.topnav-links > li > a:hover,
.topnav-links > li > button:hover,
.topnav-links > li > a.active {
  color: var(--warm-white);
}

.topnav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--seafoam);
  border-radius: 2px 2px 0 0;
}

/* Dropdown chevron */
.nav-chevron {
  width: 11px;
  height: 11px;
  transition: transform var(--dur);
  opacity: 0.55;
}

li.dd-open > button .nav-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 2px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 32px rgba(30,45,30,0.14);
  list-style: none;
  padding: var(--space-sm) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--dur), transform var(--dur);
  border-top: 2px solid var(--seafoam);
}

li.dd-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  color: var(--forest-soft);
  transition: background var(--dur), color var(--dur);
}

.nav-dropdown a:hover {
  background: var(--sage-mist);
  color: var(--sage);
}

/* Book CTA */
.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: var(--sage);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--dur);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.nav-cta:hover { background: var(--forest-soft); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--forest);
  z-index: 199;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  padding-bottom: var(--space-lg);
  transform: translateY(-100%);
  transition: transform 280ms var(--ease);
}

.mobile-nav.open { transform: translateY(0); }

.mobile-nav-list {
  list-style: none;
  padding: var(--space-sm) 0;
}

.mobile-nav-list li a,
.mobile-nav-list li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem var(--space-lg);
  font-size: 0.95rem;
  color: rgba(250,249,246,0.8);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--dur), background var(--dur);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li button:hover { color: var(--warm-white); background: rgba(255,255,255,0.05); }

.mobile-nav-list li a.active { color: var(--seafoam); border-left: 3px solid var(--seafoam); padding-left: calc(var(--space-lg) - 3px); }

.mobile-nav-sub { list-style: none; background: rgba(0,0,0,0.18); }

.mobile-nav-sub li a,
.mobile-nav-sub li button {
  padding-left: calc(var(--space-lg) + 1rem);
  font-size: 0.85rem;
  color: rgba(250,249,246,0.6);
}

.mobile-nav-sub li a:hover,
.mobile-nav-sub li button:hover { color: var(--warm-white); }

.mobile-nav-section {
  padding: var(--space-md) var(--space-lg) var(--space-xs);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.mobile-cta-wrap { padding: var(--space-md) var(--space-lg); }

.mobile-cta-wrap a {
  display: block;
  text-align: center;
  padding: 0.85rem;
  background: var(--sage);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* ── Page wrapper ───────────────────────────────────────── */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ── Page header ────────────────────────────────────────── */
.page-header {
  background: var(--sand);
  padding: clamp(3rem,8vw,5rem) clamp(1rem,5vw,3rem) clamp(2rem,5vw,3rem);
  border-bottom: 1px solid var(--parchment);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--seafoam-light);
  opacity: 0.45;
  pointer-events: none;
}

.page-header .eyebrow { position: relative; z-index: 1; }
.page-header h1       { position: relative; z-index: 1; margin-bottom: var(--space-sm); }
.page-header .subtitle { position: relative; z-index: 1; max-width: 60ch; }

.eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}

.subtitle {
  font-size: clamp(0.9rem,2vw,1rem);
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Content wrapper ────────────────────────────────────── */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

@media (max-width: 640px) { .content-wrap { padding: var(--space-lg) var(--space-md); } }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.hero-left {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem,7vw,5rem) clamp(1.5rem,5vw,4rem);
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--seafoam-light);
  opacity: 0.5;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5vw,4.4rem);
  font-weight: 500;
  line-height: 1.07;
  color: var(--forest);
  margin-bottom: var(--space-lg);
}

.hero-headline em { font-style: italic; color: var(--sage); }

.hero-body {
  font-size: clamp(0.9rem,2vw,1.05rem);
  line-height: 1.72;
  color: var(--warm-gray);
  max-width: 44ch;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 4px;
}

.hero-right {
  background: var(--sage);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem,7vw,5rem) clamp(1.5rem,5vw,4rem);
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: 0.4;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1rem;
  display: block;
  position: relative; z-index: 1;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem,2.5vw,1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  max-width: 36ch;
  margin-bottom: var(--space-lg);
  position: relative; z-index: 1;
}

.quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative; z-index: 1;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-xl);
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  position: relative; z-index: 1;
  width: fit-content;
}

/* ── Section labels ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,4vw,2.9rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: var(--space-xl);
}

.section-title em { font-style: italic; color: var(--sage); }

/* ── Cards ──────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: var(--space-lg);
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--space-lg);
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) { .cards-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem,4vw,2.5rem) clamp(1.25rem,3vw,2rem);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--seafoam));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card:hover::before { transform: scaleX(1); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.card-body {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  flex: 1;
}

/* ── Prose card ─────────────────────────────────────────── */
.prose-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem,4vw,2.5rem);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-lg);
}

.prose-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,3vw,1.65rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: var(--space-md);
}

.prose-card p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.prose-card p:last-child { margin-bottom: 0; }

/* ── Divider tag ────────────────────────────────────────── */
.divider-tag {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0 var(--space-lg);
}

.divider-tag span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

.divider-tag::before, .divider-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--parchment);
}

/* ── Treatment / feature lists ──────────────────────────── */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

.treatment-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
}

.treatment-list h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--sage-mist);
}

.treatment-list ul { list-style: none; }

.treatment-list li {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--sage-mist);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.treatment-list li:last-child { border-bottom: none; }

.treatment-list li::before {
  content: '—';
  color: var(--sage);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Team card ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-img-wrap {
  height: 300px;
  overflow: hidden;
  background: var(--sand);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-body { padding: clamp(1.5rem,4vw,2rem); }

.team-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.72;
  margin-bottom: var(--space-sm);
}

.team-expand { display: none; }
.team-expand.open { display: block; }

.expertise-h {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin: var(--space-lg) 0 var(--space-sm);
}

.expertise-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }

.expertise-list li {
  font-size: 0.85rem;
  color: var(--warm-gray);
  padding: 3px 0 3px var(--space-md);
  position: relative;
}

.expertise-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--sage);
  font-size: 1.1rem;
  line-height: 1;
}

.team-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ── Product card ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur), box-shadow var(--dur);
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--sand);
  padding: var(--space-lg);
}

.product-card-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.product-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-benefits { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.product-benefits li {
  font-size: 0.8rem;
  color: var(--forest-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.product-benefits li::before { content: '✦'; font-size: 0.55rem; color: var(--sage); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(92,122,92,0.32);
}
.btn-primary:hover { background: var(--forest-soft); box-shadow: 0 4px 16px rgba(92,122,92,0.42); }

.btn-secondary { background: var(--sand); color: var(--forest-soft); }
.btn-secondary:hover { background: var(--parchment); }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

/* ── Contact dark block ─────────────────────────────────── */
.contact-block {
  background: var(--forest);
  color: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem,4vw,2.5rem);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--warm-white);
  margin-bottom: var(--space-md);
}

.contact-block p { font-size: 0.9rem; color: rgba(250,249,246,0.7); line-height: 1.65; }
.contact-block a { color: var(--seafoam); font-weight: 500; }
.contact-block strong { color: rgba(250,249,246,0.9); }

/* ── Location block ─────────────────────────────────────── */
.location-block {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--sage);
}

/* ── Hours grid ─────────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem var(--space-lg);
  margin-top: var(--space-md);
}

.hours-day  { font-weight: 600; color: rgba(250,249,246,0.9); font-size: 0.9rem; }
.hours-time { color: rgba(250,249,246,0.65); font-size: 0.9rem; }

/* ── Package / check list ───────────────────────────────── */
.package-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); }

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.package-list li:last-child { border-bottom: none; }
.package-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── Spacing utilities ──────────────────────────────────── */
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.text-sage { color: var(--sage); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(250,249,246,0.6);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.site-footer p { font-size: 0.82rem; margin-bottom: var(--space-sm); }
.site-footer p:last-child { margin-bottom: 0; }
.site-footer a { color: var(--seafoam); }

.footer-logo {
  height: 32px;
  width: auto;
  /* Natural SVG colors retained — no filter */
  opacity: 0.9;
  margin: 0 auto var(--space-md);
  display: block;
}

/* ── Responsive nav ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .topnav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 50vh; }
  .hero-left  { min-height: 60vh; }
}

@media (max-width: 480px) {
  .hero-stats { gap: var(--space-sm); }
  .stat { padding: 1rem; }
  .stat-number { font-size: 1.6rem; }
}

/* ── Page entry animation ───────────────────────────────── */
main { animation: fadeUp 300ms var(--ease) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
