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

:root {
  --green-deep:    #1D3E1E;
  --green-mid:     #2B5C2C;
  --green-bright:  #4A8B4B;
  --green-sage:    #8AB88B;
  --green-mist:    #D4E8D4;
  --gold:          #C49A3C;
  --gold-light:    #E8C97A;
  --cream:         #F7F4ED;
  --cream-dark:    #EDE8DC;
  --white:         #FFFFFF;
  --text-dark:     #1C1C1A;
  --text-mid:      #4A4A45;
  --text-light:    #787870;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        12px;
  --radius-lg:     24px;
  --shadow:        0 4px 24px rgba(29,62,30,0.10);
  --shadow-lg:     0 16px 56px rgba(29,62,30,0.15);
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:         1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,92,44,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a8822e;
  border-color: #a8822e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ─── LAYOUT ──────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header p { margin-top: 1rem; }

/* ─── NAVIGATION ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(247,244,237,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(29,62,30,0.08);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Logo image - always original SVG colors */
.nav-logo-img {
  height: 130px;
  width: auto;
  display: block;
}
.nav-logo-img.dark { /* legacy */ }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav.scrolled .nav-links a {
  color: var(--text-mid);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav.scrolled .nav-links a:hover { color: var(--green-mid); }
.nav.scrolled .nav-links a::after { background: var(--green-mid); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }


/* Nav CTA button - visible on dark hero */
.nav .nav-cta {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  font-size: 1rem;
  padding: 0.75rem 1.6rem;
}
.nav .nav-cta:hover {
  background: #a8822e;
  border-color: #a8822e;
}
.nav.scrolled .nav-cta {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.nav.scrolled .nav-cta:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 2rem; cursor: pointer;
  color: var(--green-deep);
}

/* ─── HERO ────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  padding: 7rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74,139,75,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(43,92,44,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1D3E1E 0%, #2B5C2C 50%, #1A3820 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--green-bright);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: -50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .label { color: var(--gold-light); margin-bottom: 1.2rem; display: block; }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text .lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 400;
}
.trust-badge .icon { color: var(--gold-light); font-size: 1.2rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  width: 420px;
  height: 520px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  border: 3px solid rgba(196,154,60,0.4);
  position: relative;
  background: rgba(74,139,75,0.2);
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem;
}

.hero-photo-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.4;
}

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

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  color: white;
  font-size: 0.85rem;
}
.hero-card-1 { bottom: 40px; left: -30px; }
.hero-card-2 { top: 60px; right: -20px; }
.hero-card strong { display: block; font-size: 1.4rem; font-family: var(--font-display); }

/* ─── PAIN SECTION ────────────────────────────────── */

.pain-section { background: var(--cream-dark); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pain-quotes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-quote {
  background: var(--white);
  border-left: 3px solid var(--green-sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-mid);
  transition: border-color var(--transition);
}
.pain-quote:hover { border-left-color: var(--green-mid); color: var(--green-deep); }

.pain-text .label { margin-bottom: 0.75rem; display: block; }
.pain-text h2 { margin-bottom: 1.2rem; }
.pain-text p { margin-bottom: 1.5rem; }

/* ─── WHY TRUECORE ────────────────────────────────── */

.usp-rows {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 2rem;
}
.usp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.usp-row.reverse .usp-visual { order: 2; }
.usp-row.reverse .usp-content { order: 1; }

.usp-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(29,62,30,0.18);
}
.usp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.usp-row:hover .usp-visual img { transform: scale(1.04); }

.usp-visual-number {
  position: absolute;
  top: -30px;
  right: -30px;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 1;
  pointer-events: none;
}
.usp-row.reverse .usp-visual-number {
  right: auto;
  left: -30px;
}

.usp-content .sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.usp-content h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 1.2rem;
  color: var(--green-deep);
}
.usp-content p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.usp-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--green-mist);
}
.usp-features li {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.5;
}
.usp-features li::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-mist);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232B5C2C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .usp-rows { gap: 3.5rem; }
  .usp-row { grid-template-columns: 1fr; gap: 2rem; }
  .usp-row.reverse .usp-visual { order: 1; }
  .usp-row.reverse .usp-content { order: 2; }
  .usp-visual-number { font-size: 8rem; top: -20px; right: -10px; }
  .usp-row.reverse .usp-visual-number { left: -10px; }
}

/* ─── ABOUT ───────────────────────────────────────── */

.about-section { background: var(--green-deep); color: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: rgba(74,139,75,0.2);
  border: 2px solid rgba(196,154,60,0.3);
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  gap: 0.5rem;
}
.about-photo-placeholder .ph-icon { font-size: 4rem; opacity: 0.3; }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-photo-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: white;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.about-text .label { color: var(--gold-light); margin-bottom: 0.75rem; display: block; }
.about-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.2rem; font-size: 1.05rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

.cert-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ─── PACKAGES ────────────────────────────────────── */

.packages-section { background: var(--cream-dark); }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(29,62,30,0.18);
  border: 2px solid var(--green-mist);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(29,62,30,0.25);
  border-color: var(--green-mid);
}

.package-card.featured {
  background: var(--green-deep);
  color: white;
  border-color: var(--gold);
}
.package-card.featured h3 { color: white; }
.package-card.featured .package-price { color: var(--gold-light); }
.package-card.featured .package-desc { color: rgba(255,255,255,0.75); }
.package-card.featured .package-feature { color: rgba(255,255,255,0.85); }
.package-card.featured .package-feature::before { color: var(--gold-light); }

.package-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: white;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}
.package-card.featured .package-label { color: var(--gold-light); }

.package-card h3 { margin-bottom: 0.5rem; }

.package-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.package-desc {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}
.package-feature {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.package-feature::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── TESTIMONIALS ────────────────────────────────── */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-mist);
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
}
.testi-author { font-weight: 600; color: var(--green-deep); font-size: 0.9rem; }
.testi-location { font-size: 0.82rem; color: var(--text-light); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ─── FAQ ─────────────────────────────────────────── */

.faq-section { background: var(--cream-dark); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(29,62,30,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-question.open { color: var(--green-mid); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 1.3rem; }
.faq-answer p {
  padding: 0 1.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── CTA SECTION ─────────────────────────────────── */

.cta-section {
  background:
    linear-gradient(135deg, rgba(29,62,30,0.88) 0%, rgba(43,92,44,0.85) 100%),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(196,154,60,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 80%, rgba(74,139,75,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .label { color: var(--gold-light); margin-bottom: 1rem; display: block; }
.cta-section h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ─── FOOTER ──────────────────────────────────────── */

.footer {
  background: #1A1A18;
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }

.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact a { font-size: 0.9rem; transition: color var(--transition); }
.footer-contact a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a:hover { color: white; }

/* ─── PAGE HERO (inner pages) ─────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.7); }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
.legal-content p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 0.4rem; }

/* ─── BOOKING PAGE ────────────────────────────────── */

.booking-section {
  padding: 5rem 0 6rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.booking-info .label { margin-bottom: 0.75rem; display: block; }
.booking-info h2 { margin-bottom: 1.2rem; }
.booking-info .lead { margin-bottom: 2rem; }

.booking-features { display: flex; flex-direction: column; gap: 1rem; }
.booking-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bf-icon {
  width: 40px; height: 40px;
  background: var(--green-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bf-text strong { display: block; font-size: 0.95rem; color: var(--green-deep); }
.bf-text span { font-size: 0.875rem; color: var(--text-light); }

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(43,92,44,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.service-options { display: flex; flex-direction: column; gap: 0.75rem; }
.service-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.service-option:has(input:checked) {
  border-color: var(--green-mid);
  background: rgba(43,92,44,0.04);
}
.service-option input[type="radio"] { margin-top: 3px; accent-color: var(--green-mid); }
.service-option-text strong { display: block; font-size: 0.95rem; color: var(--green-deep); }
.service-option-text span { font-size: 0.82rem; color: var(--text-light); }

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}
.form-privacy a { color: var(--green-mid); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--green-mid); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-mid); }

/* ─── ANIMATIONS ──────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 900px) {
  section { padding: 4rem 0; }

  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-photo-wrap { width: 280px; height: 340px; }

  .pain-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; }
  .testi-grid { grid-template-columns: 1fr; }

  .nav-links, .nav-cta { display: none; }
  
/* Nav CTA button - visible on dark hero */
.nav .nav-cta {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  font-size: 1rem;
  padding: 0.75rem 1.6rem;
}
.nav .nav-cta:hover {
  background: #a8822e;
  border-color: #a8822e;
}
.nav.scrolled .nav-cta {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.nav.scrolled .nav-cta:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.hamburger { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
