/* ========================================
   HEPTAGON CAPITAL - WARM WEALTH DESIGN
   Light, warm, with subtle luxury cues
   ======================================== */

:root {
  --emerald:     #1E6B63;
  --emerald-dark:#174F49;
  --teal:        #2A8C82;
  --teal-light:  #E8F5F3;
  --sage:        #7BA69A;

  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --warm-white:  #FDFCFA;
  --white:       #FFFFFF;

  --grey-100:    #E9ECEF;
  --grey-200:    #DEE2E6;
  --grey-400:    #ADB5BD;
  --grey-600:    #6C757D;
  --grey-700:    #495057;
  --grey-800:    #343A40;
  --grey-900:    #1a1a1a;

  --gold:        #C8A45A;
  --gold-dark:   #A8873D;
  --gold-light:  #F5EDD8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --section-pad: 80px;
  --container:   1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-800);
  background: var(--warm-white);
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: transparent;
}

#main-nav.scrolled {
  background: rgba(253,252,250,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Nav colors: white on transparent hero, dark when scrolled */
#main-nav .nav-links a { color: rgba(255,255,255,0.9); }
#main-nav .nav-links a:hover { color: #fff; }
#main-nav .nav-links a.active { color: var(--gold); }
#main-nav .nav-toggle span { background: #fff; }

#main-nav.scrolled .nav-links a { color: var(--grey-700); }
#main-nav.scrolled .nav-links a:hover { color: var(--emerald); }
#main-nav.scrolled .nav-links a.active { color: var(--emerald); }
#main-nav.scrolled .nav-toggle span { background: var(--grey-800); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--emerald);
  color: var(--white) !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--emerald-dark); }

/* Nav CTA button group */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta-group .btn-nav-primary {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--grey-900) !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta-group .btn-nav-primary:hover {
  background: var(--gold-dark);
  color: #fff !important;
}

.nav-cta-group .btn-nav-outline {
  display: inline-block;
  padding: 7px 18px;
  background: transparent;
  color: rgba(255,255,255,0.9) !important;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta-group .btn-nav-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff !important;
}

/* Scrolled state nav CTA */
#main-nav.scrolled .nav-cta-group .btn-nav-outline {
  color: var(--emerald) !important;
  border-color: var(--emerald);
}

#main-nav.scrolled .nav-cta-group .btn-nav-outline:hover {
  background: var(--teal-light);
  color: var(--emerald-dark) !important;
}

/* Mobile CTA in mobile menu */
.mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}

.mobile-cta-group a {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600;
}

.mobile-cta-group .btn-mobile-primary {
  background: var(--gold);
  color: var(--grey-900) !important;
}

.mobile-cta-group .btn-mobile-outline {
  background: transparent;
  border: 1.5px solid var(--emerald);
  color: var(--emerald) !important;
}

/* Nav Logo (right side) */
.nav-logo-link {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

#main-nav .nav-logo-img {
  opacity: 0.85;
}

#main-nav.scrolled .nav-logo-img {
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--grey-900);
}

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--grey-600);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,79,73,0.82) 0%, rgba(30,107,99,0.7) 50%, rgba(42,140,130,0.6) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,90,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Sub-page hero (shorter, textured) */
.page-hero {
  min-height: auto;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 60%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('texture.svg') repeat;
  background-size: 200px 200px;
  opacity: 1;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,90,0.1) 0%, transparent 70%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h1 .accent { color: var(--gold); font-style: italic; }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}

/* Section with background image */
.section-image {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,79,73,0.88) 0%, rgba(30,107,99,0.78) 100%);
}

.section-image .container { position: relative; z-index: 1; }
.section-image h2, .section-image h3 { color: #fff; }
.section-image p { color: rgba(255,255,255,0.9); }

/* Inline image block within sections */
.section-img-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.section-img-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero logo - flows above the text content, same size as watermark concept */
.hero-logo-bg {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 32px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-logo-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-logo-img {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(200,164,90,0.2);
  border: 1px solid rgba(200,164,90,0.4);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 .accent { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta-block {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.hero-cta-block h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}

.hero-cta-block p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid var(--emerald);
}

.btn-primary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--grey-800);
  border: 2px solid var(--grey-200);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-outline:hover { border-color: var(--emerald); color: var(--emerald); }

/* Hero-scoped button and stat overrides (dark bg) */
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover { border-color: #fff; color: #fff; }

/* Stats bar */
.stats-bar {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(200,164,90,0.35);
}

.stat h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
}

.stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

/* ========================================
   GOLD DIVIDER
   ======================================== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  overflow: hidden;
  background: var(--emerald);
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.section-cream { background: var(--cream); }
.section-dark {
  background: var(--emerald-dark);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--grey-900);
  margin-bottom: 20px;
}

.section-title .accent { color: var(--emerald); font-style: italic; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-label { color: var(--gold); }

.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-600);
  max-width: 640px;
  margin-bottom: 36px;
}

.section-dark .section-intro { color: rgba(255,255,255,0.75); }

/* ========================================
   DIFFERENCE CARDS
   ======================================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.diff-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  transition: all 0.3s;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.diff-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 10px;
  margin-bottom: 24px;
  color: var(--gold-dark);
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--grey-900);
}

.diff-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-600);
}

/* ========================================
   PROCESS GRID
   ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-100);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--grey-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-600);
}

/* ========================================
   VIDEO PLACEHOLDER (Advisors page)
   ======================================== */
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('texture.svg') repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.video-placeholder-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.video-placeholder-inner svg {
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}

.video-placeholder-inner p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ========================================
   COMPARISON GRID (Why Use Us)
   ======================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.compare-col {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.compare-us {
  background: var(--emerald-dark);
  color: #fff;
}

.compare-diy {
  background: var(--cream-dark);
  color: var(--grey-800);
  border: 1px solid rgba(0,0,0,0.06);
}

.compare-header {
  padding: 32px 32px 24px;
}

.compare-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.compare-us .compare-header h3 { color: #fff; }
.compare-diy .compare-header h3 { color: var(--grey-800); }

.compare-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.compare-us .compare-tag { color: var(--gold); }
.compare-diy .compare-tag { color: var(--grey-500); }

.compare-list {
  padding: 0 32px 24px;
  margin: 0;
  list-style: none;
  counter-reset: compare-step;
  flex: 1;
}

.compare-list li {
  counter-increment: compare-step;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compare-list li::before {
  content: counter(compare-step);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.compare-us .compare-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-us .compare-list li::before {
  background: rgba(200,164,90,0.2);
  color: var(--gold);
}

.compare-diy .compare-list li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.compare-diy .compare-list li::before {
  background: rgba(0,0,0,0.06);
  color: var(--grey-500);
}

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

.compare-footer {
  padding: 24px 32px 32px;
}

.compare-us .compare-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.compare-us .compare-footer p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 600;
}

.compare-diy .compare-footer {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.compare-diy .compare-footer p {
  color: var(--grey-500);
  font-weight: 600;
  font-style: italic;
}

/* ========================================
   STANCE GRID
   ======================================== */
.stance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stance-item {
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stance-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.stance-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-featured {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
}

.team-photo-small {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-bottom: 16px;
  filter: grayscale(10%);
  transition: all 0.3s;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-card .role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.team-card .subtitle {
  font-size: 13px;
  color: var(--grey-600);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-featured {
  padding: 48px;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.6;
  color: var(--grey-800);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--grey-900);
}

.testimonial-detail {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

/* Photo divider between testimonial groups */
.testimonial-divider {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(0,0,0,0.2) 100%);
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

/* Cards with gold glow hover */
.testimonial-card {
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(191,155,80,0.28), 0 0 0 1px rgba(191,155,80,0.15);
  border-color: rgba(191,155,80,0.35);
  transform: translateY(-2px);
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-700);
  margin-bottom: 20px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-divider {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .testimonial-featured {
    padding: 28px;
  }
  .testimonial-featured blockquote {
    font-size: 18px;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0;
  background-color: var(--emerald-dark);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23,79,73,0.85);
  z-index: 0;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section h2 .accent { color: var(--gold); font-style: italic; }

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--grey-900);
  font-weight: 700;
}

.cta-section .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-outline:hover {
  border-color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }

footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
}

.footer-bottom p { margin-bottom: 8px; }

.page-hero .section-label { margin-bottom: 16px; color: var(--gold); }

.page-hero .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--grey-900);
  font-weight: 700;
}

.page-hero .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.page-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* ========================================
   PILLAR CARDS (Services)
   ======================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  transition: all 0.3s;
}

.pillar-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.pillar-card .pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.pillar-tagline {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-600);
}

.pillar-services {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}

.pillar-services h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}

.pillar-services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar-services li {
  font-size: 13px;
  padding: 4px 12px;
  background: var(--cream);
  border-radius: 100px;
  color: var(--grey-700);
}

/* Full-width 5th pillar */
.pillar-full {
  grid-column: 1 / -1;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--grey-900);
  margin-bottom: 24px;
}

.info-block {
  margin-bottom: 24px;
}

.info-block .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-block p { font-size: 15px; color: var(--grey-700); }
.info-block a { color: var(--emerald); }
.info-block a:hover { text-decoration: underline; }

.contact-form {
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-800);
  background: var(--warm-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--emerald-dark); }

/* ========================================
   PROMISES / STEPS
   ======================================== */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promise {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-100);
}

.promise-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
}

.promise strong {
  display: block;
  font-size: 15px;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.promise-text {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ========================================
   ABOUT PAGE SPECIFICS
   ======================================== */
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dimension-card {
  padding: 20px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey-100);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dimension-card:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,140,130,0.12);
}

.dimension-card:hover h4 {
  color: var(--emerald-dark);
}

.dimension-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--grey-900);
  transition: color 0.3s;
}

.dimension-card .dim-hint {
  font-size: 11px;
  color: var(--teal);
  margin-top: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}

.dimension-card:hover .dim-hint {
  opacity: 1;
}

/* ========================================
   MODAL / POPUP OVERLAY
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--grey-600);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--grey-100);
  color: var(--grey-900);
}

.modal-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--grey-900);
  margin-bottom: 16px;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 12px;
}

.modal-content .bio-nickname {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.modal-content .bio-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}

.modal-content .bio-section h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}

.modal-content .bio-section p,
.modal-content .bio-section a {
  font-size: 14px;
  color: var(--grey-700);
}

.modal-content .bio-section a {
  color: var(--emerald);
  transition: color 0.2s;
}

.modal-content .bio-section a:hover {
  text-decoration: underline;
}

/* Compact modal layout */
.modal-compact {
  padding: 28px 32px;
  max-width: 640px;
  max-height: 90vh;
}

.modal-compact h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.modal-compact .bio-nickname {
  margin-bottom: 8px;
  font-size: 14px;
}

.modal-compact > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.modal-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.btn-book-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.btn-book-inline:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,107,99,0.25);
  color: var(--white);
}

.btn-book-inline svg {
  flex-shrink: 0;
}

.bio-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-100);
}

.bio-detail h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 6px;
}

.bio-detail p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey-700);
}

.bio-contact-row {
  margin-top: 12px;
  padding-top: 12px;
}

.bio-contact-row h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 6px;
}

.bio-contact-row p,
.bio-contact-row a {
  font-size: 13px;
  color: var(--grey-700);
}

.bio-contact-row a {
  color: var(--emerald);
  transition: color 0.2s;
}

.bio-contact-row a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .modal-compact {
    padding: 20px;
    max-width: 100%;
  }
  .modal-header-row {
    flex-direction: column;
    gap: 8px;
  }
  .bio-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* GoHighLevel form embed */
.ghl-form-wrapper {
  max-width: 680px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: var(--white);
}

.ghl-form-container {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Team card clickable */
.team-card-clickable {
  cursor: pointer;
}

.team-card-clickable:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(42,140,130,0.15);
}

/* Ethos / Laws cards */
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ethos-card {
  padding: 24px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-100);
  text-align: center;
  transition: all 0.3s;
}

.ethos-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.ethos-card .ethos-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ethos-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--grey-900);
  margin-bottom: 8px;
}

.ethos-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey-600);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.mv-card {
  padding: 32px;
  border-radius: 12px;
}

.mv-card.mission {
  background: var(--emerald-dark);
  color: #fff;
}

.mv-card.vision {
  background: var(--white);
  border: 1px solid var(--grey-100);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
}

.mv-card.mission h3 { color: var(--gold); }
.mv-card.vision h3 { color: var(--emerald); }

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
}

.mv-card.mission p { color: rgba(255,255,255,0.85); }
.mv-card.vision p { color: var(--grey-600); }

.law-list {
  max-width: 640px;
}

.law-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.law-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.law-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.law-item p {
  font-size: 14px;
  color: var(--grey-600);
}

.stats-row {
  display: flex;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 48px 0;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--emerald);
}

.stat-item p {
  font-size: 14px;
  color: var(--grey-600);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-cta-group .btn-nav-primary { padding: 6px 14px; font-size: 12px; }
  .nav-cta-group .btn-nav-outline { padding: 5px 14px; font-size: 12px; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 36px; }

  .diff-grid,
  .process-grid,
  .stance-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-featured { grid-template-columns: 280px 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-full { grid-column: auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .dimension-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .ethos-grid { grid-template-columns: repeat(3, 1fr); }
  .mission-vision { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .hero { padding: 120px 0 60px; }
  .hero-logo-img { height: 120px; }
  .logo-img { height: 60px; }
  .nav-inner { height: 76px; }
  .stats-bar { flex-direction: column; gap: 20px; }

  .diff-grid,
  .process-grid,
  .stance-grid,
  .testimonials-grid,
  .compare-grid,
  .promises-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-featured { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .dimension-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-direction: column; gap: 24px; }
  .ethos-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision { grid-template-columns: 1fr; }

  .modal-content { padding: 28px 24px; }

  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
