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

/* ─────────────────────────────────────────
   DESIGN SYSTEM — NURTURE HAVEN (PREMIUM)
   Aesthetic: Warm Luxury Editorial
───────────────────────────────────────── */

:root {
  /* Elevated Color Palette (Teal & Plum) */
  --forest:      #0B2B2A; /* Deep Teal */
  --forest-mid:  #154C4A; /* Mid Teal */
  --sage:        #5C3A4D; /* Deep Plum */
  --sage-light:  #875973; /* Light Plum */
  --cream:       #FBF9F6;
  --warm-white:  #FFFFFF;
  --gold:        #A88647;
  --gold-light:  #CDB07B;
  --blush:       #F4EBF0; /* Plum Blush */
  --blush-deep:  #E8D4E0;
  --charcoal:    #1F1F1F;
  --mid:         #5C5C5C;
  --light:       #9E9E9E;
  --border:      #EBE0D5;

  /* Typography */
  --font-hero: 'DM Serif Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Shadows matching Teal */
  --shadow-sm: 0 4px 12px rgba(11, 43, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 43, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 43, 42, 0.12);
  --shadow-gold: 0 12px 30px rgba(168, 134, 71, 0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Elevations & Effects */
  --radius: 6px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  
  --shadow-sm: 0 4px 16px rgba(11, 43, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 43, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 43, 42, 0.12);
  --shadow-gold: 0 8px 24px rgba(168, 134, 71, 0.2);
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h4 { 
  font-family: var(--font-body); 
  font-size: 0.75rem; 
  font-weight: 600; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--gold); 
}
p { line-height: 1.8; color: var(--mid); }
a { color: inherit; text-decoration: none; }

.display { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 8rem); font-weight: 300; line-height: 1.0; letter-spacing: -0.04em; }
.serif-italic { font-style: italic; }
.label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(235, 224, 213, 0.4);
  padding: 0 2rem;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 105;
}
.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a,
.nav-links > a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: block;
}
.nav-links .dropdown > a:hover,
.nav-links > a:hover { background: rgba(243, 233, 226, 0.6); color: var(--forest); }

.nav-links .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute; top: calc(100% + 5px); left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 0.75rem;
  z-index: 200;
  transition: var(--transition);
}
.nav-links .dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links .dropdown-menu a:hover { 
  background: var(--blush); 
  color: var(--forest); 
  padding-left: 1.25rem;
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-actions a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid);
  transition: var(--transition);
}
.nav-actions a:hover:not(.nav-btn) { color: var(--forest); }

/* Mobile Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 105;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  position: absolute;
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--forest);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  transition-delay: 0.1s;
}

/* ── SCROLL ANIMATIONS ── */
.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS & MICRO-ANIMATIONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: translateY(100%);
  transition: var(--transition);
  z-index: -1;
  border-radius: var(--radius-pill);
}
.btn:hover::after { transform: translateY(0); }

.btn-primary { background: var(--forest); color: var(--warm-white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-gold { 
  background: var(--gold); 
  color: var(--warm-white); 
  box-shadow: 0 4px 12px rgba(168, 134, 71, 0.15);
}
.btn-gold:hover { 
  background: var(--gold-light); 
  transform: translateY(-3px); 
  box-shadow: var(--shadow-gold); 
}

.btn-outline { 
  background: transparent; 
  color: var(--forest); 
  border: 1px solid rgba(13, 36, 26, 0.3); 
}
.btn-outline:hover { 
  border-color: var(--forest);
  background: var(--forest); 
  color: var(--warm-white); 
  transform: translateY(-3px); 
}

.btn-outline-white { 
  background: transparent; 
  color: var(--warm-white); 
  border: 1px solid rgba(255,255,255,0.4); 
}
.btn-outline-white:hover { 
  border-color: white;
  background: white; 
  color: var(--forest);
  transform: translateY(-3px); 
}
.btn-outline-white::after {
  background: white;
}

.nav-btn {
  background: var(--forest);
  color: var(--warm-white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.nav-btn:hover { background: var(--forest-mid) !important; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nav-btn::after { display: none; }

.btn-sm { padding: 0.7rem 1.6rem; font-size: 0.75rem; }
.btn-lg { padding: 1.2rem 3rem; font-size: 0.9rem; }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2.5rem; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.pt-nav { padding-top: 80px; }

section { padding: 8rem 0; }
section.tight { padding: 4rem 0; }
section.loose { padding: 12rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── HERO PATTERNS ── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(168,134,71,0.2) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(65,102,87,0.25) 0%, transparent 60%);
}
.hero-texture {
  position: absolute; inset: 0;
  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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow { 
  font-size: 0.75rem; 
  font-weight: 600; 
  letter-spacing: 0.25em; 
  text-transform: uppercase; 
  color: var(--gold-light); 
  margin-bottom: 2rem; 
  display: flex; align-items: center; gap: 1rem; 
}
.hero-eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--gold); }
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-lead { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 3rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-right { position: relative; }

.hero-card-float {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
}
.hero-card-float:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.hero-stat-item { text-align: left; }
.hero-stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: white; line-height: 1; margin-bottom: 0.5rem; }
.hero-stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.hero-badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-badge {
  background: rgba(168,134,71,0.1);
  border: 1px solid rgba(168,134,71,0.2);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest-mid);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-inner {
  display: flex; gap: 4rem; align-items: center;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.trust-item::before { content: '✦'; color: var(--gold); font-size: 0.7rem; }

/* ── CARDS & SERVICES ── */
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 2;
}
.service-card:hover { 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-8px); 
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; transition: var(--transition); display: inline-block; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }

.service-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.service-badge.gold { background: rgba(168,134,71,0.1); color: var(--gold); }

.service-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--forest); }
.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; color: var(--mid); }
.service-card-link { 
  font-size: 0.8rem; 
  font-weight: 600; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--gold); 
  display: inline-flex; align-items: center; gap: 0.5rem; 
  transition: var(--transition);
}
.service-card-link::after { content: '→'; transition: transform 0.3s ease; }
.service-card:hover .service-card-link { color: var(--forest); }
.service-card:hover .service-card-link::after { transform: translateX(5px); }

/* ── PRICING BLOCKS ── */
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 0.95rem; color: var(--mid); font-weight: 500; }
.price-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--forest); }


/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.why-item { 
  padding: 2.5rem; 
  border-radius: var(--radius-lg); 
  background: rgba(255,255,255,0.6); 
  border: 1px solid var(--border); 
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.why-item:hover { background: var(--warm-white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-item-icon { 
  width: 56px; height: 56px; 
  background: var(--blush); 
  color: var(--forest);
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.5rem; 
  margin-bottom: 1.5rem; 
  transition: var(--transition);
}
.why-item:hover .why-item-icon { background: var(--gold); color: white; }
.why-item h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--forest); }
.why-item p { font-size: 0.95rem; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.highlight-box::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,134,71,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.highlight-box * { position: relative; z-index: 1; }
.highlight-box h3 { color: white; font-size: 2.2rem; margin-bottom: 1rem; }
.highlight-box p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }


/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem; left: 2rem;
  line-height: 1;
}
.testimonial p { font-style: italic; font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--forest); position: relative; z-index: 2; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--charcoal); text-transform: uppercase; }
.testimonial-loc { font-size: 0.8rem; color: var(--gold); margin-top: 0.25rem; font-weight: 500; }


/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header h4 { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1.5rem; }
.section-header p { font-size: 1.15rem; max-width: 640px; }
.section-header.centered p { margin: 0 auto; }


/* ── CTA SECTION ── */
.cta-section { 
  background: var(--forest); 
  padding: 10rem 0; 
  position: relative; 
  overflow: hidden; 
}
.cta-section::before { 
  content: ''; 
  position: absolute; inset: 0; 
  background: radial-gradient(circle at 50% 50%, rgba(168,134,71,0.15) 0%, transparent 60%); 
}
.cta-content {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 6rem 0 3rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}
.footer-brand-name span { color: var(--gold-light); font-style: italic; }
.footer-desc { font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; max-width: 360px; }
.footer-contact { font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { color: white; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); transform: translateX(3px); display: inline-block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-trust { display: flex; gap: 2rem; }
.footer-trust span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--forest);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(168,134,71,0.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h4 { color: var(--gold-light); margin-bottom: 1rem; }
.page-hero h1 { color: white; font-size: clamp(3rem, 6vw, 5rem); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 640px; margin-top: 1.5rem; }

/* ── ACCORDION ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  text-align: left;
  transition: var(--transition);
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-icon { 
  font-size: 1.5rem; 
  color: var(--gold); 
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  flex-shrink: 0; 
  font-weight: 300;
}
/* For grid animation on accordion */
.accordion-body { 
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-body-inner {
  overflow: hidden;
  padding: 0 0;
  color: var(--mid);
}
.accordion-item.open .accordion-body { grid-template-rows: 1fr; }
.accordion-item.open .accordion-body-inner { padding: 0 0 1.5rem; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body p { font-size: 1rem; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 4rem 0; }


/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 1rem; color: var(--mid);
}
.feature-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 1.25rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 1rem; }
.compare-table th { background: var(--forest); color: var(--warm-white); font-weight: 600; letter-spacing: 0.05em; font-size: 0.85rem; text-transform: uppercase; }
.compare-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.5); }
.compare-table .yes { color: var(--sage); font-weight: 600; font-size: 1.2rem; }
.compare-table .no { color: #C0392B; font-weight: 600; font-size: 1.2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate.visible { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }


/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-forest { color: var(--forest) !important; }
.text-gold { color: var(--gold) !important; }
.text-mid { color: var(--mid) !important; }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush); }
.bg-forest { background: var(--forest); }
.bg-white { background: var(--warm-white); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; } .mb-8 { margin-bottom: 4rem; }
.opacity-80 { opacity: 0.8; }
.opacity-60 { opacity: 0.6; }

.gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem;}
.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }
.h-full { height: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4, .footer-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .nav-actions .nav-btn { display: none; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .footer-grid, .why-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  section { padding: 5rem 0; }
  .hero { min-height: auto; padding: 10rem 0 6rem; }
  .cta-content { padding: 4rem 2rem; }
  .trust-bar-inner { gap: 2rem; }
  
  .footer-bottom { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}

 