﻿/* =============================================
   ECG — COMPLETE STYLESHEET v2
   Green + White Premium Theme
   Executive Career Group™
   ============================================= */

/* === VARIABLES === */
:root {
  --green:       #1B3A2D;
  --green-deep:  #0F2318;
  --green-mid:   #2A5140;
  --green-pale:  #EEF4F0;
  --green-light: #F4F9F5;
  --gold:        #C09A5B;
  --gold-light:  #D4AF7A;
  --white:       #FFFFFF;
  --off-white:   #F9F9F7;
  --text:        #0F2318;
  --text-light:  rgba(15,35,24,0.6);
  --border:      rgba(27,58,45,0.12);
  --gold-border: rgba(192,154,91,0.25);
  --nav-h:       72px;
  --transition:  all 0.3s ease;

  /* ── EXEC Design System v3 ── */
  --exec-black:         #0A0A0A;
  --exec-charcoal:      #141414;
  --exec-charcoal-2:    #1C1C1C;
  --exec-gold:          #C9A227;
  --exec-gold-light:    #D4AF37;
  --exec-gold-muted:    rgba(201,162,39,0.12);
  --exec-white:         #FAFAFA;
  --exec-white-soft:    #F5F5F4;
  --exec-warm-gray:     #D6D3D1;
  --exec-cool-gray:     #9CA3AF;
  --exec-dark-border:   #2B2B2B;
  --exec-green:         #1B3A2D;
  --exec-green-dark:    #0d2218;
  --exec-border:        rgba(201,162,39,0.15);
  --exec-border-strong: rgba(201,162,39,0.35);
}

/* === RESET === */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:'Outfit',sans-serif; }
ul { list-style:none; }
input,textarea,select { font-family:'Outfit',sans-serif; }

/* === SCROLL PROGRESS BAR === */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--green);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 9000;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; }
.announcement-bar .close-bar {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.45);
  font-size: 18px; cursor: pointer;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(15,35,24,0.06);
  z-index: 8000;
  transition: var(--transition), transform 0.4s ease;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
.nav.scrolled {
  height: 60px;
  box-shadow: 0 2px 30px rgba(15,35,24,0.1);
}
.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo svg { width:36px; height:36px; flex-shrink:0; }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-logo-text strong {
  font-family:'Cormorant Garamond',serif;
  font-size: 17px;
  color: var(--green);
  letter-spacing: 0.02em;
}
.nav-logo-text small {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link .caret {
  font-size: 8px;
  opacity: 0.4;
  transition: transform 0.2s;
}
.nav-item:hover .caret { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 32px;
  display: none;
  gap: 40px;
  min-width: 520px;
  box-shadow: 0 20px 60px rgba(15,35,24,0.12);
  z-index: 100;
}
.nav-item:hover .mega-menu { display: flex; }
.mega-col { min-width: 160px; }
.mega-col-title {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  transition: var(--transition);
}
.mega-item:hover { padding-left: 4px; }
.mega-item-diamond { color: var(--gold); font-size: 8px; margin-top: 5px; flex-shrink: 0; }
.mega-item-name {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  display: block;
  transition: color 0.2s;
}
.mega-item:hover .mega-item-name { color: var(--green); }
.mega-item-desc { font-size: 11px; color: var(--text-light); display: block; margin-top: 1px; }
.mega-feature {
  min-width: 200px;
  padding: 28px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-feature.green-bg { background: var(--green); }
.mega-feature.dark-bg { background: var(--green-pale); border: 1px solid var(--border); }
.mega-feature-quote {
  font-size: 60px;
  color: rgba(192,154,91,0.3);
  line-height: 0.8;
  font-family: Georgia, serif;
}
.mega-feature-name { font-family:'Cormorant Garamond',serif; font-size: 18px; color: var(--white); }
.mega-feature.dark-bg .mega-feature-name { color: var(--green); }
.mega-feature-title { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.mega-feature.dark-bg .mega-feature-title { color: var(--text-light); }
.mega-feature-text { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; font-style: italic; margin-top: 4px; }
.mega-feature.dark-bg .mega-feature-text { color: var(--text-light); }
.mega-feature-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background 0.2s;
}
.mega-feature-btn:hover { background: var(--gold-light); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--text-light);
  font-size: 16px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-icon-btn:hover { color: var(--green); }
.nav-book-btn {
  background: var(--green);
  color: var(--white);
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-book-btn:hover { background: var(--green-mid); }

/* Search */
.nav-search-bar {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  display: none;
  box-shadow: 0 8px 30px rgba(15,35,24,0.08);
}
.nav-search-bar.open { display: flex; gap: 12px; align-items: center; }
.nav-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  padding: 8px 0;
  outline: none;
}
.nav-search-bar input::placeholder { color: var(--text-light); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 4px; margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 7500;
  display: flex; flex-direction: column;
  padding: 100px 8% 50px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  border-left: 4px solid var(--green);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-nav-link .expand { color: var(--gold); font-size: 20px; }
.mobile-nav-sub { display: none; padding: 10px 0 10px 20px; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sub a:hover { color: var(--green); }
.mobile-nav-book {
  margin-top: 40px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: block;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,35,24,0.65) 0%, rgba(27,58,45,0.45) 60%, rgba(15,35,24,0.35) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%; max-width: 800px;
}
.hero-line { width: 50px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px; font-family: 'Outfit',sans-serif;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 74px; font-weight: 300;
  color: var(--white); line-height: 1.08; margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.92);
  line-height: 1.65; max-width: 540px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero sm */
.hero-sm { min-height: 52vh; }
.hero-sm h1 { font-size: 54px; }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 48px;
}
.hero-stat { background: rgba(15,35,24,0.4); padding: 20px 16px; text-align: center; }
.hero-stat-num {
  font-family: 'Cormorant Garamond',serif;
  font-size: 34px; color: var(--gold); font-weight: 400; display: block;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; margin-top: 4px; }

/* === BUTTONS === */
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 14px 30px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; transition: background 0.25s;
  display: inline-block; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); color: var(--white); }
.btn-green {
  background: var(--green); color: var(--white);
  padding: 14px 30px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; transition: background 0.25s;
  display: inline-block; cursor: pointer;
}
.btn-green:hover { background: var(--green-mid); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition); display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-green {
  background: transparent; color: var(--green);
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 2px solid var(--green);
  transition: var(--transition); display: inline-block; cursor: pointer;
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition); display: inline-block; cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-dark {
  background: var(--green-deep); color: var(--white);
  padding: 14px 36px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; transition: var(--transition);
  display: inline-block; cursor: pointer;
}
.btn-dark:hover { background: var(--green); }

/* === SECTION COMMON === */
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 16px; font-family: 'Outfit',sans-serif;
}
.section-headline {
  font-family: 'Cormorant Garamond',serif;
  font-size: 44px; font-weight: 300;
  color: var(--text); line-height: 1.15; margin-bottom: 20px;
}
.section-headline.white { color: var(--white); }
.section-sub {
  font-size: 16px; color: var(--text-light);
  line-height: 1.7; max-width: 580px; margin-bottom: 48px;
}
.section-sub.white { color: rgba(255,255,255,0.75); }
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 24px 0; }

/* === MARQUEE === */
.marquee-section { background: var(--green); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 0 24px; flex-shrink: 0;
}
.marquee-track span.gold-dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === STICKY SECTION NAV === */
.section-nav {
  position: sticky; top: var(--nav-h); z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--green);
  padding: 0 8%; display: flex; overflow-x: auto; scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav a {
  padding: 15px 20px; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  white-space: nowrap; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: var(--transition); font-weight: 500;
}
.section-nav a:hover { color: var(--green); }
.section-nav a.active { color: var(--green); border-bottom-color: var(--gold); font-weight: 700; }

/* === TWO COLUMN LAYOUTS === */
.two-col { display: grid; gap: 60px; align-items: center; }
.two-col-55-45 { grid-template-columns: 55fr 45fr; }
.two-col-45-55 { grid-template-columns: 45fr 55fr; }
.two-col-50-50 { grid-template-columns: 1fr 1fr; }
.two-col-40-60 { grid-template-columns: 40fr 60fr; }

/* === ABOUT PREVIEW === */
.about-preview { background: var(--white); padding: 90px 8%; }
.about-preview p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.about-img {
  height: 420px; object-fit: cover; object-position: top; width: 100%;
  border: 1px solid var(--border);
  box-shadow: 16px 16px 0 var(--green-pale);
}

/* === SERVICES PREVIEW === */
.services-preview { background: var(--green-light); padding: 90px 8%; }
.svc-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.svc-card {
  background: var(--white); border-top: 3px solid var(--green);
  padding: 32px 24px; transition: var(--transition);
  box-shadow: 0 2px 16px rgba(15,35,24,0.06);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(15,35,24,0.1); }
.svc-card h3 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 22px; color: var(--text); margin-bottom: 12px; font-weight: 400;
}
.svc-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* === RESULTS TICKER === */
.results-ticker { background: var(--green); padding: 70px 8%; }
.ticker-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
}
.ticker-item { background: var(--green); padding: 48px 24px; text-align: center; }
.ticker-num {
  font-family: 'Cormorant Garamond',serif;
  font-size: 54px; color: var(--gold); display: block; line-height: 1; margin-bottom: 10px;
}
.ticker-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

/* === TESTIMONIALS === */
.featured-testimonial {
  background: var(--green); padding: 56px 64px;
  position: relative; margin-bottom: 0;
  border-left: 6px solid var(--gold);
}
.feat-quote-bg {
  font-family: Georgia,serif; font-size: 140px;
  color: rgba(192,154,91,0.12); line-height: 0.8;
  position: absolute; top: 16px; left: 44px; z-index: 0; pointer-events: none;
}
.feat-content { position: relative; z-index: 1; }
.feat-stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 22px; }
.feat-quote {
  font-family: 'Cormorant Garamond',serif;
  font-size: 22px; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.7; margin-bottom: 30px;
}
.feat-author { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.feat-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.feat-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.feat-name { font-size: 17px; font-weight: 700; color: var(--white); }
.feat-title-txt { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; }
.feat-loc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.feat-badge {
  background: rgba(192,154,91,0.15); border: 1px solid rgba(192,154,91,0.4);
  padding: 6px 16px; color: var(--gold); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; margin-left: auto;
}

/* Review cards */
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 38px 32px;
  transition: var(--transition); box-shadow: 0 2px 16px rgba(15,35,24,0.05);
}
.review-card:hover { border-top-color: var(--green); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,35,24,0.08); }
.review-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-card-photo { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.review-card-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.review-card-name { font-size: 16px; font-weight: 700; color: var(--text); }
.review-card-title { font-size: 11px; color: var(--gold); letter-spacing: 0.06em; }
.review-card-loc { font-size: 11px; color: var(--text-light); }
.review-stars { color: var(--gold); font-size: 14px; margin: 14px 0; }
.review-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.review-quote { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-style: italic; color: var(--text); line-height: 1.7; }
.review-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; font-size: 11px; }
.review-card-footer .service { color: var(--text-light); }
.review-card-footer .rating { color: var(--gold); font-weight: 700; }

/* Review strip */
.review-strip {
  background: var(--green-light); border: 1px solid var(--border);
  border-left: 4px solid var(--green); padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-top: 40px;
}
.review-strip h3 { font-family: 'Cormorant Garamond',serif; font-size: 26px; color: var(--text); font-weight: 400; }
.review-strip p { font-size: 13px; color: var(--text-light); margin-top: 6px; }

/* === BOOK PREVIEW CARDS === */
.book-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.book-preview-card { cursor: pointer; }
.book-preview-img { width:100%; height:200px; object-fit:cover; display:block; border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 4px 20px rgba(15,35,24,0.08); }
.book-preview-title { font-size: 13px; color: var(--text); margin-top: 10px; font-weight: 600; line-height: 1.4; }
.book-preview-author { font-size: 11px; color: var(--gold); margin-top: 4px; }

/* === CTA BLOCK === */
.cta-block {
  position: relative; background-size: cover; background-position: center;
  background-attachment: fixed; padding: 110px 8%; text-align: center;
}
.cta-block-overlay { position: absolute; inset: 0; background: rgba(15,35,24,0.82); }
.cta-block-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-label { font-size: 10px; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.cta-block h2 { font-family: 'Cormorant Garamond',serif; font-size: 54px; font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.cta-block p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.cta-note { font-size: 13px; color: rgba(192,154,91,0.75); margin-top: 24px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
footer { background: var(--green-deep); border-top: 3px solid var(--gold); padding: 70px 8% 30px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr 1fr; gap: 48px; margin-bottom: 0; }
.footer-logo-wrap { margin-bottom: 16px; }
.footer-brand-name { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: var(--gold); margin-bottom: 6px; display: block; }
.footer-tagline { font-size: 10px; color: rgba(192,154,91,0.45); letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-top: 8px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(192,154,91,0.2); display: block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { margin-bottom: 18px; }
.footer-contact-label { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 4px; }
.footer-contact-val { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-val a { color: rgba(255,255,255,0.65); }
.footer-contact-val a:hover { color: var(--gold); }

/* Maps */
.footer-maps-section { margin-top: 50px; }
.footer-maps-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; display: block; }
.map-item iframe { width: 100%; height: 180px; border: 1px solid rgba(192,154,91,0.2) !important; filter: grayscale(100%) brightness(0.45) contrast(1.1); display: block; }

/* Footer bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-motto { font-size: 12px; color: var(--gold); }

/* === ABOUT PAGE === */
.about-hero-bg { background-size: cover; background-position: top center; min-height: 60vh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,24,0.72) 0%, rgba(27,58,45,0.5) 100%); }
.about-hero-content { position: relative; z-index: 1; padding: 0 8%; }
.about-hero-content h1 { font-family:'Cormorant Garamond',serif; font-size: 64px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.about-hero-content .subtitle { font-size: 18px; color: var(--gold); }
.story-section { background: var(--white); padding: 100px 8%; }
.story-section p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.story-img { height: 450px; object-fit: cover; width: 100%; border: 1px solid var(--border); box-shadow: 16px 16px 0 var(--green-pale); }
.leadership-section { background: var(--green-light); display: grid; grid-template-columns: 42fr 58fr; min-height: 600px; }
.leadership-img-wrap { position: relative; overflow: hidden; }
.leadership-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.leadership-glow { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,58,45,0.05) 0%, transparent 100%); }
.leadership-content { padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.leadership-content p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.leadership-links { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.mission-section { background: var(--green); padding: 100px 8%; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mission-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 48px 40px; }
.mission-card h3 { font-family:'Cormorant Garamond',serif; font-size: 32px; color: var(--white); margin-bottom: 20px; font-weight: 300; }
.mission-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }
.values-section { background: var(--white); padding: 100px 8%; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--green);
  padding: 36px 32px; transition: var(--transition); box-shadow: 0 2px 16px rgba(15,35,24,0.04);
}
.value-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(15,35,24,0.08); }
.value-num { font-family:'Cormorant Garamond',serif; font-size: 48px; color: rgba(27,58,45,0.12); line-height: 1; margin-bottom: 12px; }
.value-card h3 { font-family:'Cormorant Garamond',serif; font-size: 24px; color: var(--text); margin-bottom: 12px; font-weight: 400; }
.value-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.why-section { background: var(--green-light); padding: 100px 8%; }
.why-items { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.why-item { display: grid; grid-template-columns: 60px 1fr; gap: 30px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--border); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family:'Cormorant Garamond',serif; font-size: 52px; color: rgba(27,58,45,0.2); line-height: 1; }
.why-item h3 { font-family:'Cormorant Garamond',serif; font-size: 28px; color: var(--text); margin-bottom: 12px; font-weight: 400; }
.why-item p { color: var(--text-light); font-size: 15px; line-height: 1.75; }
.method-section { background: var(--white); padding: 100px 8%; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.method-card {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 36px 30px; transition: var(--transition); box-shadow: 0 2px 16px rgba(15,35,24,0.04);
}
.method-card:hover { box-shadow: 0 8px 32px rgba(15,35,24,0.1); }
.method-step { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.method-card h3 { font-family:'Cormorant Garamond',serif; font-size: 24px; color: var(--text); margin-bottom: 12px; font-weight: 400; }
.method-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.cta-banner { background: var(--green); padding: 80px 8%; text-align: center; }
.cta-banner h2 { font-family:'Cormorant Garamond',serif; font-size: 44px; color: var(--white); margin-bottom: 16px; font-weight: 300; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 30px; }

/* === SERVICES PAGE === */
.services-hero { min-height: 75vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 80px; }
.services-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.services-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,24,0.75) 0%, rgba(27,58,45,0.5) 100%); }
.services-hero-content { position: relative; z-index: 1; padding: 0 8%; max-width: 700px; }
.services-hero-content h1 { font-family:'Cormorant Garamond',serif; font-size: 64px; font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.services-hero-content p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.7; }
.exec-services { background: var(--white); padding: 100px 8%; }
.svc-large-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 60px; border: 1px solid var(--border); box-shadow: 0 4px 30px rgba(15,35,24,0.06); }
.svc-large-card:last-child { margin-bottom: 0; }
.svc-large-card.reverse { direction: rtl; }
.svc-large-card.reverse > * { direction: ltr; }
.svc-large-img { height: 100%; min-height: 400px; object-fit: cover; width: 100%; display: block; }
.svc-large-content { padding: 60px 50px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.svc-num { font-family:'Cormorant Garamond',serif; font-size: 72px; color: rgba(27,58,45,0.08); line-height: 1; margin-bottom: 4px; }
.svc-large-content h2 { font-family:'Cormorant Garamond',serif; font-size: 32px; color: var(--text); margin-bottom: 16px; font-weight: 400; line-height: 1.2; }
.svc-large-content p { color: var(--text-light); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.svc-includes { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.svc-includes li { font-size: 13px; color: var(--text-light); display: flex; align-items: flex-start; gap: 8px; }
.svc-includes li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-size: 12px; margin-top: 2px; font-weight: 700; }
.service-menu { background: var(--white); padding: 80px 0 0; }
.service-menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); margin-top: 40px; }
.service-menu-group { background: var(--green-light); padding: 28px 24px; }
.smg-title { font-size: 9px; letter-spacing: 0.3em; color: var(--green); text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.smg-item { padding: 8px 0; border-bottom: 1px solid var(--border); }
.smg-item:last-child { border-bottom: none; }
.smg-name { font-size: 13px; color: var(--text); font-weight: 600; }
.smg-desc { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.digital-services-section { background: var(--green-light); padding: 100px 8%; }
.digital-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.digital-card {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green);
  padding: 36px 28px; transition: var(--transition); box-shadow: 0 2px 16px rgba(15,35,24,0.04);
}
.digital-card:hover { box-shadow: 0 12px 40px rgba(15,35,24,0.1); transform: translateY(-4px); }
.digital-num { font-family:'Cormorant Garamond',serif; font-size: 52px; color: rgba(27,58,45,0.1); line-height: 1; margin-bottom: 8px; }
.digital-card h3 { font-family:'Cormorant Garamond',serif; font-size: 22px; color: var(--text); margin-bottom: 12px; font-weight: 400; }
.digital-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { background: var(--green-pale); border: 1px solid var(--border); color: var(--green); padding: 4px 10px; font-size: 10px; letter-spacing: 0.05em; }
.packages-section { background: var(--white); padding: 100px 8%; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.package-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 32px; position: relative; transition: var(--transition); box-shadow: 0 2px 16px rgba(15,35,24,0.04);
}
.package-card.featured { background: var(--green); border-color: var(--green); box-shadow: 0 12px 50px rgba(15,35,24,0.2); }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15,35,24,0.12); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); padding: 5px 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap; }
.package-name { font-family:'Cormorant Garamond',serif; font-size: 32px; color: var(--text); margin-bottom: 16px; font-weight: 300; }
.package-card.featured .package-name { color: var(--white); }
.package-desc { font-size: 13px; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.package-card.featured .package-desc { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.15); }
.package-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.package-includes li { font-size: 13px; color: var(--text-light); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.package-card.featured .package-includes li { color: rgba(255,255,255,0.8); }
.package-includes li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.samples-section { background: var(--green-light); padding: 100px 8%; }
.sample-row { margin-top: 32px; }
.sample-row-title { font-size: 10px; letter-spacing: 0.25em; color: var(--green); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); display: inline-block; }
.sample-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px; }
.sample-card { border: 1px solid var(--border); overflow: hidden; transition: var(--transition); background: var(--white); box-shadow: 0 2px 12px rgba(15,35,24,0.06); }
.sample-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(15,35,24,0.12); }
.sample-img { width: 100%; height: 340px; object-fit: cover; display: block; cursor: zoom-in; }
.guides-section { background: var(--green); padding: 80px 8%; }
.guide-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 40px; }
.guide-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 28px 20px; text-align: center; transition: var(--transition); }
.guide-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.guide-icon { font-size: 32px; margin-bottom: 14px; }
.guide-title { font-family:'Cormorant Garamond',serif; font-size: 17px; color: var(--white); margin-bottom: 8px; font-weight: 400; line-height: 1.3; }
.guide-desc { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.5; }
.guide-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 16px; font-size: 11px; letter-spacing: 0.08em; cursor: pointer; transition: var(--transition); width: 100%; font-family:'Outfit',sans-serif; }
.guide-btn:hover { background: var(--gold); color: var(--white); }

/* === PROCESS PAGE === */
.process-step-section { position: relative; min-height: 500px; display: flex; align-items: center; }
.step-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.step-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,24,0.75) 0%, rgba(27,58,45,0.58) 100%); }
.step-content { position: relative; z-index: 1; padding: 80px 8%; max-width: 580px; }
.step-content.align-right { margin-left: auto; }
.step-label { font-size: 11px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.step-content h2 { font-family:'Cormorant Garamond',serif; font-size: 40px; color: var(--white); margin-bottom: 20px; font-weight: 300; }
.step-content p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.step-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.step-list li { font-size: 13px; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 8px; }
.step-list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.process-overview { background: var(--white); padding: 80px 8%; }
.overview-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-bottom: 50px; }
.overview-step { background: var(--white); padding: 30px 20px; text-align: center; }
.overview-step-num { font-family:'Cormorant Garamond',serif; font-size: 56px; color: rgba(27,58,45,0.15); display: block; line-height: 1; margin-bottom: 8px; }
.overview-step-title { font-size: 13px; color: var(--green); letter-spacing: 0.08em; font-weight: 600; }
.process-overview p { color: var(--text-light); font-size: 16px; line-height: 1.8; max-width: 700px; }
.timeline-section { background: var(--green-light); padding: 100px 8%; }
.timeline { display: flex; margin-top: 60px; overflow-x: auto; padding-bottom: 20px; }
.timeline-item { flex: 1; min-width: 140px; text-align: center; position: relative; padding: 0 10px; }
.timeline-item::after { content: ''; position: absolute; top: 24px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.timeline-item:last-child::after { display: none; }
.timeline-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--green); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 1; font-size: 10px; font-weight: 700; color: var(--gold); text-align: center; line-height: 1.2; }
.timeline-title { font-size: 13px; color: var(--text); font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.timeline-desc { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* === CONTACT PAGE === */
.contact-layout { display: grid; grid-template-columns: 40fr 60fr; min-height: 600px; }
.contact-left { background: var(--green); padding: 70px 50px; }
.contact-right { background: var(--green-light); padding: 70px 60px; }
.contact-logo-section { margin-bottom: 36px; }
.contact-brand { font-family:'Cormorant Garamond',serif; font-size: 26px; color: var(--gold); display: block; margin-top: 12px; }
.contact-detail { margin-bottom: 24px; }
.contact-detail-label { font-size: 9px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 6px; }
.contact-detail-val { font-size: 14px; color: rgba(255,255,255,0.8); }
.contact-detail-val a { color: rgba(255,255,255,0.8); }
.contact-detail-val a:hover { color: var(--gold); }
.contact-confidential { font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 28px; line-height: 1.6; }
.contact-maps { margin-top: 36px; }
.contact-maps-title { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.contact-maps .maps-grid { gap: 14px; }
.contact-maps iframe { height: 160px !important; }
.contact-right h2 { font-family:'Cormorant Garamond',serif; font-size: 36px; color: var(--text); margin-bottom: 10px; font-weight: 300; }
.contact-right .sub { font-size: 14px; color: var(--text-light); margin-bottom: 36px; line-height: 1.6; }

/* Form styles */
.form-field { margin-bottom: 28px; }
.form-label { display: block; font-size: 9px; letter-spacing: 0.2em; color: var(--green); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  border-bottom: 2px solid var(--green); color: var(--text); padding: 12px 14px;
  font-size: 15px; outline: none; font-family:'Outfit',sans-serif;
  transition: border-color 0.3s; border-radius: 0; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 2px 0 var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-select option { background: var(--white); color: var(--text); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--green); color: var(--white); border: none; padding: 17px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family:'Outfit',sans-serif; transition: background 0.25s; margin-top: 8px; }
.form-submit:hover { background: var(--green-mid); }
.form-success { display: none; margin-top: 20px; padding: 20px 24px; border: 1px solid var(--border); border-left: 4px solid var(--green); text-align: center; background: var(--green-light); }
.form-success p { color: var(--green); font-family:'Cormorant Garamond',serif; font-size: 20px; }

/* === LIBRARY PAGE === */
.insights-section { background: var(--white); padding: 100px 8%; }
.insight-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.insight-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--green); padding: 35px 30px; transition: var(--transition); box-shadow: 0 2px 12px rgba(15,35,24,0.04); }
.insight-card:hover { background: var(--green-light); box-shadow: 0 8px 32px rgba(15,35,24,0.08); }
.insight-quote-mark { font-family: Georgia,serif; font-size: 72px; color: rgba(27,58,45,0.12); line-height: 0.8; margin-bottom: 16px; }
.insight-quote { font-family:'Cormorant Garamond',serif; font-size: 19px; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.insight-attribution { font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.books-section { background: var(--green-light); padding: 100px 8%; }
.books-header { text-align: center; margin-bottom: 48px; }
.books-header-rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.books-header-rule span { font-size: 13px; color: var(--gold); letter-spacing: 0.2em; }
.books-header-rule::before,.books-header-rule::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--gold); }
.books-section h2 { font-family:'Cormorant Garamond',serif; font-size: 48px; color: var(--text); margin-bottom: 12px; font-weight: 300; }
.books-section .books-sub { font-size: 16px; color: var(--text-light); }
.filter-bar { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; font-size: 12px; background: var(--white); border: 2px solid var(--border); color: var(--text-light); cursor: pointer; transition: var(--transition); font-family:'Outfit',sans-serif; font-weight: 600; }
.filter-btn.active, .filter-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.books-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.book-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(15,35,24,0.06); transition: var(--transition); }
.book-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(15,35,24,0.12); }
.book-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.book-card-info { padding: 16px; }
.book-card-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.book-card-author { font-size: 12px; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.book-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.free-guide-section { background: var(--green); padding: 80px 8%; }
.guide-left p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.guide-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.guide-checklist li { font-size: 14px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 10px; }
.guide-checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.guide-note { font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; }
.guide-form-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 40px; }
.guide-form-card .form-label { color: var(--gold); }
.guide-form-card .form-input, .guide-form-card .form-select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-bottom: 2px solid var(--gold); color: var(--white); }
.guide-form-card .form-input::placeholder { color: rgba(255,255,255,0.35); }
.guide-form-card .form-submit { background: var(--gold); }
.guide-form-card .form-submit:hover { background: var(--gold-light); }
#lib-success { display: none; text-align: center; padding: 20px; border: 1px solid rgba(255,255,255,0.2); }
#lib-success p { color: var(--gold); font-family:'Cormorant Garamond',serif; font-size: 20px; }

/* === DIGITAL SERVICES PAGE === */
.website-section { background: var(--white); padding: 100px 8%; }
.website-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.website-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); box-shadow: 0 2px 12px rgba(15,35,24,0.04); }
.website-card:hover { box-shadow: 0 12px 40px rgba(15,35,24,0.1); transform: translateY(-4px); }
.website-card-img { height: 240px; overflow: hidden; }
.website-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.website-card:hover .website-card-img img { transform: scale(1.04); }
.website-card-body { padding: 28px 24px; }
.website-card-body h3 { font-family:'Cormorant Garamond',serif; font-size: 22px; color: var(--text); margin-bottom: 14px; font-weight: 400; }
.website-card-body ul { display: flex; flex-direction: column; gap: 7px; }
.website-card-body li { font-size: 13px; color: var(--text-light); display: flex; align-items: flex-start; gap: 7px; }
.website-card-body li::before { content: '✓'; color: var(--green); font-size: 11px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.linkedin-section { background: var(--green-light); padding: 100px 8%; }
.seo-section { background: var(--white); padding: 100px 8%; }
.seo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.seo-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green); padding: 40px 32px; box-shadow: 0 2px 12px rgba(15,35,24,0.04); }
.seo-card h3 { font-family:'Cormorant Garamond',serif; font-size: 28px; color: var(--text); margin-bottom: 14px; font-weight: 400; }
.seo-card p { color: var(--text-light); font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.social-section { background: var(--green-light); padding: 100px 8%; }
.platform-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.platform-card { background: var(--white); border: 1px solid var(--border); padding: 36px 28px; transition: var(--transition); box-shadow: 0 2px 12px rgba(15,35,24,0.04); }
.platform-card:hover { box-shadow: 0 12px 40px rgba(15,35,24,0.1); transform: translateY(-4px); }
.platform-icon { font-size: 32px; margin-bottom: 16px; }
.platform-card h3 { font-family:'Cormorant Garamond',serif; font-size: 22px; color: var(--text); margin-bottom: 12px; font-weight: 400; }
.platform-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.gold-cta { background: var(--green); padding: 80px 8%; text-align: center; }
.gold-cta h2 { font-family:'Cormorant Garamond',serif; font-size: 44px; color: var(--white); margin-bottom: 16px; font-weight: 300; }
.gold-cta p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 30px; }

/* === THANK YOU PAGE === */
.thankyou-page { min-height: 100vh; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 8%; }
.ty-checkmark { font-size: 64px; color: var(--green); margin-bottom: 24px; animation: popIn 0.5s ease; }
@keyframes popIn { from { transform:scale(0);opacity:0; } to { transform:scale(1);opacity:1; } }
.ty-headline { font-family:'Cormorant Garamond',serif; font-size: 52px; font-weight: 300; color: var(--text); margin-bottom: 8px; }
.ty-sub { font-size: 17px; color: var(--text-light); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.ty-steps { background: var(--green-light); border: 1px solid var(--border); border-left: 4px solid var(--green); padding: 40px; max-width: 500px; width: 100%; margin: 0 auto 40px; }
.ty-step { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; }
.ty-step:last-child { border-bottom: none; }
.ty-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--white); flex-shrink: 0; font-weight: 700; }
.ty-step-text { font-size: 14px; color: var(--text-light); padding-top: 4px; }

/* === SPECIALISTS PAGE === */
.specialist-hero { background: var(--green); padding: 140px 8% 90px; }
.specialist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.specialist-card {
  background: var(--white); border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); box-shadow: 0 4px 24px rgba(15,35,24,0.06);
}
.specialist-card:hover { box-shadow: 0 16px 60px rgba(15,35,24,0.12); transform: translateY(-6px); }
.spec-card-header {
  position: relative; height: 280px; overflow: hidden;
  background: var(--green);
}
.spec-card-header img { width:100%; height:100%; object-fit:cover; object-position:top; transition: transform 0.5s ease; }
.specialist-card:hover .spec-card-header img { transform: scale(1.04); }
.spec-card-coming { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 12px; }
.spec-coming-icon { font-size: 40px; color: rgba(192,154,91,0.4); }
.spec-coming-text { font-family:'Cormorant Garamond',serif; font-size: 18px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.spec-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--gold); color: var(--white); padding: 4px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.spec-card-body { padding: 28px; }
.spec-name { font-family:'Cormorant Garamond',serif; font-size: 26px; color: var(--text); margin-bottom: 4px; font-weight: 400; }
.spec-title-role { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.spec-specialty { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.spec-rating-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.spec-stars-display { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.spec-rating-num { font-size: 18px; font-weight: 700; color: var(--text); font-family:'Cormorant Garamond',serif; }
.spec-reviews-count { font-size: 12px; color: var(--text-light); }
.spec-categories { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.spec-cat-row { display: flex; align-items: center; gap: 10px; }
.spec-cat-label { font-size: 11px; color: var(--text-light); width: 130px; flex-shrink: 0; }
.spec-cat-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.spec-cat-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 1s ease; }
.spec-cat-score { font-size: 11px; color: var(--text); font-weight: 600; width: 28px; text-align: right; }
.spec-card-footer { display: flex; gap: 10px; }
.spec-card-footer button { flex: 1; }
.spec-bio { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.recent-reviews-section { background: var(--green-light); padding: 80px 8%; }
.recent-review-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.recent-review-card { background: var(--white); border: 1px solid var(--border); padding: 28px; box-shadow: 0 2px 12px rgba(15,35,24,0.04); }
.rrc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rrc-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family:'Cormorant Garamond',serif; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.rrc-name { font-size: 14px; font-weight: 700; color: var(--text); }
.rrc-title { font-size: 11px; color: var(--text-light); }
.rrc-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.rrc-quote { font-family:'Cormorant Garamond',serif; font-size: 17px; font-style: italic; color: var(--text); line-height: 1.65; }
.rrc-service { font-size: 11px; color: var(--gold); margin-top: 12px; font-weight: 600; }

/* Rating modal per-category stars */
.rating-categories { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.rating-cat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 8px; display: block; }
.rating-cat-stars { display: flex; gap: 6px; }
.cat-star { font-size: 26px; color: #ccc; cursor: pointer; transition: color 0.15s, transform 0.15s; user-select: none; line-height: 1; }
.cat-star.active { color: var(--gold); }
.cat-star:hover { transform: scale(1.1); }

/* Career Assessment Tool */
.assessment-section { background: var(--green); padding: 90px 8%; }
.assessment-card { background: var(--white); max-width: 700px; margin: 0 auto; padding: 50px; box-shadow: 0 20px 60px rgba(15,35,24,0.2); }
.assessment-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.assessment-step-dot { flex: 1; height: 4px; background: var(--border); border-radius: 2px; transition: background 0.3s; }
.assessment-step-dot.done { background: var(--green); }
.assessment-step-dot.active { background: var(--gold); }
.assessment-q { font-family:'Cormorant Garamond',serif; font-size: 26px; color: var(--text); line-height: 1.35; margin-bottom: 28px; }
.assessment-options { display: flex; flex-direction: column; gap: 10px; }
.assessment-option { background: var(--green-light); border: 2px solid var(--border); padding: 14px 20px; font-size: 14px; color: var(--text); cursor: pointer; transition: var(--transition); text-align: left; font-family:'Outfit',sans-serif; }
.assessment-option:hover, .assessment-option.selected { background: var(--green); color: var(--white); border-color: var(--green); }
.assessment-result { text-align: center; display: none; }
.assessment-result h3 { font-family:'Cormorant Garamond',serif; font-size: 32px; color: var(--text); margin-bottom: 16px; }
.assessment-result p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.assessment-score { font-family:'Cormorant Garamond',serif; font-size: 80px; color: var(--gold); line-height: 1; margin-bottom: 8px; display: block; }
.assessment-score-label { font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
.assessment-nav { display: flex; justify-content: space-between; margin-top: 28px; align-items: center; }
.assessment-counter { font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; }

/* === MODALS === */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,35,24,0.75); z-index: 9999; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); max-width: 600px; width: 100%; border: 1px solid var(--border); border-top: 4px solid var(--green); position: relative; padding: 50px 45px; margin: auto; box-shadow: 0 30px 80px rgba(15,35,24,0.2); }
.modal-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: var(--text-light); font-size: 22px; cursor: pointer; transition: color 0.2s; line-height: 1; }
.modal-close:hover { color: var(--green); }
.modal-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-title { font-family:'Cormorant Garamond',serif; font-size: 34px; color: var(--text); font-weight: 400; margin-bottom: 8px; line-height: 1.2; }
.modal-sub { font-size: 14px; color: var(--text-light); margin-bottom: 32px; line-height: 1.65; }
.star-container { display: flex; gap: 8px; margin-bottom: 30px; cursor: pointer; }
.rev-star { font-size: 34px; color: var(--gold); transition: var(--transition); user-select: none; }
.rev-field-label { display: block; color: var(--green); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-family:'Outfit',sans-serif; margin-bottom: 8px; font-weight: 700; }
.rev-field { width: 100%; background: var(--green-light); border: 1px solid var(--border); border-bottom: 2px solid var(--green); color: var(--text); padding: 12px 14px; font-size: 15px; outline: none; font-family:'Outfit',sans-serif; margin-bottom: 24px; transition: border-color 0.3s; }
.rev-field:focus { border-color: var(--green); }
.rev-field::placeholder { color: var(--text-light); }
#rev-success { display: none; margin-top: 20px; padding: 20px; border: 1px solid var(--border); border-left: 4px solid var(--green); background: var(--green-light); text-align: center; }
#rev-success p { color: var(--green); font-family:'Cormorant Garamond',serif; font-size: 22px; }

/* === CHATBOT === */
#ecg-chatbot-toggle { position: fixed; bottom: 90px; right: 30px; width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 8500; box-shadow: 0 6px 24px rgba(15,35,24,0.3); border: none; transition: var(--transition); font-size: 22px; }
#ecg-chatbot-toggle:hover { background: var(--green-mid); transform: scale(1.05); }
#ecg-chatbot-window { position: fixed; bottom: 160px; right: 30px; width: 340px; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green); z-index: 8500; display: none; flex-direction: column; box-shadow: 0 16px 60px rgba(15,35,24,0.15); max-height: 480px; }
#ecg-chatbot-window.open { display: flex; }
.chatbot-header { background: var(--green); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.chatbot-header-title { font-family:'Cormorant Garamond',serif; font-size: 18px; color: var(--white); }
.chatbot-header-sub { font-size: 11px; color: rgba(255,255,255,0.55); }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 18px; cursor: pointer; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 200px; }
.chat-msg { padding: 10px 14px; border-radius: 2px; font-size: 13px; line-height: 1.55; max-width: 90%; }
.chat-msg.bot { background: var(--green-light); border-left: 2px solid var(--green); color: var(--text); }
.chat-msg.user { background: var(--green); color: var(--white); margin-left: auto; }
.chatbot-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px; border-top: 1px solid var(--border); }
.qr-btn { background: var(--green-light); border: 1px solid var(--border); color: var(--green); padding: 5px 10px; font-size: 11px; cursor: pointer; font-family:'Outfit',sans-serif; transition: var(--transition); font-weight: 600; }
.qr-btn:hover { background: var(--green); color: var(--white); }
.chatbot-input-row { display: flex; border-top: 1px solid var(--border); }
.chatbot-input { flex: 1; background: transparent; border: none; color: var(--text); padding: 12px 14px; font-size: 13px; font-family:'Outfit',sans-serif; outline: none; }
.chatbot-input::placeholder { color: var(--text-light); }
.chatbot-send { background: var(--green); border: none; color: var(--white); padding: 12px 16px; cursor: pointer; font-size: 14px; transition: background 0.2s; }
.chatbot-send:hover { background: var(--green-mid); }

/* === BACK TO TOP === */
#back-to-top { position: fixed; bottom: 30px; right: 100px; width: 44px; height: 44px; background: var(--white); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 16px; cursor: pointer; z-index: 8500; opacity: 0; transition: var(--transition); text-decoration: none; font-weight: 700; }
#back-to-top.visible { opacity: 1; }
#back-to-top:hover { background: var(--green); color: var(--white); }

/* === STICKY CTA BAR === */
#sticky-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--green); padding: 12px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 7900; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -4px 20px rgba(15,35,24,0.1); }
#sticky-cta-bar.visible { transform: translateY(0); }
#sticky-cta-bar .cta-text { font-size: 13px; color: var(--text-light); }
#sticky-cta-bar strong { color: var(--green); }

/* === EXIT POPUP === */
#exit-popup { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.75); z-index: 9998; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
#exit-popup.open { display: flex; }
.exit-box { background: #1B3A2D; max-width: 500px; width: 90%; border: 1px solid rgba(192,154,91,0.25); border-top: 4px solid var(--gold); padding: 50px 40px; text-align: center; position: relative; box-shadow: 0 30px 80px rgba(8,8,8,0.5); }
.exit-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 24px; cursor: pointer; transition: color 0.2s; }
.exit-close:hover { color: var(--gold); }
.exit-eyebrow { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; font-family:'Outfit',sans-serif; font-weight: 700; }
.exit-box h2 { font-family:'Cormorant Garamond',serif; font-size: 32px; color: #ffffff; margin-bottom: 12px; font-weight: 400; line-height: 1.2; }
.exit-box p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.65; }
.exit-dismiss { display: block; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 16px; cursor: pointer; background: none; border: none; font-family:'Outfit',sans-serif; transition: color 0.2s; }
.exit-dismiss:hover { color: rgba(255,255,255,0.7); }

/* === LOCATION CARDS (replaces Google Maps) === */
.location-card { width:100%; height:200px; background:linear-gradient(135deg,#1B3A2D 0%,#0d2218 100%); position:relative; overflow:hidden; border:1px solid rgba(192,154,91,0.2); }
.location-grid-bg { position:absolute; inset:0; background-image:linear-gradient(rgba(192,154,91,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(192,154,91,0.04) 1px,transparent 1px); background-size:32px 32px; }
.location-pin { position:absolute; top:50%; left:50%; transform:translate(-50%,-65%); }
.pin-dot { width:14px; height:14px; background:#C09A5B; border-radius:50% 50% 50% 0; transform:rotate(-45deg); margin:0 auto; }
.pin-pulse { width:30px; height:30px; border-radius:50%; border:1px solid rgba(192,154,91,0.3); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); animation:pinPulse 2s ease-out infinite; }
@keyframes pinPulse { 0% { transform:translate(-50%,-50%) scale(0.8); opacity:0.8; } 100% { transform:translate(-50%,-50%) scale(2); opacity:0; } }
.location-label { position:absolute; bottom:0; left:0; right:0; background:rgba(8,8,8,0.82); padding:12px 18px; }
.location-office { display:block; color:#C09A5B; font-size:9px; letter-spacing:0.22em; text-transform:uppercase; font-family:'Outfit',sans-serif; margin-bottom:3px; font-weight:700; }
.location-city { display:block; color:#F9F9F7; font-size:14px; font-family:'Outfit',sans-serif; font-weight:500; }

/* === SPECIALIST CARD v2 === */
.spec-v2-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.spec-v2-card { background:#fff; overflow:hidden; border:1px solid rgba(27,58,45,0.08); box-shadow:0 4px 24px rgba(15,35,24,0.06); transition:box-shadow 0.3s,transform 0.3s; }
.spec-v2-card:hover { box-shadow:0 12px 40px rgba(15,35,24,0.14); transform:translateY(-4px); }
.spec-photo-area { height:320px; overflow:hidden; position:relative; }
.spec-photo-area img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.spec-photo-initials { width:100%; height:100%; background:linear-gradient(135deg,#1B3A2D,#0d2218); display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:72px; color:#C09A5B; font-weight:300; letter-spacing:0.05em; }
.spec-v2-badge { position:absolute; bottom:16px; left:16px; background:#C09A5B; color:#080808; padding:5px 14px; font-size:10px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; font-family:'Outfit',sans-serif; }
.spec-v2-office-tag { position:absolute; top:14px; right:14px; background:rgba(8,8,8,0.75); color:rgba(249,249,247,0.8); padding:4px 10px; font-size:9px; letter-spacing:0.12em; text-transform:uppercase; font-family:'Outfit',sans-serif; }
.spec-v2-info { padding:24px 20px 28px; background:#fff; }
.spec-v2-name { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:400; color:#1a1a1a; margin-bottom:6px; background:none !important; -webkit-text-fill-color:initial !important; text-decoration:none; }
.spec-v2-verified { display:inline-block; background:rgba(27,58,45,0.06); border:1px solid rgba(27,58,45,0.12); padding:3px 10px; font-size:9px; color:#1B3A2D; letter-spacing:0.12em; text-transform:uppercase; font-family:'Outfit',sans-serif; margin-bottom:12px; }
.spec-v2-title { color:#C09A5B; font-size:11px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; margin-bottom:6px; font-family:'Outfit',sans-serif; }
.spec-v2-meta-row { display:flex; align-items:center; gap:6px; font-size:12px; color:#888; margin-bottom:4px; font-family:'Outfit',sans-serif; }
.spec-v2-meta-row a { color:#C09A5B; text-decoration:none; }
.spec-v2-meta-row a:hover { text-decoration:underline; }
.spec-v2-specialties { font-size:12px; color:#555; margin:10px 0; line-height:1.5; font-family:'Outfit',sans-serif; }
.spec-v2-divider { height:1px; background:rgba(192,154,91,0.2); margin:12px 0; }
.spec-v2-bio { font-size:13px; color:#444; line-height:1.7; font-family:'Outfit',sans-serif; }
.spec-v2-footer { display:flex; justify-content:space-between; align-items:center; margin-top:16px; padding-top:12px; border-top:1px solid rgba(27,58,45,0.08); }
.spec-v2-stars { color:#C09A5B; font-size:13px; letter-spacing:2px; }
.spec-v2-rating { font-size:12px; color:#888; font-family:'Outfit',sans-serif; }
.spec-v2-rate-btn { background:none; border:1px solid rgba(27,58,45,0.2); color:#1B3A2D; font-size:10px; font-family:'Outfit',sans-serif; letter-spacing:0.1em; text-transform:uppercase; padding:6px 14px; cursor:pointer; transition:all 0.2s; }
.spec-v2-rate-btn:hover { background:#1B3A2D; color:#fff; border-color:#1B3A2D; }
@media (max-width:1024px) { .spec-v2-grid { grid-template-columns:repeat(2,1fr); gap:24px; } }
@media (max-width:640px) { .spec-v2-grid { grid-template-columns:1fr; } }

/* === TOAST === */
#ecg-toast { position: fixed; bottom: 30px; right: 30px; background: var(--green); border-left: 4px solid var(--gold); color: var(--white); padding: 18px 24px; font-family:'Outfit',sans-serif; font-size: 14px; z-index: 99999; max-width: 360px; line-height: 1.6; box-shadow: 0 8px 30px rgba(15,35,24,0.3); animation: slideInToast 0.35s ease; }
@keyframes slideInToast { from { transform: translateX(120px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* === SAMPLE LIGHTBOX === */
#sample-lightbox {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 20px 40px;
}
#sample-lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 36px;
  cursor: pointer; line-height: 1; z-index: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
#lightbox-img-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  width: 100%; max-height: 92vh; overflow: hidden;
}
#lightbox-img {
  max-width: 96vw; max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 0 100px rgba(0,0,0,0.8);
  border: 1px solid rgba(192,154,91,0.2);
  transition: opacity 0.2s ease;
  cursor: zoom-in;
}
#lightbox-img.zoomed { cursor: zoom-out; transform-origin: center; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 22px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lightbox-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
.lightbox-footer {
  display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 16px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.65); font-family: 'Cormorant Garamond',serif;
  font-size: 17px; font-style: italic; text-align: center;
}
.lightbox-counter {
  color: rgba(255,255,255,0.3); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.lightbox-hint {
  color: rgba(255,255,255,0.2); font-size: 11px; letter-spacing: 0.1em;
}
.sample-card { cursor: zoom-in; position: relative; }
.sample-card::after {
  content: '🔍  View Full';
  position: absolute; inset: 0;
  background: rgba(27,58,45,0.82);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.25s ease;
  font-family: 'Outfit', sans-serif;
  pointer-events: none;
}
.sample-card:hover::after { opacity: 1; }

/* === PHOTO UPLOAD ZONE === */
.photo-upload-zone {
  border: 2px dashed var(--border); background: var(--green-light);
  padding: 0; text-align: center; cursor: pointer; margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s;
  height: 110px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-upload-zone:hover { border-color: var(--green); background: var(--green-pale); }
.photo-upload-zone.has-photo { border-style: solid; border-color: var(--green); }
.photo-upload-inner { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.photo-upload-icon { font-size: 26px; line-height: 1; }
.photo-upload-text { font-size: 13px; color: var(--green); font-weight: 700; letter-spacing: 0.05em; }
.photo-upload-sub { font-size: 11px; color: var(--text-light); }
.photo-upload-preview {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center; gap: 16px;
  background: var(--green-light);
}
.photo-upload-preview.visible { display: flex; }
.photo-upload-preview img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.photo-upload-preview span { font-size: 12px; color: var(--green); font-weight: 600; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-l.visible { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-r.visible { opacity:1; transform:translateX(0); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .hero h1 { font-size: 60px; }
  .section-headline { font-size: 38px; }
  .cta-block h2 { font-size: 44px; }
  .guide-cards { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-book-btn { display: none; }
  .hero h1 { font-size: 50px; }
  .svc-cards { grid-template-columns: repeat(2,1fr); }
  .ticker-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .book-preview-grid { grid-template-columns: repeat(2,1fr); }
  .digital-cards { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left:auto; margin-right:auto; }
  .service-menu-grid { grid-template-columns: repeat(2,1fr); }
  .leadership-section { grid-template-columns: 1fr; }
  .leadership-img-wrap { min-height: 350px; }
  .contact-layout { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: repeat(3,1fr); }
  .insight-cards { grid-template-columns: repeat(2,1fr); }
  .review-cards { grid-template-columns: 1fr; }
  .review-strip { flex-direction: column; text-align: center; }
  .website-cards { grid-template-columns: 1fr 1fr; }
  .platform-cards { grid-template-columns: 1fr 1fr; }
  .svc-large-card { grid-template-columns: 1fr; direction: ltr !important; }
  .svc-large-card.reverse { direction: ltr !important; }
  .svc-large-img { min-height: 280px; }
  .mission-cards { grid-template-columns: 1fr; }
  .specialist-grid { grid-template-columns: repeat(2,1fr); }
  .recent-review-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section-headline { font-size: 32px; }
  .featured-testimonial { padding: 36px 28px; }
  .feat-badge { display: none; }
  .feat-author { flex-direction: column; align-items: flex-start; }
  .svc-cards { grid-template-columns: 1fr; }
  .ticker-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: repeat(2,1fr); }
  .insight-cards { grid-template-columns: 1fr; }
  .guide-cards { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .overview-steps { grid-template-columns: 1fr 1fr; }
  .digital-cards { grid-template-columns: 1fr; }
  .seo-cards { grid-template-columns: 1fr; }
  .website-cards { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .contact-right { padding: 40px 30px; }
  .contact-left { padding: 40px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-block h2 { font-size: 36px; }
  .ty-headline { font-size: 38px; }
  .modal-box { padding: 36px 24px; }
  #ecg-chatbot-window { width: calc(100vw - 40px); right: 20px; }
  .maps-grid { grid-template-columns: 1fr; }
  .two-col,.two-col-55-45,.two-col-45-55,.two-col-50-50,.two-col-40-60 { grid-template-columns: 1fr; gap: 32px; }
  .specialist-grid { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; }
  .recent-review-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .section-headline { font-size: 28px; }
  .books-grid { grid-template-columns: 1fr; }
  .guide-cards { grid-template-columns: 1fr; }
  .book-preview-grid { grid-template-columns: 1fr 1fr; }
  .overview-steps { grid-template-columns: 1fr; }
  .ticker-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav { padding: 0 4%; }
  footer { padding: 50px 4% 24px; }
  .services-hero-content h1 { font-size: 40px; }
  .about-hero-content h1 { font-size: 44px; }
  .leadership-content { padding: 40px 28px; }
}

/* ═══════════════════════════════
   LOCATION CARDS (replaces Google Maps)
═══════════════════════════════ */
.location-card {
  width: 100%; height: 200px;
  background: linear-gradient(135deg,#1B3A2D 0%,#0d2218 100%);
  position: relative; overflow: hidden;
  border: 1px solid rgba(192,154,91,0.2);
}
.location-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(192,154,91,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(192,154,91,0.04) 1px,transparent 1px);
  background-size: 32px 32px;
}
.location-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-65%);
}
.pin-dot {
  width: 14px; height: 14px; background: #C09A5B;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg); margin: 0 auto;
}
.pin-pulse {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(192,154,91,0.3);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: locPulse 2s ease-out infinite;
}
@keyframes locPulse {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2); opacity: 0; }
}
.location-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.82); padding: 12px 18px;
}
.location-office {
  display: block; color: #C09A5B; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-family: 'Outfit',sans-serif; margin-bottom: 3px;
}
.location-city {
  display: block; color: #F9F9F7; font-size: 14px;
  font-family: 'Outfit',sans-serif; font-weight: 500;
}

/* ═══════════════════════════════
   SPECIALIST CARDS V2
═══════════════════════════════ */
.specialist-grid-v2 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.spec-card-v2 {
  background: #fff; border: 1px solid rgba(27,58,45,0.1);
  box-shadow: 0 4px 24px rgba(15,35,24,0.07); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-card-v2:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,35,24,0.14); }
.spec-photo-wrap { position: relative; height: 320px; overflow: hidden; }
.spec-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
}
.spec-photo-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1B3A2D,#0d2218);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond',serif; font-size: 64px;
  color: #C09A5B; font-weight: 300;
}
.spec-badge-v2 {
  position: absolute; bottom: 16px; left: 16px;
  background: #C09A5B; color: #080808; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: 'Outfit',sans-serif;
}
.spec-office-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(8,8,8,0.75); color: rgba(249,249,247,0.8);
  padding: 4px 10px; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; font-family: 'Outfit',sans-serif;
}
.spec-info { padding: 24px 20px 28px; background: #fff; }
.spec-name-v2 {
  font-family: 'Cormorant Garamond',serif; font-size: 24px;
  font-weight: 400; color: #1a1a1a; margin-bottom: 6px;
  line-height: 1.2; background: none !important;
  background-color: transparent !important; -webkit-text-fill-color: #1a1a1a;
}
.spec-verified {
  display: inline-block; background: rgba(27,58,45,0.06);
  border: 1px solid rgba(27,58,45,0.12); padding: 3px 10px;
  font-size: 9px; color: #1B3A2D; letter-spacing: 0.12em;
  text-transform: uppercase; font-family: 'Outfit',sans-serif;
  margin-bottom: 10px;
}
.spec-title-v2 {
  color: #C09A5B; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 6px; font-family: 'Outfit',sans-serif; margin-top: 8px;
}
.spec-location-row, .spec-email-row {
  color: #888; font-size: 12px; font-family: 'Outfit',sans-serif;
  margin-bottom: 3px; line-height: 1.5;
}
.spec-email-row a { color: #C09A5B; text-decoration: none; }
.spec-specialty-v2 {
  font-size: 12px; color: #555; margin: 10px 0;
  font-family: 'Outfit',sans-serif; line-height: 1.5;
}
.spec-divider { height: 1px; background: rgba(192,154,91,0.2); margin: 12px 0; }
.spec-bio-v2 { font-size: 13px; color: #444; line-height: 1.7; font-family: 'Outfit',sans-serif; }
.spec-stars-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 14px;
}
.spec-stars-v2 { color: #C09A5B; font-size: 13px; letter-spacing: 2px; }
.spec-rating-v2 { color: #888; font-size: 12px; font-family: 'Outfit',sans-serif; }
@media (max-width: 900px) { .specialist-grid-v2 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .specialist-grid-v2 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   21ST CENTURY DESIGN SYSTEM
═══════════════════════════════════════════════════ */

body { background-color: #09100a; }

/* Enhanced hero overlay — dramatic bottom gradient */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(8,14,8,0.20) 0%,
    rgba(8,14,8,0.40) 35%,
    rgba(10,18,10,0.80) 75%,
    rgba(9,16,10,0.96) 100%
  ) !important;
}

/* Hero location pill */
.hero-locations {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: rgba(192,154,91,0.65);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-loc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C09A5B;
  display: inline-block;
  animation: locDotPulse 2.5s ease-in-out infinite;
}
@keyframes locDotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.hero-loc-sep { color: rgba(192,154,91,0.3); }

/* Hero scroll indicator (bottom-right) */
.hero-scroll {
  position: absolute;
  bottom: 44px; right: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  z-index: 5;
}
.hero-scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, #C09A5B 0%, transparent 100%);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.05); }
}
.hero-scroll-text {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  color: rgba(192,154,91,0.5);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ── SECTION 2: CREDIBILITY STRIP ── */
.cred-strip {
  background: linear-gradient(135deg, #1a3828 0%, #0d2218 100%);
  border-top: 1px solid rgba(192,154,91,0.1);
  border-bottom: 1px solid rgba(192,154,91,0.1);
  padding: 40px 8%;
}
.cred-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cred-item { text-align: center; }
.cred-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #C09A5B;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-num sup { font-size: 24px; vertical-align: super; }
.cred-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: rgba(249,249,247,0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 8px;
}
.cred-sep { color: rgba(192,154,91,0.2); font-size: 8px; }

/* ── SERVICE CARD ICON + LINK ── */
.svc-icon {
  width: 54px; height: 54px;
  border: 1px solid rgba(192,154,91,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #C09A5B;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover .svc-icon {
  background: rgba(192,154,91,0.08);
  border-color: rgba(192,154,91,0.5);
}
.svc-link {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #C09A5B;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(192,154,91,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}
.svc-link:hover { border-color: #C09A5B; opacity: 0.8; }

/* ── SECTION 4: ABOUT PREVIEW + OFFICES ── */
.about-preview-section {
  background: linear-gradient(140deg, #1B3A2D 0%, #0a1208 55%, #080e08 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}
.about-preview-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,154,91,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,154,91,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.about-preview-img-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid rgba(192,154,91,0.15);
}
.about-preview-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-preview-img-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,14,8,0.95) 0%, transparent 100%);
  padding: 60px 24px 24px;
}
.apib-role {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 9px; color: #C09A5B;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 5px;
}
.apib-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: #F9F9F7;
  font-weight: 400; letter-spacing: 0.02em;
}
.about-preview-right { padding-left: 12px; }

/* Office location cards inside about section */
.offices-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── ENHANCED LOCATION CARDS (more visible) ── */
.location-card {
  height: 230px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(192,154,91,0.45) !important;
}
.location-grid-bg {
  background-image:
    linear-gradient(rgba(192,154,91,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,154,91,0.07) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
}
.pin-dot {
  width: 16px !important; height: 16px !important;
  box-shadow: 0 0 12px rgba(192,154,91,0.6) !important;
}
.pin-pulse {
  width: 40px !important; height: 40px !important;
  border-width: 1.5px !important;
}
.location-label {
  padding: 15px 20px !important;
  background: rgba(6,6,6,0.88) !important;
}
.location-office {
  font-size: 10px !important;
  letter-spacing: 0.28em !important;
}
.location-city { font-size: 16px !important; font-weight: 600 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-img-wrap { height: 400px; }
  .about-preview-right { padding-left: 0; }
}
@media (max-width: 680px) {
  .cred-inner { gap: 28px; }
  .cred-sep { display: none; }
  .cred-num { font-size: 40px; }
  .offices-cards-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .hero-locations { font-size: 10px; gap: 8px; }
}


/* ================================================================
   EXEC DESIGN SYSTEM v4 — ECG PREMIUM DARK EXECUTIVE
   Executive Career Group™ — Complete Brand Redesign
================================================================ */

/* ── GLOBAL BASE ── */
body { background: var(--exec-black); color: var(--exec-warm-gray); }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar { background: var(--exec-charcoal); color: rgba(250,250,250,0.8); border-bottom: 1px solid var(--exec-dark-border); }
.announcement-bar a { color: var(--exec-gold); }

/* ── NAV v4 ── */
.nav { background: rgba(10,10,10,0.96); border-bottom: 1px solid var(--exec-dark-border); box-shadow: none; }
.nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.nav-link { color: var(--exec-warm-gray); }
.nav-link:hover, .nav-link.active { color: var(--exec-white); }
.nav-book-btn { background: var(--exec-gold); color: var(--exec-black); font-weight: 700; }
.nav-book-btn:hover { background: var(--exec-gold-light); color: var(--exec-black); }
.nav-icon-btn { color: var(--exec-warm-gray); }
.nav-logo-text strong { color: var(--exec-white); }
.nav-logo-text small { color: var(--exec-cool-gray); }
.mega-menu { background: var(--exec-charcoal); border-top: 2px solid var(--exec-gold); border-bottom: 1px solid var(--exec-dark-border); }
.mega-col-title { color: var(--exec-gold); }
.mega-item-name { color: var(--exec-white); }
.mega-item-desc { color: var(--exec-cool-gray); }
.mega-feature.green-bg { background: linear-gradient(135deg,var(--exec-green),var(--exec-green-dark)); }
.mega-feature.dark-bg { background: var(--exec-charcoal-2); }
.mega-feature-text { color: rgba(250,250,250,0.75); }
.nav-hamburger span { background: var(--exec-warm-gray); }
.mobile-nav { background: var(--exec-charcoal); }
.mobile-nav-link { color: var(--exec-white); border-bottom-color: var(--exec-dark-border); }
.mobile-nav-sub a { color: var(--exec-warm-gray); border-bottom-color: var(--exec-dark-border); }
.mobile-nav-book { background: var(--exec-gold); color: var(--exec-black); }

/* ── BUTTON SYSTEM v4 ── */
.btn-gold, .btn-exec {
  background: var(--exec-gold); color: var(--exec-black);
  padding: 14px 32px; font-family: 'Outfit',sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; display: inline-block;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-gold:hover, .btn-exec:hover {
  background: var(--exec-gold-light); color: var(--exec-black);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.25);
}
.btn-outline, .btn-exec-outline, .btn-outline-gold {
  background: transparent; border: 1px solid rgba(201,162,39,0.5);
  color: var(--exec-gold); padding: 14px 32px;
  font-family: 'Outfit',sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-block; cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover, .btn-exec-outline:hover, .btn-outline-gold:hover {
  background: rgba(201,162,39,0.06); border-color: var(--exec-gold);
  color: var(--exec-gold); transform: translateY(-2px);
}
.btn-green { background: var(--exec-green); color: var(--exec-white); border: none; padding: 14px 32px; font-family:'Outfit',sans-serif; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; display:inline-block; cursor:pointer; transition:all 0.3s; }
.btn-green:hover { background: var(--exec-gold); color: var(--exec-black); }
.btn-dark { background: var(--exec-charcoal-2); border: 1px solid var(--exec-dark-border); color: var(--exec-white); padding: 14px 32px; font-family:'Outfit',sans-serif; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; display:inline-block; cursor:pointer; transition:all 0.3s; }
.btn-dark:hover { background: var(--exec-charcoal); border-color: rgba(201,162,39,0.3); }

/* ── TYPOGRAPHY OVERRIDES ── */
.section-eyebrow { color: var(--exec-gold) !important; }
.section-headline, .section-headline.white { color: var(--exec-white) !important; }
.section-sub, .section-sub.white { color: var(--exec-warm-gray) !important; }
.gold-divider { background: var(--exec-gold); }

/* ── HERO v4 ── */
.hero-overlay {
  background: linear-gradient(180deg,rgba(10,10,10,0.15) 0%,rgba(10,10,10,0.42) 40%,rgba(10,10,10,0.84) 75%,rgba(10,10,10,0.97) 100%) !important;
}
#hero-particles { position:absolute; inset:0; z-index:2; pointer-events:none; width:100%; height:100%; }
.hero-grid-overlay {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background-image: linear-gradient(rgba(201,162,39,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,39,0.025) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position:relative; z-index:4; }

/* Gold shimmer */
@keyframes shimmer { 0%{background-position:0% center;} 100%{background-position:200% center;} }
.gold-shimmer, .shimmer-text {
  background: linear-gradient(90deg,var(--exec-gold) 0%,#E8C97A 30%,#F5D98A 50%,#E8C97A 70%,var(--exec-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Float cards */
#hero-float-cards {
  position:absolute; right:6%; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; gap:16px; z-index:10;
}
.float-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 12px; padding: 20px 24px;
  text-align: center; min-width: 140px;
  animation: floatAnim 4s ease-in-out infinite;
  transition: all 0.3s;
}
.float-card:nth-child(2) { animation-delay: 0.5s; }
.float-card:nth-child(3) { animation-delay: 1s; }
.float-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 0 30px rgba(201,162,39,0.08); }
.float-offset { animation: floatAnimOffset 4s ease-in-out infinite 0.5s !important; }
.float-num { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:600; color:var(--exec-gold); line-height:1; margin-bottom:6px; display:block; }
.float-label { font-family:'Outfit',sans-serif; font-size:11px; color:rgba(250,250,250,0.5); letter-spacing:0.08em; text-transform:uppercase; }
@keyframes floatAnim { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@keyframes floatAnimOffset { 0%,100%{transform:translateX(-20px) translateY(0);} 50%{transform:translateX(-20px) translateY(-8px);} }
@media (max-width:1100px) { #hero-float-cards { display:none !important; } }

/* Scroll indicator */
.scroll-indicator {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:10;
}
.scroll-indicator span { font-family:'Outfit',sans-serif; font-size:10px; color:rgba(250,250,250,0.3); letter-spacing:0.18em; text-transform:uppercase; }
.scroll-line { width:1px; height:40px; background:linear-gradient(to bottom,rgba(201,162,39,0.6),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1);} 50%{opacity:0.3;transform:scaleY(0.5);} }
.hero-scroll { display:none; }

/* ── EXECUTIVE TRUST SECTION ── */
.exec-trust { background:var(--exec-black); padding:100px 8%; border-top:1px solid var(--exec-dark-border); }
.trust-header { text-align:center; max-width:760px; margin:0 auto 60px; }
.trust-header h2 { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; color:var(--exec-white); margin-bottom:20px; line-height:1.2; }
.trust-header p { font-family:'Outfit',sans-serif; font-size:16px; color:var(--exec-warm-gray); line-height:1.75; max-width:680px; margin:0 auto; }
.trust-divider { height:1px; background:linear-gradient(90deg,transparent,var(--exec-dark-border),transparent); margin:48px 0; }
.trust-marquee-wrap { overflow:hidden; position:relative; padding:12px 0; }
.trust-marquee-wrap::before,.trust-marquee-wrap::after { content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; }
.trust-marquee-wrap::before { left:0; background:linear-gradient(to right,var(--exec-black),transparent); }
.trust-marquee-wrap::after  { right:0; background:linear-gradient(to left,var(--exec-black),transparent); }
.trust-marquee { display:flex; gap:16px; width:max-content; animation:trustMarquee 30s linear infinite; }
.trust-marquee:hover { animation-play-state:paused; }
@keyframes trustMarquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.trust-badge { border:1px solid var(--exec-dark-border); padding:10px 24px; font-family:'Outfit',sans-serif; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--exec-cool-gray); background:var(--exec-charcoal); white-space:nowrap; transition:all 0.3s; cursor:default; flex-shrink:0; }
.trust-badge:hover { border-color:var(--exec-gold); color:var(--exec-gold); }

/* ── STATISTICS SECTION ── */
.exec-stats { background:var(--exec-charcoal); padding:100px 8%; }
.exec-stats .stats-header { text-align:center; margin-bottom:60px; }
.exec-stats .stats-header h2 { font-family:'Cormorant Garamond',serif; font-size:44px; font-weight:300; color:var(--exec-white); margin-top:16px; line-height:1.1; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:var(--exec-dark-border); border:1px solid var(--exec-dark-border); }
.stat-card { background:var(--exec-charcoal-2); padding:50px 40px; text-align:center; position:relative; overflow:hidden; transition:all 0.4s ease; border-right:1px solid var(--exec-dark-border); }
.stat-card:last-child { border-right:none; }
.stat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--exec-gold),transparent); opacity:0; transition:opacity 0.4s; }
.stat-card:hover { transform:translateY(-6px); background:var(--exec-charcoal); box-shadow:0 24px 60px rgba(0,0,0,0.5); z-index:1; }
.stat-card:hover::before { opacity:1; }
.stat-number { font-family:'Cormorant Garamond',serif; font-size:64px; font-weight:300; color:var(--exec-white); line-height:1; display:block; }
.stat-label { font-family:'Outfit',sans-serif; font-size:11px; color:var(--exec-cool-gray); letter-spacing:0.2em; text-transform:uppercase; margin-top:12px; display:block; }
@media (max-width:768px) { .stats-grid{grid-template-columns:1fr 1fr;} .stat-card{border-bottom:1px solid var(--exec-dark-border);} }
@media (max-width:480px) { .stats-grid{grid-template-columns:1fr;} .stat-card{padding:36px 24px;} .stat-number{font-size:48px;} }

/* ── SERVICES PREVIEW (HOME) ── */
.services-preview { background: var(--exec-black); padding: 100px 8%; }
.services-preview .section-headline { color: var(--exec-white) !important; }
.svc-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--exec-dark-border); }
.svc-card { background:var(--exec-charcoal); border:none; border-right:1px solid var(--exec-dark-border); border-top:2px solid var(--exec-gold); padding:40px 32px; transition:all 0.3s; box-shadow:none; }
.svc-card:last-child { border-right:none; }
.svc-card h3 { color:var(--exec-white) !important; font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; margin-bottom:14px; margin-top:0; }
.svc-card p { color:var(--exec-warm-gray) !important; font-size:14px; line-height:1.7; margin:0; }
.svc-card:hover { background:var(--exec-charcoal-2); border-top-color:var(--exec-gold-light); transform:none; box-shadow:none; }
.svc-icon { color:var(--exec-gold); border-color:rgba(201,162,39,0.2); }
.svc-card:hover .svc-icon { background:rgba(201,162,39,0.06); border-color:rgba(201,162,39,0.4); }
.svc-link { color:var(--exec-gold); border-bottom-color:rgba(201,162,39,0.3); margin-top:20px; }
.svc-link:hover { border-color:var(--exec-gold); }
@media (max-width:900px) { .svc-cards{grid-template-columns:1fr 1fr;} .svc-card{border-bottom:1px solid var(--exec-dark-border);} }
@media (max-width:480px) { .svc-cards{grid-template-columns:1fr;} }

/* ── HOME CTA SECTION ── */
.exec-cta-section { padding:120px 8%; background:linear-gradient(135deg,rgba(27,58,45,0.3) 0%,var(--exec-black) 60%,rgba(27,58,45,0.15) 100%); text-align:center; position:relative; overflow:hidden; }
.exec-cta-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(201,162,39,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,39,0.02) 1px,transparent 1px); background-size:60px 60px; pointer-events:none; }
.exec-cta-section .cta-eyebrow { color:var(--exec-gold); font-size:11px; letter-spacing:0.3em; text-transform:uppercase; font-family:'Outfit',sans-serif; margin-bottom:24px; font-weight:600; display:block; }
.exec-cta-section h2 { font-family:'Cormorant Garamond',serif; font-size:54px; font-weight:300; color:var(--exec-white); line-height:1.1; margin-bottom:24px; }
.exec-cta-section p { font-family:'Outfit',sans-serif; font-size:16px; color:var(--exec-warm-gray); max-width:600px; margin:0 auto 48px; line-height:1.75; }
.exec-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
@media (max-width:600px) { .exec-cta-section h2{font-size:36px;} .exec-cta-btns{flex-direction:column;align-items:center;} }

/* ── CTA BLOCK (existing pages) ── */
.cta-block-content h2 { color:var(--exec-white); }
.cta-block-content p { color:var(--exec-warm-gray); }
.cta-note { color:var(--exec-cool-gray) !important; }
.cta-label { color:var(--exec-gold) !important; }

/* ── SERVICES PAGE ── */
.services-page-section { background:var(--exec-black); }
.services-page-hero { padding:160px 8% 80px; background:var(--exec-black); border-bottom:1px solid var(--exec-dark-border); }
.services-page-hero .section-eyebrow { color:var(--exec-gold); }
.services-page-hero h1 { color:var(--exec-white); }
.services-grid-v4 { display:grid; grid-template-columns:repeat(2,1fr); gap:0; background:var(--exec-dark-border); }
.service-item {
  background:var(--exec-charcoal); padding:48px 40px;
  transition:all 0.4s; position:relative; overflow:hidden;
  border-bottom:1px solid var(--exec-dark-border); border-right:1px solid var(--exec-dark-border);
}
.service-item:nth-child(even) { border-right:0; }
.service-item::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--exec-gold),transparent); opacity:0; transition:opacity 0.4s; }
.service-item:hover { background:var(--exec-charcoal-2); }
.service-item:hover::before { opacity:1; }
.service-number { color:var(--exec-gold); font-family:'Outfit',sans-serif; font-size:11px; letter-spacing:0.3em; text-transform:uppercase; margin-bottom:20px; display:block; }
.service-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; color:var(--exec-white); margin-bottom:16px; line-height:1.2; }
.service-overview { font-family:'Outfit',sans-serif; font-size:15px; color:var(--exec-warm-gray); line-height:1.8; margin-bottom:24px; }
.service-deliverables { list-style:none; margin-bottom:24px; padding:0; }
.service-deliverables li { font-family:'Outfit',sans-serif; font-size:13px; color:var(--exec-warm-gray); padding:5px 0 5px 20px; position:relative; border-bottom:1px solid rgba(255,255,255,0.03); }
.service-deliverables li::before { content:'--'; color:var(--exec-gold); position:absolute; left:0; }
.service-timeline { display:inline-block; border:1px solid var(--exec-dark-border); padding:6px 14px; font-family:'Outfit',sans-serif; font-size:11px; color:var(--exec-cool-gray); letter-spacing:0.1em; margin-bottom:20px; }
.service-outcome { border-left:2px solid var(--exec-gold); padding-left:16px; font-family:'Outfit',sans-serif; font-size:14px; color:var(--exec-warm-gray); font-style:italic; line-height:1.65; }
@media (max-width:900px) { .services-grid-v4{grid-template-columns:1fr;} .service-item{border-right:0;padding:36px 28px;} }

/* ── PROCESS PAGE ── */
.process-hero { background:var(--exec-black); padding:160px 8% 80px; border-bottom:1px solid var(--exec-dark-border); }
.process-step { min-height:500px; position:relative; overflow:hidden; display:flex; align-items:center; }
.process-step-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.process-step-overlay { position:absolute; inset:0; background:rgba(10,10,10,0.84); }
.process-step-content { position:relative; z-index:2; width:100%; padding:80px 8%; display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:center; max-width:1400px; margin:0 auto; }
.process-step:nth-child(even) .process-step-content { direction:rtl; }
.process-step:nth-child(even) .process-step-content > * { direction:ltr; }
.process-step-num { font-family:'Cormorant Garamond',serif; font-size:120px; font-weight:300; color:rgba(201,162,39,0.12); line-height:1; margin-bottom:-20px; display:block; }
.process-step-label { color:var(--exec-gold); font-family:'Outfit',sans-serif; font-size:11px; letter-spacing:0.28em; text-transform:uppercase; margin-bottom:16px; display:block; }
.process-step-title { font-family:'Cormorant Garamond',serif; font-size:42px; font-weight:300; color:var(--exec-white); line-height:1.15; margin-bottom:24px; }
.process-step-desc { font-family:'Outfit',sans-serif; font-size:15px; color:var(--exec-warm-gray); line-height:1.85; margin-bottom:28px; }
.process-deliverables { list-style:none; padding:0; }
.process-deliverables li { font-family:'Outfit',sans-serif; font-size:13px; color:var(--exec-warm-gray); padding:6px 0 6px 24px; position:relative; border-bottom:1px solid rgba(255,255,255,0.04); }
.process-deliverables li::before { content:'v'; color:var(--exec-gold); position:absolute; left:0; }
@media (max-width:900px) { .process-step-content{grid-template-columns:1fr;direction:ltr !important;padding:50px 6%;} .process-step:nth-child(even) .process-step-content{direction:ltr !important;} .process-step-num{font-size:80px;} .process-step-title{font-size:32px;} }

/* ── SUCCESS STORIES ── */
.success-stories { background:var(--exec-black); padding:100px 8%; }
.stories-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; background:var(--exec-dark-border); margin-top:60px; border:1px solid var(--exec-dark-border); }
.story-card { background:var(--exec-charcoal); padding:48px 40px; transition:all 0.4s; border-right:1px solid var(--exec-dark-border); }
.story-card:last-child { border-right:0; }
.story-card:hover { background:var(--exec-charcoal-2); transform:translateY(-4px); box-shadow:0 24px 80px rgba(0,0,0,0.5); }
.story-badge { display:inline-block; background:rgba(201,162,39,0.06); border:1px solid rgba(201,162,39,0.2); color:var(--exec-gold); font-size:9px; letter-spacing:0.18em; text-transform:uppercase; font-family:'Outfit',sans-serif; padding:5px 12px; margin-bottom:28px; }
.story-client { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.story-photo { width:64px; height:64px; border-radius:50%; object-fit:cover; object-position:center top; border:2px solid rgba(201,162,39,0.3); flex-shrink:0; }
.story-name { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--exec-white); margin-bottom:3px; }
.story-position { font-family:'Outfit',sans-serif; font-size:11px; color:var(--exec-cool-gray); letter-spacing:0.06em; }
.story-industry { font-family:'Outfit',sans-serif; font-size:10px; color:rgba(201,162,39,0.6); letter-spacing:0.12em; text-transform:uppercase; margin-top:3px; }
.story-quote { font-family:'Cormorant Garamond',serif; font-size:19px; font-style:italic; color:var(--exec-warm-gray); line-height:1.7; margin-bottom:28px; }
.story-outcome { border-left:2px solid var(--exec-gold); padding-left:16px; font-family:'Outfit',sans-serif; font-size:13px; color:var(--exec-gold); line-height:1.6; }
@media (max-width:900px) { .stories-grid{grid-template-columns:1fr;} .story-card{border-right:0;border-bottom:1px solid var(--exec-dark-border);} .story-card:last-child{border-bottom:0;} }
@media (max-width:600px) { .story-card{padding:36px 28px;} .story-quote{font-size:17px;} }

/* ── SPECIALIST CARDS v4 ── */
#specialists { background:var(--exec-black) !important; }
.specialist-grid-v2 { max-width:1200px; margin:0 auto; }
.spec-card-v2 { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); box-shadow:none; transition:all 0.3s; }
.spec-card-v2:hover { border-color:rgba(201,162,39,0.2); box-shadow:0 20px 60px rgba(0,0,0,0.4); transform:translateY(-4px); }
.spec-info { background:var(--exec-charcoal) !important; padding:24px 20px 28px; }
.spec-name-v2 { color:var(--exec-white) !important; -webkit-text-fill-color:var(--exec-white) !important; background:none !important; }
.spec-verified { background:rgba(27,58,45,0.12); border:1px solid rgba(27,58,45,0.25); color:#5aad7a; }
.spec-title-v2 { color:var(--exec-gold) !important; }
.spec-location-row, .spec-email-row { color:var(--exec-cool-gray); }
.spec-email-row a { color:var(--exec-gold); }
.spec-bio-v2 { color:var(--exec-warm-gray); }
.spec-specialty-v2 { color:var(--exec-cool-gray); }
.spec-divider { background:var(--exec-dark-border); }
.spec-stars-v2 { color:var(--exec-gold); }
.spec-rating-v2 { color:var(--exec-cool-gray); }
.spec-badge-v2 { background:var(--exec-gold); color:var(--exec-black); }
.spec-office-tag { background:rgba(10,10,10,0.8); color:rgba(250,250,250,0.7); }
.spec-photo-fallback { background:linear-gradient(135deg,var(--exec-charcoal-2),var(--exec-black)); color:var(--exec-gold); }

/* ── LOCATION CARDS v4 ── */
.location-card {
  background:linear-gradient(135deg,var(--exec-green),var(--exec-green-dark)) !important;
  border:1px solid rgba(201,162,39,0.2) !important;
  height:200px;
}
.location-grid-bg { background-image:linear-gradient(rgba(201,162,39,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,39,0.04) 1px,transparent 1px) !important; background-size:30px 30px !important; }
.location-label { background:rgba(10,10,10,0.85) !important; padding:12px 18px !important; }
.location-office { color:var(--exec-gold) !important; font-size:9px !important; letter-spacing:0.22em !important; }
.location-city { color:var(--exec-white) !important; font-size:14px !important; font-weight:500 !important; }
.pin-dot { background:var(--exec-gold) !important; }

/* ── FAQ / EXECUTIVE KNOWLEDGE CENTER ── */
.exec-faq { background:var(--exec-charcoal); padding:100px 8%; }
.exec-faq .faq-header { text-align:center; margin-bottom:60px; }
.exec-faq .faq-header h2 { font-family:'Cormorant Garamond',serif; font-size:44px; font-weight:300; color:var(--exec-white); margin-top:16px; }
.faq-list { max-width:860px; margin:0 auto; border:1px solid var(--exec-dark-border); }
.faq-item { border-bottom:1px solid var(--exec-dark-border); }
.faq-item:last-child { border-bottom:none; }
.faq-question { width:100%; background:none; border:none; color:var(--exec-white); font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:400; padding:24px 32px; text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:24px; transition:background 0.3s; line-height:1.3; }
.faq-question:hover { background:var(--exec-charcoal-2); }
.faq-icon { color:var(--exec-gold); font-size:20px; flex-shrink:0; transition:transform 0.3s; font-style:normal; }
.faq-item.open .faq-question { background:var(--exec-charcoal-2); border-bottom:1px solid var(--exec-dark-border); }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height:400px; }
.faq-answer-inner { padding:4px 32px 28px; font-family:'Outfit',sans-serif; font-size:15px; color:var(--exec-warm-gray); line-height:1.8; }

/* ── EXIT POPUP v4 ── */
#exit-popup .exit-box { background:var(--exec-charcoal) !important; border:1px solid var(--exec-dark-border) !important; border-top:2px solid var(--exec-gold) !important; border-radius:0 !important; }
#exit-popup .exit-eyebrow { color:var(--exec-gold) !important; }
#exit-popup h2 { color:var(--exec-white) !important; font-family:'Cormorant Garamond',serif !important; font-size:30px !important; font-weight:300 !important; }
#exit-popup p { color:var(--exec-warm-gray) !important; font-size:15px !important; }
#exit-popup .exit-close { color:rgba(250,250,250,0.4) !important; }
#exit-popup .exit-dismiss { color:var(--exec-cool-gray) !important; font-size:12px !important; background:transparent !important; border:none !important; cursor:pointer; }
#exit-popup .exit-dismiss:hover { color:var(--exec-white) !important; }

/* ── FOOTER v4 ── */
footer { background:var(--exec-black); border-top:1px solid var(--exec-dark-border); }
.footer-brand-name { color:var(--exec-white); }
.footer-tagline { color:var(--exec-cool-gray); }
.footer-col-title { color:var(--exec-gold); letter-spacing:0.15em; font-size:10px; }
.footer-contact-label { color:var(--exec-cool-gray); }
.footer-contact-val { color:var(--exec-warm-gray); }
.footer-contact-val a { color:var(--exec-warm-gray); }
.footer-contact-val a:hover { color:var(--exec-gold); }
.footer-links a { color:var(--exec-warm-gray); }
.footer-links a:hover { color:var(--exec-gold); }
.footer-copy, .footer-motto { color:rgba(250,250,250,0.3); }
.footer-maps-title { color:var(--exec-warm-gray); }
.footer-maps-section { background:var(--exec-charcoal); border-top:1px solid var(--exec-dark-border); }

/* ── MISC UI ── */
#progress-bar { background:var(--exec-gold); }
#sticky-cta-bar { background:var(--exec-charcoal); border-top:1px solid var(--exec-dark-border); }
#sticky-cta-bar .cta-text { color:var(--exec-warm-gray); }
#ecg-chatbot-toggle { background:var(--exec-gold); }
#ecg-chatbot-window { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); }
.chatbot-header { background:var(--exec-charcoal-2); border-bottom:1px solid var(--exec-dark-border); }
.chatbot-header-title { color:var(--exec-white); }
.chatbot-header-sub { color:var(--exec-cool-gray); }
.chat-msg.bot { background:var(--exec-charcoal-2); color:var(--exec-warm-gray); }
.chat-msg.user { background:var(--exec-gold-muted); color:var(--exec-gold); }
.chatbot-input { background:var(--exec-black); border-color:var(--exec-dark-border); color:var(--exec-white); }
.chatbot-send { background:var(--exec-gold); color:var(--exec-black); }
.qr-btn { background:var(--exec-charcoal-2); border-color:var(--exec-dark-border); color:var(--exec-warm-gray); }
.qr-btn:hover { border-color:var(--exec-gold); color:var(--exec-gold); }
#back-to-top { background:var(--exec-charcoal); color:var(--exec-warm-gray); border:1px solid var(--exec-dark-border); }
#back-to-top:hover { border-color:var(--exec-gold); color:var(--exec-gold); }
.modal-box { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); }
.modal-title { color:var(--exec-white); }
.modal-sub { color:var(--exec-warm-gray); }
.modal-close { color:rgba(250,250,250,0.4); background:none; border:none; }
.rev-field, .form-input, .form-textarea, .form-select { background:var(--exec-black); border:1px solid var(--exec-dark-border); color:var(--exec-white); }
.rev-field:focus, .form-input:focus, .form-textarea:focus { border-color:rgba(201,162,39,0.4); outline:none; }
.rev-field-label, .form-label { color:var(--exec-cool-gray); }
.form-submit { background:var(--exec-gold); color:var(--exec-black); font-weight:700; }
.form-submit:hover { background:var(--exec-gold-light); }
.cat-star { color:rgba(201,162,39,0.25); cursor:pointer; }
.cat-star.active, .cat-star.hover { color:var(--exec-gold); }
.rev-star { color:rgba(201,162,39,0.25); }
.rev-star.active { color:var(--exec-gold); }

/* ── SCROLL REVEAL v4 ── */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.75s cubic-bezier(0.16,1,0.3,1),transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-30px); transition:opacity 0.75s cubic-bezier(0.16,1,0.3,1),transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-l.visible { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(30px); transition:opacity 0.75s cubic-bezier(0.16,1,0.3,1),transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-r.visible { opacity:1; transform:translateX(0); }

/* ── ABOUT PAGE ── */
.leadership-section { background:var(--exec-charcoal) !important; }
.leadership-content h2 { color:var(--exec-white); }
.leadership-content p { color:var(--exec-warm-gray); }
.values-grid .value-item { background:var(--exec-charcoal-2); border:1px solid var(--exec-dark-border); }
.value-item h3 { color:var(--exec-white); }
.value-item p { color:var(--exec-warm-gray); }
.mission-cards .mission-card { background:var(--exec-charcoal-2); border:1px solid var(--exec-dark-border); }

/* ── CONTACT PAGE ── */
.contact-hero { background:var(--exec-black); }
.contact-layout { background:var(--exec-charcoal); }
.contact-left { background:var(--exec-charcoal-2); }
.contact-info-label { color:var(--exec-gold); }
.contact-info-val { color:var(--exec-warm-gray); }

/* ── SPECIALIST SECTION NAV ── */
.section-nav { background:rgba(10,10,10,0.97) !important; border-bottom:1px solid var(--exec-dark-border) !important; }
.section-nav a { color:var(--exec-cool-gray) !important; }
.section-nav a:hover, .section-nav a.active { color:var(--exec-gold) !important; border-bottom-color:var(--exec-gold) !important; }
.specialist-hero { background:var(--exec-black) !important; }
.specialist-hero .section-eyebrow { color:var(--exec-gold); }
.specialist-hero h1 { color:var(--exec-white) !important; }
.specialist-hero p { color:var(--exec-warm-gray); }
.recent-reviews-section { background:var(--exec-charcoal) !important; }
.recent-review-card { background:var(--exec-charcoal-2) !important; border:1px solid var(--exec-dark-border) !important; }
.rrc-name { color:var(--exec-white) !important; }
.rrc-title { color:var(--exec-cool-gray) !important; }
.rrc-quote { color:var(--exec-warm-gray) !important; }
.rrc-service { color:var(--exec-cool-gray) !important; font-size:11px !important; }
.rrc-stars { color:var(--exec-gold) !important; }
.rrc-avatar { background:rgba(201,162,39,0.1) !important; color:var(--exec-gold) !important; border:1px solid rgba(201,162,39,0.2) !important; }
#rate-specialist { background:var(--exec-black) !important; }
#rate-specialist .section-headline { color:var(--exec-white) !important; }
#how-we-rate { background:linear-gradient(135deg,var(--exec-green),var(--exec-green-dark)) !important; }

/* ── LIBRARY PAGE ── */
.insight-card { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); }
.insight-card h3 { color:var(--exec-white); }
.insight-card p { color:var(--exec-warm-gray); }
.guide-card { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); }
.book-card { background:var(--exec-charcoal); border:1px solid var(--exec-dark-border); }
.book-title { color:var(--exec-white); }
.book-author { color:var(--exec-cool-gray); }


/* ================================================================
   CREATIVE DIRECTOR PASS — Typography / Spacing / Color Fixes
================================================================ */

/* Hero H1 sizing */
.hero h1 { font-size: clamp(48px, 6vw, 84px) !important; line-height: 1.05 !important; font-weight: 300 !important; }

/* Section headlines across dark sections */
.exec-cta-section h2 { font-size: clamp(36px, 4.5vw, 54px) !important; font-weight: 300 !important; line-height: 1.1 !important; }
.services-preview .section-headline { font-size: clamp(30px, 3.5vw, 44px) !important; line-height: 1.15 !important; }
.exec-trust .trust-header h2 { font-size: clamp(28px, 3vw, 40px) !important; }
.exec-stats .stats-header h2 { font-size: clamp(32px, 3.8vw, 48px) !important; }

/* Section eyebrow — uniform sizing */
.section-eyebrow { font-size: 11px !important; letter-spacing: 0.28em !important; font-weight: 600 !important; text-transform: uppercase !important; font-family: 'Outfit',sans-serif !important; }

/* Hero sub paragraph */
.hero-sub { font-size: 17px !important; line-height: 1.8 !important; max-width: 580px !important; }

/* Service preview h2 — slight spacing lift */
.services-preview { padding-bottom: 80px; }
.services-preview > div:first-child { margin-bottom: 56px !important; }

/* Svc card typography */
.svc-card h3 { font-size: 20px !important; line-height: 1.3 !important; margin-bottom: 12px !important; }
.svc-card p { font-size: 14px !important; line-height: 1.75 !important; }

/* Trust section header spacing */
.exec-trust .trust-header { margin-bottom: 48px !important; }
.exec-trust .trust-header p { font-size: 15px !important; line-height: 1.8 !important; }

/* Stat number sizing */
.stat-number { font-size: clamp(48px, 5vw, 64px) !important; }
.stat-label { font-size: 10px !important; letter-spacing: 0.22em !important; }
.stat-card { padding: 48px 32px !important; }

/* CTA section button row */
.exec-cta-section .exec-cta-btns { margin-top: 8px; }

/* Process step typography */
.process-step-title { font-size: clamp(28px, 3.5vw, 42px) !important; }
.process-step-num { font-size: clamp(72px, 8vw, 120px) !important; }
.process-step-desc { font-size: 15px !important; line-height: 1.85 !important; }

/* Service page */
.service-name { font-size: clamp(22px, 2.5vw, 28px) !important; }

/* Story card */
.story-quote { font-size: clamp(16px, 1.8vw, 19px) !important; }
.story-name { font-size: 18px !important; }

/* FAQ typography */
.faq-question { font-size: clamp(16px, 1.8vw, 20px) !important; }
.faq-answer-inner { font-size: 15px !important; line-height: 1.8 !important; }

/* Specialist card */
.spec-name-v2 { font-size: 20px !important; }
.spec-title-v2 { font-size: 11px !important; letter-spacing: 0.12em !important; }
.spec-bio-v2 { font-size: 13px !important; line-height: 1.75 !important; }

/* Footer */
.footer-col-title { font-size: 9px !important; letter-spacing: 0.22em !important; }
.footer-contact-label { font-size: 10px !important; letter-spacing: 0.1em !important; }
.footer-contact-val { font-size: 13px !important; }
.footer-links a { font-size: 13px !important; }

/* ── LOCATION CARD — both naming conventions ── */
.new-location-card, .location-card {
  background: linear-gradient(135deg,var(--exec-green),var(--exec-green-dark)) !important;
  border: 1px solid rgba(201,162,39,0.2) !important;
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.location-grid, .location-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,162,39,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(201,162,39,0.04) 1px,transparent 1px) !important;
  background-size: 30px 30px !important;
}
.location-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
}
.location-info, .location-label {
  position: relative; z-index: 2;
  background: rgba(10,10,10,0.85) !important; padding: 12px 18px !important;
  width: 100%; display: flex; flex-direction: column; gap: 3px;
}
.loc-office, .location-office {
  color: var(--exec-gold) !important; font-size: 9px !important;
  letter-spacing: 0.22em !important; text-transform: uppercase;
  font-family: 'Outfit',sans-serif; font-weight: 600;
}
.loc-city, .location-city {
  color: var(--exec-white) !important; font-size: 14px !important;
  font-weight: 500 !important; font-family: 'Outfit',sans-serif;
}
.pin-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--exec-gold) !important; position: relative; z-index: 1;
}
.pin-pulse {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3); animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 0; }
}
.maps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 20px;
}
@media (max-width:600px) { .maps-grid { grid-template-columns: 1fr; } }

p.section-eyebrow, span.section-eyebrow { font-size: 11px !important; letter-spacing: 0.3em !important; }

/* Fix: eyebrow inside trust-header must override the p-font rule */
.exec-trust .trust-header .section-eyebrow,
.exec-stats .stats-header .section-eyebrow,
.services-preview .section-eyebrow,
.exec-cta-section .section-eyebrow,
.success-stories .section-eyebrow,
.exec-faq .faq-header .section-eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM UPGRADE â€” Color Lift + Service Images + Offices
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Slightly lighter palette for premium depth â”€â”€ */
:root {
  --exec-black:       #111111;
  --exec-charcoal:    #1A1A1A;
  --exec-charcoal-2:  #242424;
  --exec-dark-border: #2E2E2E;
}

/* â”€â”€ Service cards: image on top, content below â”€â”€ */
.svc-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.svc-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(26,26,26,0.75) 100%);
}
.svc-card-body {
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-body .svc-icon { margin-bottom: 20px; margin-top: 0; }
.svc-card-body h3 { margin-bottom: 14px !important; margin-top: 0 !important; }
.svc-card-body p { flex: 1; margin: 0 !important; color: var(--exec-warm-gray) !important; font-size: 14px !important; line-height: 1.75 !important; }
.svc-card-body .svc-link { margin-top: 22px; align-self: flex-start; }

/* â”€â”€ Trust section: gradient fades use updated black â”€â”€ */
.trust-marquee-wrap::before { background: linear-gradient(to right, var(--exec-black), transparent); }
.trust-marquee-wrap::after  { background: linear-gradient(to left,  var(--exec-black), transparent); }

/* â”€â”€ Premium Global Offices Section â”€â”€ */
.exec-offices-section {
  background: var(--exec-black);
  border-top: 1px solid var(--exec-dark-border);
  padding: 0;
  overflow: hidden;
}
.offices-header {
  text-align: center;
  padding: 80px 8% 64px;
  border-bottom: 1px solid var(--exec-dark-border);
}
.offices-header .section-eyebrow { margin-bottom: 16px; display: block; }
.offices-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--exec-white);
  line-height: 1.1;
  margin: 0;
}
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.office-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.office-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.office-panel:hover .office-panel-bg { transform: scale(1.05); }
.office-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.97) 0%,
    rgba(17,17,17,0.72) 40%,
    rgba(17,17,17,0.2) 100%
  );
}
.office-panel:first-child { border-right: 1px solid var(--exec-dark-border); }
.office-panel-content {
  position: relative;
  z-index: 2;
  padding: 52px 52px 60px;
  width: 100%;
}
.office-coords {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--exec-gold);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.office-type {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.45);
  margin-bottom: 14px;
  border-left: 2px solid var(--exec-gold);
  padding-left: 12px;
}
.office-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--exec-white);
  line-height: 0.95;
  margin-bottom: 10px;
  display: block;
}
.office-country {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(250,250,250,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  display: block;
}
.office-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(201,162,39,0.2);
  padding-top: 24px;
  flex-wrap: wrap;
}
.office-tz {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--exec-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(201,162,39,0.25);
}
.office-contact a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(250,250,250,0.45);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s;
}
.office-contact a:hover { color: var(--exec-gold); }
@media (max-width: 800px) {
  .offices-grid { grid-template-columns: 1fr; }
  .office-panel { min-height: 400px; }
  .office-panel:first-child { border-right: none; border-bottom: 1px solid var(--exec-dark-border); }
  .office-panel-content { padding: 40px 32px 52px; }
  .office-city { font-size: clamp(36px, 10vw, 52px); }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTERACTIVE WORLD MAP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ecg-map-section { background: var(--exec-black); padding: 80px 0 0; border-top: 1px solid var(--exec-dark-border); overflow: hidden; }
.map-header { text-align: center; padding: 0 8% 56px; }
.map-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; color: var(--exec-white); line-height: 1.1; margin: 16px 0 0; }
.map-canvas-container { position: relative; width: 100%; background: #111111; border-top: 1px solid var(--exec-dark-border); }
#ecg-world-map { display: block; width: 100%; cursor: crosshair; }
.map-pin-tooltip {
  position: absolute; background: var(--exec-charcoal-2);
  border: 1px solid rgba(201,162,39,0.35); border-top: 2px solid var(--exec-gold);
  padding: 14px 18px; pointer-events: none; display: none; z-index: 20;
  min-width: 190px;
}
.mpt-type { font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--exec-gold); margin-bottom: 8px; }
.mpt-city { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--exec-white); line-height: 1; margin-bottom: 5px; }
.mpt-sub { font-family: 'Outfit', sans-serif; font-size: 11px; color: rgba(250,250,250,0.45); }
.map-office-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  padding: 24px 8%; gap: 40px; border-top: 1px solid var(--exec-dark-border);
}
.map-office-item { display: flex; align-items: center; gap: 14px; }
.moi-pulse {
  width: 8px; height: 8px; background: var(--exec-gold); border-radius: 50%; flex-shrink: 0;
  animation: mapDotPulse 2.2s ease-out infinite;
}
.map-office-item:last-child .moi-pulse { animation-delay: 1.1s; }
@keyframes mapDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(201,162,39,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}
.moi-tag { font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--exec-gold); border: 1px solid rgba(201,162,39,0.2); padding: 3px 10px; }
.moi-city { font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--exec-white); }
.moi-tz { font-family: 'Outfit', sans-serif; font-size: 11px; color: var(--exec-cool-gray); }
.map-office-divider { width: 1px; height: 28px; background: var(--exec-dark-border); }
@media (max-width: 600px) { .map-office-divider { width: 40px; height: 1px; } .map-office-row { flex-direction: column; gap: 16px; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIGITAL SERVICES PAGE â€” DARK THEME OVERRIDES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.website-section { background: var(--exec-black) !important; padding: 100px 8%; border-top: 1px solid var(--exec-dark-border); }
.website-section .section-eyebrow { color: var(--exec-gold) !important; }
.website-section .section-headline { color: var(--exec-white) !important; }
.website-section .section-sub { color: var(--exec-warm-gray) !important; max-width: 720px; margin: 0 auto 60px; text-align: center; font-size: 16px; line-height: 1.8; }
.website-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--exec-dark-border); margin-bottom: 0; }
.website-card { background: var(--exec-charcoal) !important; border-right: 1px solid var(--exec-dark-border); overflow: hidden; transition: all 0.4s; box-shadow: none; }
.website-card:last-child { border-right: none; }
.website-card:hover { background: var(--exec-charcoal-2) !important; }
.website-card-img { height: 210px; overflow: hidden; }
.website-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.website-card:hover .website-card-img img { transform: scale(1.06); }
.website-card-body { padding: 32px !important; background: transparent !important; }
.website-card-body h3 { font-family: 'Cormorant Garamond', serif !important; font-size: 22px !important; font-weight: 400 !important; color: var(--exec-white) !important; margin-bottom: 18px !important; }
.website-card-body ul { list-style: none; padding: 0; margin: 0; }
.website-card-body li { font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--exec-warm-gray) !important; padding: 7px 0; border-bottom: 1px solid rgba(43,43,43,0.6); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.website-card-body li::before { content: 'â—†'; color: var(--exec-gold); font-size: 7px; flex-shrink: 0; margin-top: 4px; }
.website-card-body li:last-child { border-bottom: none; }
@media (max-width: 900px) { .website-cards { grid-template-columns: 1fr; } .website-card { border-right: none; border-bottom: 1px solid var(--exec-dark-border); } }

.linkedin-section { background: var(--exec-charcoal) !important; padding: 100px 8%; border-top: 1px solid var(--exec-dark-border); }
.linkedin-section .section-eyebrow { color: var(--exec-gold) !important; }
.linkedin-section .section-headline { color: var(--exec-white) !important; }
.linkedin-section p { color: var(--exec-warm-gray) !important; }
.linkedin-section .two-col { display: grid !important; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.linkedin-section .svc-includes li { color: var(--exec-warm-gray) !important; }
@media (max-width: 900px) { .linkedin-section .two-col { grid-template-columns: 1fr !important; gap: 48px; } }

.seo-section { background: var(--exec-black) !important; padding: 100px 8%; border-top: 1px solid var(--exec-dark-border); }
.seo-section .section-eyebrow { color: var(--exec-gold) !important; }
.seo-section .section-headline { color: var(--exec-white) !important; }
.seo-section .section-sub { color: var(--exec-warm-gray) !important; }
.seo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--exec-dark-border); margin-top: 60px; }
.seo-card { background: var(--exec-charcoal) !important; padding: 48px 40px; border-right: 1px solid var(--exec-dark-border); transition: all 0.3s; }
.seo-card:last-child { border-right: none; }
.seo-card:hover { background: var(--exec-charcoal-2) !important; }
.seo-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--exec-white) !important; margin-bottom: 16px; }
.seo-card p { font-size: 14px; color: var(--exec-warm-gray) !important; line-height: 1.75; margin-bottom: 16px; }
.seo-card .svc-includes li { color: var(--exec-warm-gray) !important; }
@media (max-width: 900px) { .seo-cards { grid-template-columns: 1fr; } .seo-card { border-right: none; border-bottom: 1px solid var(--exec-dark-border); } }

.social-section { background: var(--exec-charcoal) !important; padding: 100px 8%; border-top: 1px solid var(--exec-dark-border); }
.social-section .section-eyebrow { color: var(--exec-gold) !important; }
.social-section .section-headline { color: var(--exec-white) !important; }
.social-section .section-sub { color: var(--exec-warm-gray) !important; }
.platform-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--exec-dark-border); margin-top: 60px; }
.platform-card { background: var(--exec-charcoal-2) !important; color: inherit; padding: 48px 40px; border-right: 1px solid var(--exec-dark-border); border-radius: 0 !important; transition: all 0.4s; position: relative; overflow: hidden; }
.platform-card:last-child { border-right: none; }
.platform-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--exec-gold); opacity: 0; transition: opacity 0.3s; }
.platform-card:hover { background: var(--exec-charcoal) !important; transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.platform-card:hover::before { opacity: 1; }
.platform-icon { font-size: 28px; display: block; margin-bottom: 20px; }
.platform-card h3 { font-family: 'Cormorant Garamond', serif !important; font-size: 24px !important; font-weight: 400 !important; color: var(--exec-white) !important; margin-bottom: 14px; }
.platform-card p { font-size: 14px !important; color: var(--exec-warm-gray) !important; line-height: 1.75; }
.platform-card .svc-includes { margin-top: 16px; }
.platform-card .svc-includes li { color: var(--exec-warm-gray) !important; }
@media (max-width: 900px) { .platform-cards { grid-template-columns: 1fr; } .platform-card { border-right: none; border-bottom: 1px solid var(--exec-dark-border); } }

/* Gold CTA dark override */
.gold-cta { background: linear-gradient(135deg, rgba(27,58,45,0.3), var(--exec-black), rgba(27,58,45,0.15)) !important; padding: 100px 8% !important; text-align: center; border-top: 1px solid var(--exec-dark-border); color: inherit !important; }
.gold-cta h2 { font-family: 'Cormorant Garamond', serif !important; font-size: clamp(32px, 4vw, 52px) !important; font-weight: 300 !important; color: var(--exec-white) !important; margin-bottom: 20px; line-height: 1.1; }
.gold-cta p { font-size: 16px !important; color: var(--exec-warm-gray) !important; max-width: 600px; margin: 0 auto 40px !important; line-height: 1.8; }
.gold-cta .btn-dark { background: var(--exec-gold) !important; color: var(--exec-black) !important; border: none !important; }
.gold-cta .btn-outline-gold { border-color: rgba(201,162,39,0.5) !important; color: var(--exec-gold) !important; }
.gold-cta .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WORK SAMPLES SECTION (services.html #samples)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.work-samples-section { background: var(--exec-charcoal); padding: 100px 8%; border-top: 1px solid var(--exec-dark-border); }
.work-samples-section .section-eyebrow { color: var(--exec-gold); }
.work-samples-section .section-headline { color: var(--exec-white) !important; }
.work-samples-section > .samples-header p { color: var(--exec-warm-gray); max-width: 640px; margin: 16px auto 0; font-size: 16px; line-height: 1.8; text-align: center; }
.samples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.sample-item { }
.sample-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--exec-dark-border); }
.sample-tag { font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--exec-gold); border: 1px solid rgba(201,162,39,0.2); padding: 5px 14px; }
.sample-desc { font-family: 'Outfit', sans-serif; font-size: 11px; color: var(--exec-cool-gray); }
.sample-preview { border: 1px solid var(--exec-dark-border); overflow: hidden; }

/* LinkedIn preview (intentionally light â€” shows the actual platform) */
.linkedin-preview { background: #fff; }
.lp-banner { background: #0a66c2; height: 72px; }
.lp-body { padding: 44px 20px 20px; position: relative; }
.lp-avatar { position: absolute; top: -30px; left: 18px; width: 60px; height: 60px; border-radius: 50%; background: #1b3a2d; border: 3px solid white; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: #C9A227; font-family: Georgia, serif; }
.lp-name { font-size: 16px; font-weight: 700; color: #000; font-family: Arial, sans-serif; margin-bottom: 3px; }
.lp-headline { font-size: 12px; color: #555; font-family: Arial, sans-serif; line-height: 1.5; margin-bottom: 5px; }
.lp-location { font-size: 11px; color: #0a66c2; font-family: Arial, sans-serif; margin-bottom: 12px; }
.lp-actions { display: flex; gap: 8px; margin-bottom: 14px; }
.lp-btn-primary { background: #0a66c2; color: white; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-family: Arial, sans-serif; font-weight: 600; display: inline-block; }
.lp-btn-secondary { border: 1.5px solid #0a66c2; color: #0a66c2; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-family: Arial, sans-serif; font-weight: 600; display: inline-block; }
.lp-post-label { font-size: 12px; font-weight: 700; color: #000; font-family: Arial, sans-serif; margin-bottom: 8px; border-top: 1px solid #eee; padding-top: 12px; }
.lp-post { background: #f3f6f8; padding: 10px 12px; border-radius: 4px; margin-bottom: 8px; }
.lp-post:last-child { margin-bottom: 0; }
.lp-post-text { font-size: 12px; color: #444; font-family: Arial, sans-serif; line-height: 1.5; margin-bottom: 5px; }
.lp-post-stats { font-size: 10px; color: #0a66c2; font-family: Arial, sans-serif; }

/* Executive website preview */
.website-preview { background: #0d0d0d; }
.wp-topbar { background: #1a1a1a; padding: 8px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2b2b2b; }
.wp-dots { display: flex; gap: 5px; }
.wp-dots span { width: 9px; height: 9px; border-radius: 50%; }
.wp-dots span:nth-child(1) { background: #ff5f57; }
.wp-dots span:nth-child(2) { background: #febc2e; }
.wp-dots span:nth-child(3) { background: #28c840; }
.wp-url { font-size: 10px; color: #666; font-family: monospace; }
.wp-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 220px; }
.wp-left { background: #1b3a2d; padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.wp-divider-line { width: 32px; height: 1px; background: #C9A227; }
.wp-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: white; line-height: 1.2; }
.wp-btns { display: flex; gap: 8px; margin-top: 6px; }
.wp-btn-gold { background: #C9A227; color: #000; padding: 8px 16px; font-size: 10px; font-weight: 700; font-family: 'Outfit', sans-serif; }
.wp-btn-outline { border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 16px; font-size: 10px; font-family: 'Outfit', sans-serif; }
.wp-right { background: #0d0d0d; padding: 24px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.wp-exec-row { display: flex; align-items: center; gap: 12px; width: 100%; }
.wp-exec-avatar { width: 48px; height: 48px; border-radius: 50%; background: #1b3a2d; border: 2px solid rgba(201,162,39,0.4); flex-shrink: 0; }
.wp-exec-name { font-size: 14px; color: #fafafa; font-weight: 600; font-family: 'Outfit', sans-serif; }
.wp-exec-title { font-size: 10px; color: #C9A227; font-family: 'Outfit', sans-serif; margin-top: 2px; }
.wp-card-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; width: 100%; }
.wp-stat { background: #1a1a1a; border-top: 2px solid #C9A227; padding: 10px; text-align: center; }
.wp-stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #C9A227; line-height: 1; margin-bottom: 3px; }
.wp-stat-lbl { font-size: 8px; color: rgba(250,250,250,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Outfit', sans-serif; }

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



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   V5 UPGRADE â€” Lighter Black + Specialists Panel + Carousel
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1. Lighter black palette â”€â”€ */
:root {
  --exec-black:       #1C1C1C;
  --exec-charcoal:    #242424;
  --exec-charcoal-2:  #2C2C2C;
  --exec-dark-border: #383838;
}

/* â”€â”€ 2. Specialists section â€” dark photo-grid â”€â”€ */
section#specialists {
  background: #1C1C1C !important;
}
section#specialists > div:first-child {
  /* header text fix on dark bg */
}
section#specialists .section-eyebrow { color: var(--exec-gold) !important; }
section#specialists h2, section#specialists p { color: var(--exec-white) !important; }

.specialist-grid-v2 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 4px !important;
  max-width: none !important;
}

/* Photo-card layout */
.spec-card-v2 {
  position: relative !important;
  cursor: pointer !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  aspect-ratio: 3/4 !important;
  background: #242424 !important;
  box-shadow: none !important;
  flex-direction: unset !important;
  display: block !important;
}

.spec-card-v2 .spec-photo-wrap {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
  overflow: hidden !important;
}

.spec-card-v2 .spec-photo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94) !important;
  display: block !important;
}

.spec-card-v2:hover .spec-photo-wrap img {
  transform: scale(1.06) !important;
}

.spec-card-v2 .spec-photo-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.95) 0%,
    rgba(17,17,17,0.55) 45%,
    transparent 100%
  ) !important;
}

/* Info overlay â€” only name + title visible on card */
.spec-card-v2 .spec-info {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 24px 22px !important;
  z-index: 2 !important;
  background: none !important;
  border: none !important;
  padding-top: 0 !important;
}

.spec-card-v2 .spec-name-v2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  color: #FAFAFA !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
  line-height: 1.1 !important;
}

.spec-card-v2 .spec-title-v2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--exec-gold) !important;
  margin: 0 !important;
}

.spec-card-v2 .spec-badge-v2 {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  bottom: auto !important;
  right: auto !important;
  height: auto !important;
  width: auto !important;
  z-index: 3 !important;
  display: inline-block !important;
}

.spec-card-v2 .spec-office-tag {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 3 !important;
  font-size: 9px !important;
}

/* Hide detailed info â€” shown in panel only */
.spec-card-v2 .spec-verified,
.spec-card-v2 .spec-location-row,
.spec-card-v2 .spec-email-row,
.spec-card-v2 .spec-specialty-v2,
.spec-card-v2 .spec-divider,
.spec-card-v2 .spec-bio-v2,
.spec-card-v2 .spec-stars-row { display: none !important; }

/* Click hint */
.spec-card-v2::before {
  content: 'View Profile';
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.75);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 5px 14px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 3;
  white-space: nowrap;
}
.spec-card-v2:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* â”€â”€ 3. Specialist Profile Panel â”€â”€ */
#spec-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
#spec-panel-overlay.open { opacity: 1; pointer-events: all; }

#spec-profile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: #242424;
  border-left: 1px solid #383838;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}
#spec-profile-panel.open { transform: translateX(0); }

.spp-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
}
.spp-close:hover { border-color: #C9A227; color: #C9A227; }

#spp-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  display: block;
}

.spp-body { padding: 32px 36px 64px; }

.spp-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--exec-gold);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 18px;
}

#spp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #FAFAFA;
  line-height: 1.05;
  margin-bottom: 8px;
}

#spp-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
  margin-bottom: 24px;
}

#spp-specialty {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--exec-gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #383838;
}

#spp-bio {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.82;
  color: #D6D3D1;
  margin-bottom: 28px;
}

.spp-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.spp-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #383838;
}

.spp-contact-icon {
  width: 18px; height: 18px;
  color: var(--exec-gold);
  flex-shrink: 0;
}

.spp-contact a, .spp-contact span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #D6D3D1;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.spp-contact a:hover { color: var(--exec-gold); }

.spp-book {
  display: block;
  background: var(--exec-gold);
  color: #111 !important;
  text-align: center;
  padding: 15px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s;
}
.spp-book:hover { background: #D4AF37; }

/* â”€â”€ 4. Samples â€” real image carousel â”€â”€ */
.work-samples-section { padding: 100px 0 80px; }
.samples-header { padding: 0 8%; }

.samples-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--exec-dark-border);
  margin: 0 8% 40px;
  overflow-x: auto;
}
.samples-tabs::-webkit-scrollbar { display: none; }

.sample-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}
.sample-tab.active, .sample-tab:hover {
  color: var(--exec-gold);
  border-bottom-color: var(--exec-gold);
}

.samples-carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 8px 0 24px;
}
.samples-carousel-outer::before,
.samples-carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.samples-carousel-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--exec-black), transparent);
}
.samples-carousel-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--exec-black), transparent);
}

.samples-track {
  display: flex;
  gap: 14px;
  cursor: grab;
  user-select: none;
  padding: 0 8%;
  width: max-content;
}
.samples-track.dragging { cursor: grabbing; }

.sample-img-card {
  position: relative;
  width: 240px;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--exec-dark-border);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.sample-img-card:hover {
  border-color: var(--exec-gold);
  transform: translateY(-4px);
}
.sample-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.sample-img-card:hover img { transform: scale(1.04); }
.sample-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--exec-gold);
}

.samples-cta-row {
  text-align: center;
  padding: 40px 8% 0;
}

@media (max-width: 900px) {
  .specialist-grid-v2 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .specialist-grid-v2 { grid-template-columns: 1fr !important; }
  .spec-card-v2 { aspect-ratio: 4/5 !important; }
  #spec-profile-panel { width: 100vw !important; }
}



/* ══════════════════════════════════════════════════════════════════
   V6 PREMIUM LIGHT THEME — Executive Career Group
   Inspired by: McKinsey · Goldman Sachs · BlackRock · Bentley · Apple
   Philosophy: "Wealth Whispers" — timeless, editorial, effortless
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. Premium Color System ── */
:root {
  --ecg-cream:        #FAF8F5;
  --ecg-cream-2:      #F3EFE9;
  --ecg-cream-3:      #EDE9E2;
  --ecg-white:        #FCFBF9;
  --ecg-navy:         #1F2940;
  --ecg-navy-deep:    #172236;
  --ecg-gold:         #B08A57;
  --ecg-gold-lt:      rgba(176,138,87,0.14);
  --ecg-champagne:    #D8C8AF;
  --ecg-text:         #1A1A1A;
  --ecg-text-muted:   #5E5A54;
  /* Override existing dark vars */
  --exec-black:       #FAF8F5;
  --exec-charcoal:    #F3EFE9;
  --exec-charcoal-2:  #EDE9E2;
  --exec-dark-border: #D8C8AF;
  --exec-white:       #1A1A1A;
  --exec-off-white:   #1F2940;
  --exec-cool-gray:   #5E5A54;
  --exec-gold:        #B08A57;
}

/* ── 2. Global Base — Cream & Light ── */
html { background: #FAF8F5 !important; }

body {
  background: #FAF8F5 !important;
  color: #1A1A1A !important;
}

/* Paper texture — very subtle radial depth, no SVG filter */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 9990 !important;
  opacity: 1 !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(176,138,87,0.025) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(176,138,87,0.018) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%) !important;
}

/* ── 3. Navigation — Cream with Navy ── */
.nav {
  background: rgba(250,248,245,0.97) !important;
  border-bottom: 1px solid rgba(176,138,87,0.1) !important;
  box-shadow: 0 1px 0 rgba(176,138,87,0.05), 0 4px 24px rgba(0,0,0,0.035) !important;
  backdrop-filter: blur(16px) !important;
}

.nav.scrolled {
  background: rgba(250,248,245,0.99) !important;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06) !important;
}

.nav-link, .nav-links a {
  color: #3A3A3A !important;
}

.nav-link:hover, .nav-links a:hover {
  color: #B08A57 !important;
}

.nav-book-btn {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
  border-color: #1F2940 !important;
  border-radius: 2px !important;
}

.nav-book-btn:hover {
  background: #B08A57 !important;
  border-color: #B08A57 !important;
}

.nav-icon-btn { color: #1A1A1A !important; }
.nav-icon-btn svg { stroke: #1A1A1A; }
.nav-hamburger span { background: #1A1A1A !important; }

/* Search bar */
.nav-search-bar {
  background: #F3EFE9 !important;
  border-bottom-color: rgba(176,138,87,0.12) !important;
}

.nav-search-bar input {
  background: transparent !important;
  color: #1A1A1A !important;
}

.nav-search-bar input::placeholder { color: #5E5A54 !important; }

/* Mega menu */
.mega-menu {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.1) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(176,138,87,0.05) !important;
}

.mega-col-title { color: #B08A57 !important; }
.mega-item-name { color: #1F2940 !important; }
.mega-item-desc { color: #5E5A54 !important; }
.mega-item-diamond { color: #D8C8AF !important; }

.mega-item:hover .mega-item-name { color: #B08A57 !important; }

.mega-feature.dark-bg {
  background: #1F2940 !important;
}

.mega-feature.green-bg {
  background: #2A3654 !important;
}

/* Mobile nav */
.mobile-nav {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(176,138,87,0.1) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
}

.mobile-nav-link {
  color: #1A1A1A !important;
  border-bottom-color: rgba(176,138,87,0.08) !important;
}

.mobile-nav-sub a { color: #5E5A54 !important; }

.mobile-nav-book {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
}

/* ── 4. New Logo Wordmark (V6) ── */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

/* Hide the old SVG hexagon */
.nav-logo > svg { display: none !important; }

/* Restyle the text block */
.nav-logo-text {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

/* "Executive Career Group" → becomes the ECG wordmark */
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0 !important; /* hide original text */
  -webkit-text-fill-color: initial !important;
}

.nav-logo-text strong::before {
  content: 'ECG' !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px !important;
  font-weight: 300 !important;
  letter-spacing: 0.22em !important;
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
  line-height: 1 !important;
}

/* Vertical gold rule (via tagline ::before) */
.nav-logo-text small {
  font-size: 0 !important; /* hide original tagline */
  position: relative !important;
}

.nav-logo-text small::before {
  content: '' !important;
  display: inline-block !important;
  width: 1px !important;
  height: 26px !important;
  background: linear-gradient(to bottom, transparent, #B08A57 30%, #B08A57 70%, transparent) !important;
  margin: 0 13px !important;
  vertical-align: middle !important;
}

.nav-logo-text small::after {
  content: 'Executive Career Group™' !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  color: #5E5A54 !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  max-width: 90px !important;
}

/* Footer logo — champagne/cream on navy bg */
.footer-logo-wrap > svg { display: none !important; }

.footer-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-direction: row !important;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0 !important; /* hide original */
}

.footer-brand-name::before {
  content: 'ECG' !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  letter-spacing: 0.22em !important;
  color: #D8C8AF !important;
  -webkit-text-fill-color: #D8C8AF !important;
  line-height: 1 !important;
}

.footer-tagline {
  font-size: 0 !important;
  position: relative !important;
}

.footer-tagline::before {
  content: '' !important;
  display: inline-block !important;
  width: 1px !important;
  height: 24px !important;
  background: linear-gradient(to bottom, transparent, rgba(176,138,87,0.6) 30%, rgba(176,138,87,0.6) 70%, transparent) !important;
  margin: 0 13px !important;
  vertical-align: middle !important;
}

.footer-tagline::after {
  content: 'Executive Career Group™' !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(208,196,175,0.45) !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  max-width: 90px !important;
}

/* ── 5. Announcement Bar ── */
.announcement-bar {
  background: #1F2940 !important;
  color: rgba(250,248,245,0.8) !important;
}

.announcement-bar a {
  color: #D8C8AF !important;
}

.close-bar {
  color: rgba(250,248,245,0.5) !important;
}

/* ── 6. Progress Bar ── */
#progress-bar {
  background: linear-gradient(to right, #B08A57, #D8C8AF) !important;
}

/* ── 7. Hero — Stays Dark (background video/image) ── */
.hero, section.hero {
  /* Keep as is — dark overlay works over background */
}

/* But hero text stays white */
.hero h1, .hero .hero-eyebrow, .hero .hero-sub,
.hero-content h1, .hero-content p {
  color: #FAFAFA !important;
  -webkit-text-fill-color: #FAFAFA !important;
}

.hero .gold-shimmer {
  -webkit-text-fill-color: transparent !important;
}

/* Float cards in hero */
.float-card {
  background: rgba(250,248,245,0.06) !important;
  border-color: rgba(208,196,175,0.25) !important;
}

.float-num, .float-label {
  color: #FAFAFA !important;
  -webkit-text-fill-color: #FAFAFA !important;
}

/* ── 8. Trust / Marquee Section ── */
.exec-trust {
  background: #F3EFE9 !important;
  border-top: 1px solid rgba(176,138,87,0.1) !important;
  border-bottom: 1px solid rgba(176,138,87,0.1) !important;
}

.exec-trust h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.exec-trust p, .trust-header p {
  color: #5E5A54 !important;
}

.section-eyebrow, .exec-trust .section-eyebrow {
  color: #B08A57 !important;
}

.trust-divider { background: rgba(176,138,87,0.15) !important; }

.trust-badge {
  background: rgba(31,41,64,0.06) !important;
  color: #1F2940 !important;
  border: 1px solid rgba(176,138,87,0.15) !important;
}

/* ── 9. All General Sections — Cream ── */
section:not(.hero):not(.exec-stats):not(.stats-strip):not(.newsletter-section):not(.cta-section):not(.ecg-cta) {
  background: #FAF8F5 !important;
  color: #1A1A1A !important;
}

/* Alternate sections */
section:not(.hero):not(.exec-stats):not(.newsletter-section):not(.ecg-cta):nth-child(even) {
  background: #F3EFE9 !important;
}

/* Headings on light sections */
section:not(.hero) h1,
section:not(.hero) h2,
section:not(.hero) h3 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

section:not(.hero) p,
section:not(.hero) span:not(.section-eyebrow):not([class*="gold"]):not([class*="stat"]) {
  /* Let these inherit — too broad to force */
}

/* ── 10. Service Cards ── */
.service-card, .service-preview-card, .exec-service-card,
.services-grid .card, .services-preview .card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.14) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04) !important;
  color: #1A1A1A !important;
}

.service-card h3, .service-preview-card h3, .exec-service-card h3,
.service-card .card-title {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.service-card p, .service-preview-card p {
  color: #5E5A54 !important;
}

.service-card a, .card-link, .service-learn-more {
  color: #B08A57 !important;
}

/* ── 11. Stats Strip — Deep Navy ── */
.exec-stats, .stats-strip, .home-results, .metrics-row {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
}

.stat-number, .metric-number, .exec-stat-num, .results-num {
  color: #D8C8AF !important;
  -webkit-text-fill-color: #D8C8AF !important;
}

.stat-label, .metric-label, .exec-stat-label, .results-label {
  color: rgba(208,196,175,0.55) !important;
}

.stat-divider, .metric-divider {
  background: rgba(176,138,87,0.2) !important;
}

/* ── 12. Process Steps ── */
.process-section {
  background: #F3EFE9 !important;
}

.process-step {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.03) !important;
  color: #1A1A1A !important;
}

.step-number, .process-num {
  color: #B08A57 !important;
  -webkit-text-fill-color: #B08A57 !important;
  border-color: rgba(176,138,87,0.2) !important;
}

.process-step h3 { color: #1F2940 !important; -webkit-text-fill-color: #1F2940 !important; }
.process-step p { color: #5E5A54 !important; }

/* ── 13. Reviews / Testimonials ── */
section[id="reviews"], .reviews-section, .testimonials-section {
  background: #FAF8F5 !important;
  color: #1A1A1A !important;
}

section[id="reviews"] h2, .reviews-section h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.review-card, .testimonial-card, .exec-review {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04) !important;
  color: #1A1A1A !important;
}

.review-text, .review-quote, .testimonial-text {
  color: #3A3A3A !important;
}

.review-author, .testimonial-author { color: #1F2940 !important; }
.review-role, .testimonial-role, .review-company { color: #5E5A54 !important; }

/* Stars */
.review-stars, .star-row, .stars { color: #B08A57 !important; }

/* Quote mark */
.review-card::before, .review-open-quote {
  color: rgba(176,138,87,0.18) !important;
}

/* ── 14. Newsletter / CTA Sections ── */
.newsletter-section, .cta-section, .ecg-cta, .exec-cta,
section[class*="newsletter"], section[class*="cta"] {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
}

.newsletter-section h2, .cta-section h2, .ecg-cta h2 {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
}

.newsletter-section p, .cta-section p {
  color: rgba(208,196,175,0.65) !important;
}

.newsletter-form input, .cta-form input {
  background: rgba(250,248,245,0.07) !important;
  border: 1px solid rgba(176,138,87,0.25) !important;
  color: #FAF8F5 !important;
}

.newsletter-form input::placeholder { color: rgba(250,248,245,0.3) !important; }

.newsletter-form button, .cta-form button, .newsletter-submit {
  background: #B08A57 !important;
  color: #FAF8F5 !important;
}

/* ── 15. Specialists Section ── */
section#specialists {
  background: #FAF8F5 !important;
}

section#specialists .section-eyebrow {
  color: #B08A57 !important;
}

section#specialists h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

section#specialists > div:first-child p {
  color: #5E5A54 !important;
}

/* Photo cards — intentionally dark for photo contrast */
.spec-card-v2 {
  background: #1F2940 !important;
}

.spec-card-v2 .spec-name-v2 { color: #FAFAFA !important; }
.spec-card-v2 .spec-title-v2 { color: #D8C8AF !important; }

.spec-badge-v2 {
  background: #B08A57 !important;
  color: #FCFBF9 !important;
}

.spec-office-tag {
  background: rgba(31,41,64,0.85) !important;
  color: rgba(208,196,175,0.9) !important;
  border: 1px solid rgba(176,138,87,0.2) !important;
}

.spec-card-v2::before {
  color: rgba(208,196,175,0.75) !important;
  border-color: rgba(208,196,175,0.3) !important;
}

/* ── 16. Profile Panel — Cream ── */
#spec-panel-overlay {
  background: rgba(31,41,64,0.5) !important;
}

#spec-profile-panel {
  background: #FCFBF9 !important;
  border-left: 1px solid #D8C8AF !important;
}

.spp-close {
  background: rgba(31,41,64,0.06) !important;
  border-color: rgba(31,41,64,0.1) !important;
  color: #1F2940 !important;
}

.spp-close:hover {
  border-color: #B08A57 !important;
  color: #B08A57 !important;
}

#spp-photo { border-bottom: 1px solid #D8C8AF !important; }
.spp-body { background: #FCFBF9 !important; }

.spp-badge {
  color: #B08A57 !important;
  border-color: rgba(176,138,87,0.22) !important;
  background: rgba(176,138,87,0.05) !important;
}

#spp-name {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

#spp-title { color: #5E5A54 !important; }
#spp-specialty { color: #B08A57 !important; border-bottom-color: #D8C8AF !important; }
#spp-bio { color: #3A3A3A !important; }

.spp-contact {
  background: rgba(31,41,64,0.03) !important;
  border-color: rgba(176,138,87,0.12) !important;
}

.spp-contact a, .spp-contact span { color: #1A1A1A !important; }
.spp-contact a:hover { color: #B08A57 !important; }
.spp-contact-icon { color: #B08A57 !important; }

.spp-book {
  background: #1F2940 !important;
  color: #FCFBF9 !important;
  border-radius: 2px !important;
}

.spp-book:hover { background: #B08A57 !important; }

/* ── 17. Work Samples / Portfolio ── */
.work-samples-section {
  background: #F3EFE9 !important;
  color: #1A1A1A !important;
}

.work-samples-section h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.work-samples-section p { color: #5E5A54 !important; }

.samples-tabs { border-bottom-color: #D8C8AF !important; }

.sample-tab { color: #5E5A54 !important; }

.sample-tab.active, .sample-tab:hover {
  color: #B08A57 !important;
  border-bottom-color: #B08A57 !important;
}

.samples-carousel-outer::before {
  background: linear-gradient(to right, #F3EFE9, transparent) !important;
}

.samples-carousel-outer::after {
  background: linear-gradient(to left, #F3EFE9, transparent) !important;
}

.sample-img-card {
  border-color: #D8C8AF !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
}

.sample-img-card:hover {
  border-color: #B08A57 !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1) !important;
}

.sample-img-label {
  background: linear-gradient(to top, rgba(31,41,64,0.9), transparent) !important;
  color: #D8C8AF !important;
}

.samples-cta-row a {
  border-color: #1F2940 !important;
  color: #1F2940 !important;
}

.samples-cta-row a:hover {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
}

/* ── 18. Global Offices / Map Section ── */
.ecg-map-section {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(176,138,87,0.1) !important;
  border-bottom: 1px solid rgba(176,138,87,0.1) !important;
}

.ecg-map-section .section-eyebrow { color: #B08A57 !important; }

.ecg-map-section h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.map-canvas-container {
  border: 1px solid rgba(176,138,87,0.14) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05) !important;
}

/* Leaflet real map container */
#ecg-leaflet-map {
  height: 400px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.moi-city { color: #1F2940 !important; }
.moi-tz { color: #5E5A54 !important; }
.moi-tag { color: #B08A57 !important; border-color: rgba(176,138,87,0.28) !important; }
.moi-pulse { background: #B08A57 !important; box-shadow: 0 0 0 4px rgba(176,138,87,0.15) !important; }
.map-office-divider { background: #D8C8AF !important; }

/* ── 19. Footer — Deep Navy ── */
footer {
  background: #1F2940 !important;
  border-top: none !important;
}

.footer-top {
  border-bottom: 1px solid rgba(176,138,87,0.1) !important;
}

.footer-col-title {
  color: #B08A57 !important;
  letter-spacing: 0.22em !important;
}

.footer-contact-label { color: rgba(208,196,175,0.45) !important; }
.footer-contact-val { color: rgba(250,248,245,0.75) !important; }
.footer-contact-val a { color: rgba(250,248,245,0.75) !important; }
.footer-contact-val a:hover { color: #D8C8AF !important; }

.footer-links a { color: rgba(250,248,245,0.55) !important; }
.footer-links a:hover { color: #D8C8AF !important; }

.footer-copy, .footer-motto { color: rgba(250,248,245,0.28) !important; }

.footer-bottom {
  border-top: 1px solid rgba(176,138,87,0.08) !important;
}

.footer-maps-section {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(176,138,87,0.1) !important;
}

.footer-maps-title { color: rgba(208,196,175,0.5) !important; }
.new-location-card { border-color: rgba(176,138,87,0.12) !important; }
.loc-office { color: #B08A57 !important; }
.loc-city { color: rgba(250,248,245,0.6) !important; }
.location-pin { background: #B08A57 !important; }

/* ── 20. Buttons — Global ── */
.btn-gold, .exec-btn-gold {
  background: #B08A57 !important;
  color: #FCFBF9 !important;
  border: 1px solid #B08A57 !important;
  border-radius: 2px !important;
}

.btn-gold:hover { background: #9A7848 !important; border-color: #9A7848 !important; }

.btn-outline {
  border-color: rgba(250,248,245,0.4) !important;
  color: #FAFAFA !important;
  border-radius: 2px !important;
}

.btn-outline:hover {
  background: rgba(250,248,245,0.1) !important;
  border-color: rgba(250,248,245,0.65) !important;
}

/* Primary button on light bg */
.cta-btn-primary, .btn-navy {
  background: #1F2940 !important;
  color: #FCFBF9 !important;
  border: 1px solid #1F2940 !important;
  border-radius: 2px !important;
}

/* ── 21. Form Elements ── */
.form-input, .form-textarea, .form-select,
input[type="text"]:not(.nav-search-bar input),
input[type="email"],
input[type="tel"],
textarea,
select {
  background: #FCFBF9 !important;
  border-color: #D8C8AF !important;
  color: #1A1A1A !important;
  border-radius: 4px !important;
}

.form-input:focus, .form-textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #B08A57 !important;
  box-shadow: 0 0 0 3px rgba(176,138,87,0.08) !important;
  outline: none !important;
}

.form-label, label { color: #1F2940 !important; }

/* ── 22. Sticky Section Navs ── */
.spec-sticky-nav, .sticky-sub-nav, .section-tab-nav {
  background: rgba(250,248,245,0.98) !important;
  border-bottom-color: rgba(176,138,87,0.1) !important;
}

.spec-sticky-nav a, .sticky-sub-nav a, .section-tab-nav a {
  color: #5E5A54 !important;
}

.spec-sticky-nav a.active, .spec-sticky-nav a:hover,
.sticky-sub-nav a.active, .sticky-sub-nav a:hover {
  color: #1F2940 !important;
  border-bottom-color: #B08A57 !important;
}

/* ── 24. Chatbot ── */
#ecg-chatbot-toggle {
  background: #1F2940 !important;
}

.chatbot-window {
  background: #FCFBF9 !important;
  border-color: rgba(176,138,87,0.12) !important;
}

.chatbot-header {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
}

/* ── 25. Contact Page ── */
.contact-left {
  background: #1F2940 !important;
}

.contact-right, .contact-form-wrap {
  background: #FCFBF9 !important;
}

.contact-detail-label { color: rgba(208,196,175,0.5) !important; }
.contact-detail-val { color: rgba(250,248,245,0.85) !important; }
.contact-detail-val a { color: #D8C8AF !important; }
.contact-detail-val a:hover { color: #B08A57 !important; }
.contact-brand { color: #D8C8AF !important; -webkit-text-fill-color: #D8C8AF !important; }

.contact-form-section h2, .contact-right h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

/* Submit button */
.form-submit, input[type="submit"], button[type="submit"] {
  background: #1F2940 !important;
  color: #FCFBF9 !important;
  border-color: #1F2940 !important;
  border-radius: 2px !important;
}

.form-submit:hover { background: #B08A57 !important; border-color: #B08A57 !important; }

/* ── 26. Digital Services Page ── */
.digital-service-card, .digital-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04) !important;
  color: #1A1A1A !important;
}

.digital-service-card h3 { color: #1F2940 !important; -webkit-text-fill-color: #1F2940 !important; }
.digital-service-card p { color: #5E5A54 !important; }

/* ── 27. Library Page ── */
.insight-card, .book-card, .library-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04) !important;
  color: #1A1A1A !important;
}

.insight-card h3, .book-card h3 { color: #1F2940 !important; -webkit-text-fill-color: #1F2940 !important; }
.insight-card p, .book-card p { color: #5E5A54 !important; }

/* ── 28. How We Rate / Evaluation Section ── */
.rate-section, .evaluation-section {
  background: #F3EFE9 !important;
}

.rate-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.1) !important;
  border-radius: 16px !important;
  color: #1A1A1A !important;
}

/* ── 29. Thank You / Success Page ── */
.thankyou-page {
  background: transparent !important;
  color: #1A1A1A !important;
}

.ty-headline {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.ty-sub { color: #5E5A54 !important; }

.ty-steps {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04) !important;
}

.ty-step-num {
  background: #1F2940 !important;
  color: #FAF8F5 !important;
  border: none !important;
}

.ty-step-text { color: #3A3A3A !important; }

.ty-checkmark {
  color: #B08A57 !important;
  background: rgba(176,138,87,0.08) !important;
  border: 1px solid rgba(176,138,87,0.2) !important;
  border-radius: 50% !important;
}

/* ── 30. Leaflet Map Custom Markers ── */
.ecg-map-pin {
  width: 14px;
  height: 14px;
  background: #B08A57;
  border-radius: 50%;
  border: 2.5px solid #FAF8F5;
  box-shadow: 0 0 0 2px #B08A57, 0 2px 12px rgba(176,138,87,0.4);
  animation: ecg-pin-glow 2.8s ease-in-out infinite;
}

@keyframes ecg-pin-glow {
  0%, 100% {
    box-shadow: 0 0 0 2px #B08A57, 0 2px 12px rgba(176,138,87,0.35);
  }
  50% {
    box-shadow: 0 0 0 2px #B08A57, 0 0 0 8px rgba(176,138,87,0.12), 0 2px 20px rgba(176,138,87,0.3);
  }
}

.ecg-map-popup {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #1F2940;
}

.ecg-map-popup strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1F2940;
  margin-bottom: 2px;
}

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper {
  border-radius: 8px !important;
  border: 1px solid rgba(176,138,87,0.2) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
  font-family: 'Outfit', sans-serif !important;
}

.leaflet-popup-tip { background: white !important; }

/* ── 31. About Page ── */
.about-section, .story-section, .leadership-section {
  background: #FAF8F5 !important;
  color: #1A1A1A !important;
}

.about-section h2, .story-section h2, .leadership-section h2 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

.about-section p, .story-section p { color: #5E5A54 !important; }

/* ── 32. Service Description Sections (services.html) ── */
.service-description, .service-detail {
  background: #FAF8F5 !important;
  color: #1A1A1A !important;
}

.service-feature-list li { color: #3A3A3A !important; }
.service-feature-list li::before { color: #B08A57 !important; }

/* ── 33. Packages Section ── */
.package-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.14) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04) !important;
  color: #1A1A1A !important;
}

.package-card.featured {
  background: #1F2940 !important;
  border-color: #B08A57 !important;
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured li {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
}

.package-price, .package-num { color: #B08A57 !important; -webkit-text-fill-color: #B08A57 !important; }
.package-card h3 { color: #1F2940 !important; -webkit-text-fill-color: #1F2940 !important; }
.package-card li { color: #3A3A3A !important; }

/* ── 34. Responsive Overrides ── */
@media (max-width: 768px) {
  .nav-logo-text small::after {
    display: none !important;
  }
  .nav-logo-text small::before {
    display: none !important;
  }
}


/* ══════════════════════════════════════════════════════════════════
   V7 — CONTRAST FIX, BOLD TEXT, SERVICES REDESIGN, SEARCH, SHADER
   Root fix: --exec-warm-gray was #D6D3D1 (near-white) — completely
   invisible on cream backgrounds. Override everywhere.
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. Critical contrast fix — warm-gray was #D6D3D1 (invisible on cream) ── */
:root {
  --exec-warm-gray: #3D3A36 !important;
}

/* ── 2. Bold body text globally ── */
p, li {
  font-weight: 500 !important;
}

/* ── 3. Explicit dark text for every element that used warm-gray ── */
.service-overview            { color: #3A3630 !important; font-weight: 500 !important; font-size: 16px !important; line-height: 1.8 !important; }
.service-deliverables li     { color: #3A3630 !important; font-weight: 500 !important; font-size: 14px !important; border-bottom: none !important; }
.service-outcome             { color: #1F2940 !important; font-weight: 500 !important; font-size: 15px !important; }
.story-quote                 { color: #2A2620 !important; font-weight: 500 !important; }
.story-outcome               { color: #1F2940 !important; font-weight: 600 !important; }
.section-sub                 { color: #4A4640 !important; font-weight: 500 !important; }
.trust-header p              { color: #3A3630 !important; font-weight: 500 !important; }
.process-step-desc           { color: #3A3630 !important; font-weight: 500 !important; }
.exec-cta-section p          { color: #3A3630 !important; font-weight: 500 !important; }
.cta-block-content p         { color: #3A3630 !important; font-weight: 500 !important; }
.hero-sub                    { color: rgba(250,248,245,0.93) !important; font-weight: 500 !important; }
.mega-item-desc              { color: #4A4640 !important; font-weight: 500 !important; }
.service-timeline            { color: #B08A57 !important; font-weight: 600 !important; border-color: rgba(176,138,87,0.35) !important; }
.svc-card p                  { color: #3A3630 !important; font-weight: 500 !important; }
.spec-info-bio               { color: #3A3630 !important; font-weight: 500 !important; }
.footer-contact-val a        { color: #D8C8AF !important; }
.footer-contact-val          { color: rgba(216,200,175,0.85) !important; }
.footer-contact-label        { color: rgba(216,200,175,0.5) !important; }

/* ── 4. Services Grid — Single-column premium editorial layout ── */
.services-page-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.services-grid-v4 {
  display: block !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  background: transparent !important;
  padding: 40px 0 80px !important;
}

.service-item {
  background: #FCFBF9 !important;
  border: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(176,138,87,0.14) !important;
  padding: 52px 72px 52px 156px !important;
  position: relative !important;
  display: block !important;
  transition: background 0.3s ease !important;
  overflow: visible !important;
}

.service-item:first-child {
  border-top: 1px solid rgba(176,138,87,0.14) !important;
}

.service-item:last-child {
  border-bottom: none !important;
}

.service-item:hover {
  background: #F8F5F0 !important;
}

.service-item::before {
  opacity: 0 !important;
}

.service-item:hover::before {
  opacity: 1 !important;
  background: linear-gradient(90deg, #B08A57, transparent) !important;
  height: 1px !important;
}

/* Decorative large number positioned left */
.service-number {
  position: absolute !important;
  left: 44px !important;
  top: 52px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 84px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  color: rgba(176,138,87,0.2) !important;
  display: block !important;
  margin-bottom: 0 !important;
}

.service-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 34px !important;
  font-weight: 400 !important;
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
  margin-bottom: 14px !important;
  line-height: 1.2 !important;
}

.service-overview {
  max-width: 780px !important;
  margin-bottom: 24px !important;
}

.service-deliverables {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
  gap: 2px 28px !important;
  margin-bottom: 28px !important;
  padding: 0 !important;
}

.service-deliverables li {
  padding: 5px 0 5px 20px !important;
}

.service-outcome {
  max-width: 700px !important;
  border-left: 2px solid #B08A57 !important;
  padding-left: 18px !important;
}

@media (max-width: 900px) {
  .service-item {
    padding: 40px 28px 40px 28px !important;
  }
  .service-number {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
    font-size: 52px !important;
    margin-bottom: 10px !important;
  }
  .service-deliverables {
    grid-template-columns: 1fr !important;
  }
}

/* ── 5. Story cards — better contrast ── */
.story-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.14) !important;
}

/* ── 6. Search Results Panel ── */
.nav-search-bar {
  position: relative !important;
}

.ecg-search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FCFBF9;
  border: 1px solid rgba(176,138,87,0.15);
  border-top: none;
  box-shadow: 0 24px 56px rgba(0,0,0,0.1), 0 0 0 1px rgba(176,138,87,0.04);
  z-index: 9998;
  max-height: 440px;
  overflow-y: auto;
}

.ecg-search-results.visible {
  display: block;
}

.ecg-search-result-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 0 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(176,138,87,0.07);
  text-decoration: none;
  transition: background 0.15s;
}

.ecg-search-result-item:last-child {
  border-bottom: none;
}

.ecg-search-result-item:hover {
  background: #F3EFE9;
}

.ecg-sr-cat {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B08A57;
  white-space: nowrap;
}

.ecg-sr-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1F2940;
}

.ecg-sr-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #5E5A54;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.ecg-search-empty {
  padding: 20px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #5E5A54;
  font-style: italic;
}

/* ── 7. WebGL Shader Canvas — About page ── */
#ecg-shader-hero {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  display: block !important;
}

/* About hero: ensure overlay and content sit above the shader */
.about-hero-bg {
  position: relative !important;
  overflow: hidden !important;
}

.about-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    160deg,
    rgba(4,4,12,0.12) 0%,
    rgba(4,4,12,0.55) 50%,
    rgba(4,4,12,0.88) 100%
  ) !important;
}

.about-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* Restore index.html hero overlay to work with video (no shader) */
.hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.42) 40%,
    rgba(10,10,10,0.84) 75%,
    rgba(10,10,10,0.97) 100%
  ) !important;
}

/* ── 8. Hero Text Visibility — all dark-background hero sections ──
   v6 set --exec-white:#1A1A1A which bleeds into hero headings that
   sit on dark photo/shader backgrounds. Force white/cream here.     */

/* ── Hero text visibility — 2-class selectors beat section:not(.hero) h1 (0,1,2) ──
   Need specificity ≥ 0,2,1 to override the v6 general heading rule.            */

/* About page hero — 0,2,1 */
.about-hero-bg .about-hero-content h1,
.about-hero-bg .about-hero-content h2 {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55) !important;
}
.about-hero-bg .about-hero-content p,
.about-hero-bg .about-hero-content .subtitle {
  color: rgba(250,248,245,0.9) !important;
  -webkit-text-fill-color: rgba(250,248,245,0.9) !important;
  font-weight: 500 !important;
}
.about-hero-bg .about-hero-content .section-eyebrow {
  color: #B08A57 !important;
  -webkit-text-fill-color: #B08A57 !important;
}

/* Services page photo hero — 0,2,1 */
.services-hero .services-hero-content h1 {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5) !important;
}
.services-hero .services-hero-content p {
  color: rgba(250,248,245,0.9) !important;
  -webkit-text-fill-color: rgba(250,248,245,0.9) !important;
  font-weight: 500 !important;
}
.services-hero .services-hero-content .section-eyebrow {
  color: #B08A57 !important;
  -webkit-text-fill-color: #B08A57 !important;
}

/* Services second hero (exec-process-hero) — on a dark bg section */
.exec-process-hero.services-page-section h1,
section.exec-process-hero h1 {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
}
section.exec-process-hero p {
  color: rgba(250,248,245,0.85) !important;
  -webkit-text-fill-color: rgba(250,248,245,0.85) !important;
  font-weight: 500 !important;
}

/* Index.html main hero — already dark-bg, ensure white */
.hero .hero-content h1 {
  color: #FAF8F5 !important;
  -webkit-text-fill-color: #FAF8F5 !important;
}
.hero .hero-content .hero-sub {
  color: rgba(250,248,245,0.9) !important;
  -webkit-text-fill-color: rgba(250,248,245,0.9) !important;
}

/* Gold shimmer always stays gold in dark heroes */
.about-hero-bg .gold-shimmer,
.services-hero .gold-shimmer,
.exec-process-hero .gold-shimmer,
.hero .gold-shimmer {
  color: #B08A57 !important;
  -webkit-text-fill-color: #B08A57 !important;
  background: none !important;
}

/* ── Mission / Vision cards — original CSS used white text, invisible on cream ── */
.mission-card {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.18) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.04) !important;
}
.mission-card h3 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
}
.mission-card p {
  color: #3A3630 !important;
  -webkit-text-fill-color: #3A3630 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

/* ── Value cards — same pattern fix ── */
.value-card, .value-item {
  background: #FCFBF9 !important;
  border: 1px solid rgba(176,138,87,0.15) !important;
}
.value-card h3, .value-item h3 {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}
.value-card p, .value-item p {
  color: #3A3630 !important;
  -webkit-text-fill-color: #3A3630 !important;
  font-weight: 500 !important;
}

/* ── Story / About body content paragraphs ── */
.story-section p,
.leadership-content p,
.why-ecg-section p,
.methodology-section p,
.about-section p {
  color: #3A3630 !important;
  -webkit-text-fill-color: #3A3630 !important;
  font-weight: 500 !important;
}

/* ── Specialist badge — tighter spacing for longer "Career Branding Specialist" text ── */
.spec-card-v2 .spec-badge-v2 {
  font-size: 9px !important;
  letter-spacing: 0.12em !important;
  padding: 5px 12px !important;
  white-space: nowrap !important;
}

/* ── Specialist card names & titles — explicitly white/champagne on dark card ── */
.spec-card-v2 .spec-name-v2 {
  color: #FAFAFA !important;
  -webkit-text-fill-color: #FAFAFA !important;
  font-size: 22px !important;
  font-weight: 400 !important;
}

.spec-card-v2 .spec-title-v2 {
  color: #D8C8AF !important;
  -webkit-text-fill-color: #D8C8AF !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
}

/* ── Specialist section heading and sub on cream background ── */
#specialists .section-headline {
  color: #1F2940 !important;
  -webkit-text-fill-color: #1F2940 !important;
}

#specialists .section-sub {
  color: #4A4640 !important;
  -webkit-text-fill-color: #4A4640 !important;
  font-weight: 500 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   V8 — CIRCULAR TESTIMONIALS · SPECIALIST PANEL FIX · VIDEO UPLOAD · MAP
══════════════════════════════════════════════════════════════════════════ */

/* ── Specialist panel photo: show full face ── */
#spp-photo {
  height: 420px !important;
  object-position: center 20% !important;
}

/* ── Specialist card photo: center 20% so face shows ── */
.spec-card-v2 .spec-photo-wrap img,
.spec-photo-wrap img {
  object-position: center 20% !important;
}

/* ══ CIRCULAR TESTIMONIALS SECTION ══ */
.ecg-testimonials-section {
  background: #FAF8F5;
  padding: 100px 8% 110px;
  position: relative;
  overflow: hidden;
}

.ecg-test-header {
  text-align: center;
  margin-bottom: 72px;
}

.ecg-test-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Images column */
.ecg-test-images {
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.ecg-test-avatar {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 2, 0.3, 1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.ecg-test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Content column */
.ecg-test-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.ecg-test-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ecg-test-designation {
  font-size: 13px;
  color: #B08A57;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  font-weight: 500;
}

.ecg-test-quote {
  font-size: 17px;
  color: #3A3630;
  line-height: 1.85;
  font-weight: 500;
}

/* Word-by-word blur-reveal animation */
@keyframes ecgWordIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(5px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}

.ecg-word {
  display: inline-block;
  animation: ecgWordIn 0.22s ease-in-out both;
}

/* Arrows */
.ecg-test-arrows {
  display: flex;
  gap: 14px;
  padding-top: 40px;
}

.ecg-test-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1A1A1A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.ecg-test-arrow svg {
  stroke: #FAF8F5;
  width: 20px;
  height: 20px;
}

.ecg-test-arrow:hover { background: #B08A57; }

/* Responsive */
@media (max-width: 900px) {
  .ecg-test-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ecg-test-images { height: 320px; }
  .ecg-test-content { min-height: auto; }
  .ecg-test-arrows { padding-top: 24px; }
}

/* ══ VIDEO UPLOAD — Review Form ══ */
.rev-video-upload-zone {
  border: 2px dashed rgba(176,138,87,0.35);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  margin-bottom: 4px;
}

.rev-video-upload-zone:hover {
  border-color: #B08A57;
  background: rgba(176,138,87,0.04);
}

.rev-video-upload-zone .vuz-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.rev-video-upload-zone .vuz-text {
  font-size: 14px;
  font-weight: 600;
  color: #2A2620;
  margin-bottom: 4px;
}

.rev-video-upload-zone .vuz-sub {
  font-size: 12px;
  color: #6B7280;
}

.rev-video-upload-zone.has-file {
  border-color: #10B981;
  background: rgba(16,185,129,0.04);
}

.vuz-preview { display: none; }
.rev-video-upload-zone.has-file .vuz-preview { display: block; }
.rev-video-upload-zone.has-file .vuz-placeholder { display: none; }

.vuz-preview video {
  max-width: 100%;
  max-height: 180px;
  border-radius: 4px;
  margin-top: 12px;
}

.vuz-required-note {
  font-size: 11px;
  color: #EF4444;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Contact page map */
.contact-map-section {
  background: #0C1F17;
  padding: 70px 8% 80px;
}

.contact-map-section .map-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map-section .map-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: #FAF8F5;
  margin-bottom: 10px;
}

.contact-map-section .map-header p {
  font-size: 15px;
  color: rgba(250,248,245,0.65);
}

