/* ═══════════════════════════════════════════════════════════════
   RHEME BUSINESS CONSULTING GROUP
   Main Stylesheet — Dark Emerald + Bright Gold
   rhe.me
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --emerald-deep:      #0D4429;
  --emerald-deeper:    #0A3D20;
  --emerald-darker:    #083318;
  --emerald-mid:       #1A6040;
  --emerald-light:     #2A8055;
  --gold:              #E0B020;
  --gold-light:        #F5CC50;
  --gold-dark:         #B8911A;
  --cream:             #F0FAF4;
  --cream-deep:        #D6EDE0;
  --white:             #FFFFFF;
  --dark-text:         #0F2B1A;
  --body-text:         #2A4034;
  --muted:             #6B8C78;
  --overlay:           rgba(8, 51, 24, 0.72);
  --overlay-light:     rgba(8, 51, 24, 0.52);
  --overlay-strong:    rgba(8, 51, 24, 0.85);

  --font-display:      'Playfair Display', Georgia, serif;
  --font-sans:         'Montserrat', Arial, sans-serif;

  --nav-height:        76px;
  --max-width:         1160px;
  --section-pad:       100px;
  --radius-sm:         4px;
  --radius:            6px;
  --radius-lg:         12px;
  --radius-xl:         16px;
  --transition:        0.3s ease;
  --transition-fast:   0.18s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--emerald-deeper, var(--emerald-darker));
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,176,32,0.28);
}
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--emerald-darker);
  transform: translateY(-2px);
}
.btn-gold-outline svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--emerald-dark, var(--emerald-deep));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover {
  background: var(--emerald-mid);
  transform: translateY(-2px);
}
.btn-dark svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.section-overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-overline--light { color: var(--gold); }
.section-overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-overline--center { justify-content: center; }
.section-overline--center::before { display: none; }
.section-overline--center::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
}
.section-title--light { color: var(--white); }
.section-title--dark  { color: var(--emerald-deep); }

/* ── SCROLL REVEAL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: 0.1s; }
.reveal-delay-2          { transition-delay: 0.2s; }
.reveal-delay-3          { transition-delay: 0.3s; }
.reveal-delay-4          { transition-delay: 0.4s; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.transparent { background: transparent; }
#navbar.solid {
  background: var(--emerald-darker);
  box-shadow: 0 2px 24px rgba(0,0,0,0.32);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-logo-llc {
  color: rgba(255,255,255,0.40);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--emerald-darker) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

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

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;          /* allows hero to grow on short viewports */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 60px);   /* generous floor below fixed nav */
  padding-bottom: 60px;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--emerald-darker) 0%, var(--emerald-deep) 65%, #0f5232 100%);
  overflow: hidden;
}
/* Subtle radial glow behind figure */
#hero::before {
  content: '';
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translate(50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,96,64,0.55) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero figure — Eric's cutout PNG */
.hero-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 98%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
/* PHOTO SWAP: Replace eric-cutout.png with your new DSLR cutout whenever ready.
   Recommended filename: assets/images/eric-cutout.png                          */
.hero-figure img {
  height: 100%;
  width: auto;
  max-width: 44vw;
  display: block;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-12px 0 48px rgba(0,0,0,0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-overline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-overline::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 12px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: rgba(255,255,255,0.68);
  line-height: 1.2;
  margin-bottom: 30px;
}
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 46px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stats — inline below buttons */
.hero-corner-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(255,255,255,0.38);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(224,176,32,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

/* ── STATEMENT SECTION ──────────────────────────────────────── */
#statement {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.28;
}
.statement-quote span { color: var(--gold-dark); font-style: italic; }
.statement-body p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--body-text);
  margin-bottom: 18px;
}
.statement-body p:last-of-type { margin-bottom: 28px; }

/* ── PARALLAX BREAK ─────────────────────────────────────────── */
.parallax-break {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  /* Eric at the lake — full body. PHOTO SWAP: replace with new DSLR shot when ready */
  background-image:
    linear-gradient(to right, rgba(8,51,24,0.88) 0%, rgba(8,51,24,0.45) 100%),
    url('/assets/images/eric-lake.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
}
.parallax-break-content { max-width: 540px; }
.parallax-break-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.parallax-break-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 30px;
}

/* ── SERVICES ────────────────────────────────────────────────── */
#services {
  padding: var(--section-pad) 0;
  background: var(--emerald-deep);
}
.section-header-block {
  text-align: center;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,176,32,0.38);
  transform: translateY(-5px);
}
.service-icon {
  width: 50px; height: 50px;
  background: rgba(224,176,32,0.13);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.service-desc {
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.56);
  margin-bottom: 26px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition-fast);
}
.service-link svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}
.service-card:hover .service-link { gap: 10px; }

/* ── STATS PARALLAX ─────────────────────────────────────────── */
#stats {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  /* ── PHOTO SWAP: replace URL with assets/images/stats-bg.jpg when ready ── */
  background-image:
    linear-gradient(var(--overlay-strong), var(--overlay-strong)),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80');
  background-size: cover;
  background-attachment: fixed;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-divider {
  width: 32px; height: 2px;
  background: rgba(224,176,32,0.35);
  margin: 0 auto 12px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

/* ── FEATURED PACKAGE ───────────────────────────────────────── */
#package {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.package-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.package-pitch-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}
.package-pitch-body {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--body-text);
  margin-bottom: 16px;
}
.package-card {
  background: var(--emerald-dark, var(--emerald-deep));
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.package-card-badge {
  display: inline-block;
  background: rgba(224,176,32,0.14);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(224,176,32,0.28);
  margin-bottom: 20px;
}
.package-card-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.package-card-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.package-card-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.44);
  margin-bottom: 28px;
}
.package-features {
  margin-bottom: 32px;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.package-features li:last-child { border: none; }
.check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(224,176,32,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check svg {
  width: 10px; height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 58px;
}
.t-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--cream-deep);
  transition: transform var(--transition), box-shadow var(--transition);
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,68,41,0.1);
}
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 18px;
  opacity: 0.55;
}
.t-text {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 28px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.88rem; color: var(--emerald-deep); }
.t-role { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* ── BLOG PREVIEW ───────────────────────────────────────────── */
#blog {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-deep);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,68,41,0.1);
}
.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  /* ── PHOTO SWAP: replace URL with assets/images/blog-1.jpg when ready ── */
  background-image:
    linear-gradient(rgba(8,51,24,0.42), rgba(8,51,24,0.42)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&q=80');
  background-size: cover;
  background-position: center;
}
.blog-thumb-2 {
  background-image:
    linear-gradient(rgba(8,51,24,0.42), rgba(8,51,24,0.42)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80');
  background-size: cover; background-position: center;
}
.blog-thumb-3 {
  background-image:
    linear-gradient(rgba(8,51,24,0.42), rgba(8,51,24,0.42)),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=800&q=80');
  background-size: cover; background-position: center;
}
.blog-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.blog-body { padding: 26px 22px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.35;
  margin-bottom: 11px;
}
.blog-excerpt {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--body-text);
  opacity: 0.74;
  margin-bottom: 18px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--transition-fast);
}
.blog-card:hover .blog-read-more { gap: 9px; }
.blog-read-more svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
#cta {
  padding: var(--section-pad) 0;
  /* ── PHOTO SWAP: replace URL with assets/images/cta-bg.jpg when ready ── */
  background-image:
    linear-gradient(var(--overlay-strong), var(--overlay-strong)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin-bottom: 44px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.newsletter-row {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.newsletter-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.13);
}
.newsletter-form button {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── NEWSLETTER SECTION (includes/newsletter.php) ────────────── */

/* Shared */
.nl-overline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.nl-overline--center { text-align: center; }

.nl-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.nl-input::placeholder { color: rgba(255,255,255,0.40); }
.nl-input:focus { border-color: var(--gold); }
.nl-input--lg { padding: 16px 22px; font-size: 0.95rem; }

.nl-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.15s ease;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.nl-btn--lg { padding: 16px 36px; font-size: 0.9rem; }

.nl-field-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.nl-field-row--center { justify-content: center; max-width: 540px; margin: 0 auto; }

.nl-fine-print {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  line-height: 1.5;
}
.nl-fine-print--center { text-align: center; }

/* Post-page compact strip */
.nl-strip {
  padding: 72px 0;
  background: var(--emerald-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nl-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nl-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.nl-strip-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
}
@media (max-width: 720px) {
  .nl-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nl-field-row { flex-direction: column; }
  .nl-btn { width: 100%; text-align: center; }
}

/* Full-width section */
.nl-section {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--emerald-darker) 0%, var(--emerald-deep) 60%, #0f5232 100%);
  position: relative;
  overflow: hidden;
}
.nl-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(224,176,32,0.06);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.nl-section-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.nl-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.nl-section-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
@media (max-width: 560px) {
  .nl-field-row--center { flex-direction: column; }
  .nl-btn--lg { width: 100%; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--emerald-darker);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 22px;
}
.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
}
.footer-col-heading {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.38); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.48); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.social-btn:hover {
  background: rgba(224,176,32,0.14);
  border-color: rgba(224,176,32,0.38);
}
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.54); fill: none; stroke-width: 1.75; }
.social-btn:hover svg { stroke: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── FOOTER COLUMN HELPERS ──────────────────────────────────── */
.footer-brand-col { grid-column: span 1; }
.footer-nav-col, .footer-contact-col { grid-column: span 1; }
.footer-legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal-links a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.55); }

/* ── LL DISCLOSURE CALLOUT ──────────────────────────────────── */
.ll-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(13,68,41,0.06);
  border: 1px solid rgba(13,68,41,0.18);
  border-left: 3px solid var(--emerald-mid);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--body-text);
  line-height: 1.68;
  margin: 24px 0 28px;
}
.ll-note svg { flex-shrink: 0; margin-top: 2px; stroke: var(--emerald-mid); fill: none; stroke-width: 2; }
.ll-note strong { color: var(--emerald-deep); font-weight: 700; display: block; margin-bottom: 3px; }
.ll-note a { color: var(--emerald-mid); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Service list sub-label */
.service-sub-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cream-deep);
}
.service-sub-label.ll-label { color: var(--emerald-mid); border-color: rgba(26,96,64,0.2); }

/* ── PAGE HERO (interior pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-color: var(--emerald-darker);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 70px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--overlay-strong) 0%, var(--overlay) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-overline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-hero {
  /* Eric headshot at lake. PHOTO SWAP: replace with new DSLR headshot when ready */
  background-image:
    linear-gradient(160deg, rgba(8,51,24,0.82) 0%, rgba(8,51,24,0.55) 100%),
    url('/assets/images/eric-headshot.jpg');
  background-position: center top;
}
.about-intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(rgba(8,51,24,0.35), rgba(8,51,24,0.55)),
    url('https://images.unsplash.com/photo-1556157382-97eda2f9e2bf?w=800&q=80');
  background-size: cover;
  background-position: center top;
}
.about-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-bio-text { color: var(--body-text); }
.about-bio-text p { margin-bottom: 18px; line-height: 1.8; font-size: 1.05rem; }
.about-bio-text p:last-child { margin-bottom: 0; }
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald-deep);
  letter-spacing: 0.04em;
}
.cred-badge svg { width: 14px; height: 14px; stroke: var(--emerald-mid); fill: none; stroke-width: 2; }

/* About — Philosophy section */
.about-philosophy {
  padding: var(--section-pad) 0;
  background: var(--emerald-deep);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.philosophy-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}
.philosophy-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(224,176,32,0.3);
}
.philosophy-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.philosophy-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.philosophy-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* About — Timeline */
.about-timeline {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.timeline-list {
  position: relative;
  max-width: 720px;
  margin: 48px auto 0;
  padding-left: 32px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--emerald-mid);
  opacity: 0.25;
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald-mid);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(26,96,64,0.2);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.timeline-event {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.timeline-detail {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SERVICES PAGE ───────────────────────────────────────────── */
.services-hero {
  background-image:
    linear-gradient(160deg, rgba(8,51,24,0.88) 0%, rgba(8,51,24,0.65) 100%),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
}
.service-detail {
  padding: var(--section-pad) 0;
}
.service-detail:nth-child(even) { background: var(--cream); }
.service-detail:nth-child(odd) { background: var(--white); }

/* ── Formation: deep legal authority ──────────────────────── */
#formation {
  background: var(--emerald-darker);   /* #083318 — deepest defined emerald */
}
#formation .service-detail-title { color: var(--white); }
#formation .service-detail-body  { color: rgba(255,255,255,0.80); }
#formation .service-detail-icon  {
  background: rgba(224,176,32,0.15);
  border: 1px solid rgba(224,176,32,0.35);
}
#formation .service-detail-icon svg { stroke: var(--gold); }
#formation .service-sub-label {
  color: var(--gold);
  border-bottom-color: rgba(224,176,32,0.25);
}
#formation .service-sub-label.ll-label { color: rgba(255,255,255,0.5); }
#formation .service-detail-list li { color: rgba(255,255,255,0.85); }
#formation .service-detail-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E0B020' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
#formation .ll-note {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  border-left-color: var(--gold);
  color: rgba(255,255,255,0.70);
}
#formation .ll-note strong { color: var(--white); }
#formation .ll-note a { color: var(--gold); }
#formation .service-visual { box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

/* ── Tech: sophisticated near-black gradient ──────────────── */
#tech {
  background: linear-gradient(135deg, #081420 0%, #0a1f14 60%, #0d2318 100%);
}
#tech .service-detail-title { color: var(--white); }
#tech .service-detail-body  { color: rgba(255,255,255,0.78); }
#tech .service-detail-icon  {
  background: rgba(26,160,96,0.15);
  border: 1px solid rgba(26,160,96,0.30);
}
#tech .service-detail-icon svg { stroke: var(--emerald-light, #4ade80); }
#tech .service-detail-list li { color: rgba(255,255,255,0.85); }
#tech .service-detail-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
#tech .service-visual { box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-detail-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 24px;
}
.service-detail-list {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.6;
}
.service-detail-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231A6040' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
}
.service-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,51,24,0.14);
}
.service-visual-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
}
.service-visual-img.img-formation {
  background-image:
    linear-gradient(rgba(8,51,24,0.2), rgba(8,51,24,0.2)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=900&q=80');
}
.service-visual-img.img-legal {
  background-image:
    linear-gradient(rgba(8,51,24,0.2), rgba(8,51,24,0.2)),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=900&q=80');
}
.service-visual-img.img-tech {
  background-image:
    linear-gradient(rgba(8,51,24,0.2), rgba(8,51,24,0.2)),
    url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=900&q=80');
}
.service-visual-img.img-advisory {
  background-image:
    linear-gradient(rgba(8,51,24,0.2), rgba(8,51,24,0.2)),
    url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=900&q=80');
}

/* Services — Package Comparison Table */
.packages-section {
  padding: var(--section-pad) 0;
  background: var(--emerald-darker);
}
.pkg-table-wrap {
  overflow-x: auto;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pkg-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  min-width: 680px;
}
.pkg-table th, .pkg-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
}
.pkg-table thead th {
  background: rgba(255,255,255,0.08);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(224,176,32,0.2);
}
.pkg-table tbody tr:last-child td { border-bottom: none; }
.pkg-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.pkg-table td:first-child { color: rgba(255,255,255,0.72); font-weight: 500; }
.pkg-table td:not(:first-child) { text-align: center; color: rgba(255,255,255,0.55); }
.pkg-check { color: var(--gold); font-size: 1rem; }
.pkg-dash { color: rgba(255,255,255,0.18); }
.pkg-price-row td {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white) !important;
  text-align: center !important;
  padding-top: 28px;
  border-top: 1px solid rgba(224,176,32,0.2);
}
.pkg-price-row td:first-child { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45) !important; }
.pkg-highlight-col { background: rgba(224,176,32,0.06) !important; }
.pkg-cta-row td { padding-top: 22px; padding-bottom: 28px; text-align: center !important; border: none; }
.pkg-cta-row td:first-child { text-align: left !important; }

/* ── WORK WITH ME PAGE ───────────────────────────────────────── */
.wwm-hero {
  background-image:
    linear-gradient(160deg, rgba(8,51,24,0.88) 0%, rgba(8,51,24,0.65) 100%),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80');
}
.process-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--gold), var(--emerald-mid));
  opacity: 0.25;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--emerald-deep);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Work With Me — Package cards */
.wwm-packages {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.wwm-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.wwm-pkg-card {
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.wwm-pkg-card:hover {
  border-color: var(--emerald-mid);
  box-shadow: 0 16px 48px rgba(8,51,24,0.12);
  transform: translateY(-4px);
}
.wwm-pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(8,51,24,0.1);
  position: relative;
}
.wwm-pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--emerald-darker);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.wwm-pkg-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.wwm-pkg-tagline {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.wwm-pkg-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.wwm-pkg-price-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.wwm-pkg-divider {
  height: 1px;
  background: var(--cream-deep);
  margin-bottom: 24px;
}
.wwm-pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.wwm-pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--body-text);
  line-height: 1.55;
}
.wwm-pkg-features li .check svg { width: 16px; height: 16px; stroke: var(--emerald-mid); fill: none; stroke-width: 2.5; }
.wwm-pkg-features li .check { flex-shrink: 0; margin-top: 1px; }

/* Work With Me — FAQ */
.wwm-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--cream-deep);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--emerald-mid); }
.faq-question svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--emerald-mid); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-hero {
  background-image:
    linear-gradient(160deg, rgba(8,51,24,0.88) 0%, rgba(8,51,24,0.65) 100%),
    url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?w=1920&q=80');
}
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 18px;
  line-height: 1.2;
}
.contact-info-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 36px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--emerald-mid); fill: none; stroke-width: 2; }
.contact-detail-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-detail-value { font-size: 0.95rem; font-weight: 500; color: var(--dark-text); }
.contact-detail-value a { color: var(--emerald-mid); transition: color var(--transition-fast); }
.contact-detail-value a:hover { color: var(--emerald-deep); }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(8,51,24,0.07);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-mid);
  box-shadow: 0 0 0 3px rgba(26,96,64,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-success {
  display: none;
  padding: 18px 22px;
  background: rgba(26,96,64,0.08);
  border: 1px solid rgba(26,96,64,0.2);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--emerald-mid);
  font-weight: 500;
  margin-top: 16px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wwm-package-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--emerald-darker);
    padding: 20px 24px 28px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .statement-grid,
  .package-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonials-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-corner-stats { gap: 20px; margin-top: 28px; padding-top: 20px; }
  .hero-figure { display: none; }
  .hero-content { max-width: 100%; }
  .parallax-break,
  #stats, #hero, #cta,
  .page-hero { background-attachment: scroll; }
  #navbar { background: var(--emerald-darker) !important; }
  .about-intro-grid,
  .service-detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-detail-grid.reverse { direction: ltr; }
  .wwm-package-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-card { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-legal-links { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .wwm-package-grid { grid-template-columns: 1fr; }
}
