/* ============================================================
   JACORAL LTD — PRIVATE ADVISORY PLATFORM
   Global Stylesheet v3 | White Marble · Black · Gold
   ============================================================ */

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

:root {
  /* Brand Colors — extracted from JacoralBrandLogo */
  --black:        #0a0a0a;
  --black-soft:   #1a1a1a;
  --black-mid:    #2c2c2c;
  --gold:         #b8892a;
  --gold-light:   #d4a84b;
  --gold-pale:    #e8c97a;
  --gold-muted:   rgba(184,137,42,0.12);
  --gold-border:  rgba(184,137,42,0.25);
  --white:        #ffffff;
  --off-white:    #f8f6f2;
  --marble:       #f5f3ef;
  --light-grey:   #ebebeb;
  --mid-grey:     #c8c4bc;
  --text-main:    #1a1a1a;
  --text-body:    #3d3d3d;
  --text-muted:   #7a7670;
  --border:       #e2ddd8;
  --border-dark:  #c8c4bc;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Motion */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.4s var(--ease);

  /* Layout */
  --max:          1260px;
  --gutter:       clamp(1.25rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--gold-pale); color: var(--black); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--black); margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-text {
  font-size: 1rem; font-weight: 400; color: var(--text-body);
  line-height: 1.85; max-width: 580px;
}
.gold-line { display: block; width: 48px; height: 2px; background: var(--gold); margin-bottom: 2.5rem; }

/* ===== FADE ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: 1rem 2.4rem; border: 2px solid var(--black);
  cursor: pointer; transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 1rem 2.4rem; border: 2px solid var(--gold);
  cursor: pointer; transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); background: transparent;
  padding: 1rem 2.4rem; border: 1.5px solid var(--black-mid);
  cursor: pointer; transition: all var(--transition);
}
.btn-outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  padding: 0.9rem 2.2rem; border: 1.5px solid var(--gold-border);
  cursor: pointer; transition: all var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
}
.nav.scrolled {
  height: 66px;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; height: 46px;
}
.nav-logo img {
  height: 42px; width: auto; object-fit: contain;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--black); letter-spacing: 0.12em;
}
.nav-logo-sub {
  font-size: 0.5rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); background: var(--gold); padding: 0.65rem 1.5rem;
  border: none; cursor: pointer; transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 8999;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.8rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500;
  color: var(--black); transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* Mobile sticky CTA */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 8900;
  background: var(--black); padding: 1.1rem var(--gutter); text-align: center;
}
.mobile-sticky a {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ===== VIDEO HERO ===== */
.video-hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 500px;
  overflow: hidden; background: #060606;
}
.video-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  will-change: transform;
}
.video-hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: none;
  background: #060606;
}
.video-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.12);
  z-index: 1; pointer-events: none;
}
/* Mobile: also attempt video, fallback to poster if needed */
@media (max-width: 768px) {
  .video-hero { height: 100svh; }
}

/* ===== MAIN HERO ===== */
.hero {
  background: var(--white);
  padding: 8rem var(--gutter) 7rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, var(--marble) 0%, var(--off-white) 100%);
  z-index: 0;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.05;
  color: var(--black); margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-subline {
  font-size: 1rem; font-weight: 400; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1.05rem; font-weight: 400; color: var(--text-body);
  line-height: 1.85; max-width: 500px; margin-bottom: 3rem;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 3rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; flex-direction: column;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; color: var(--black); line-height: 1;
}
.hero-trust-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem;
}
.hero-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  padding: 2.5rem;
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: var(--black);
  margin-bottom: 0.4rem;
}
.hero-form-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===== ENQUIRY FORM (shared) ===== */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.form-control {
  width: 100%; background: var(--off-white);
  border: 1.5px solid var(--border); color: var(--text-main);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  padding: 0.8rem 1rem; outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none; border-radius: 0;
}
.form-control::placeholder { color: var(--mid-grey); }
.form-control:focus { border-color: var(--gold); background: var(--white); }
.form-control.textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.8rem; line-height: 1.6; }
.form-submit {
  width: 100%; padding: 1rem; margin-top: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  border: 2px solid var(--black); cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); }

/* Toggle buttons for project type */
.toggle-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.toggle-btn {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--border); background: var(--off-white);
  color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.toggle-btn.active, .toggle-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* Select */
select.form-control { cursor: pointer; }
select.form-control option { background: var(--white); }

/* ===== AUTHORITY SECTION ===== */
.authority { padding: 7rem var(--gutter); background: var(--off-white); }
.authority-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.authority-text .section-text { max-width: 100%; margin-bottom: 1.5rem; }
.authority-pillars { display: flex; flex-direction: column; }
.pillar {
  padding: 1.8rem 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-muted);
}
.pillar-icon span { font-family: var(--font-display); font-size: 1rem; color: var(--gold); }
.pillar-body h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.4rem;
}
.pillar-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ===== LEADERSHIP ===== */
.leadership { padding: 7rem var(--gutter); background: var(--white); border-top: 1px solid var(--border); }
.leadership-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 7rem; align-items: start;
}
.leader-img-col { position: relative; }
.leader-img-wrap {
  position: relative;
}
.leader-img-wrap img {
  width: 100%; max-height: 620px;
  object-fit: cover; object-position: center top; display: block;
}
.leader-img-border {
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  width: 60%; height: 60%; border: 2px solid var(--gold);
  z-index: -1; pointer-events: none;
}
.leader-badge {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--black); padding: 1.2rem 1.5rem;
  min-width: 140px;
}
.leader-badge-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.leader-badge-label { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.leader-name {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.4rem; line-height: 1.1;
}
.leader-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
}
.leader-bio { font-size: 0.95rem; color: var(--text-body); line-height: 1.9; margin-bottom: 1rem; }
.leader-credentials { margin: 2.2rem 0; display: flex; flex-direction: column; }
.credential {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-body);
}
.credential:first-child { border-top: 1px solid var(--border); }
.credential-mark {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
}
.credential-mark::after { content: '✓'; font-size: 0.6rem; color: var(--gold); font-weight: 700; }

/* ===== OPPORTUNITIES ===== */
.opportunities { padding: 7rem var(--gutter); background: var(--marble); border-top: 1px solid var(--border); }
.opportunities-inner { max-width: var(--max); margin: 0 auto; }
.opps-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.opps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.opp-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
}
.opp-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-3px); }
.opp-card-img { width: 100%; height: 200px; object-fit: cover; filter: saturate(0.85); transition: filter var(--transition); display: block; }
.opp-card:hover .opp-card-img { filter: saturate(1); }
.opp-card-body { padding: 2rem; }
.opp-market {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block;
}
.opp-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.8rem; line-height: 1.25;
}
.opp-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.opp-link {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); display: flex; align-items: center; gap: 0.5rem;
  transition: gap var(--transition), color var(--transition);
}
.opp-link::after { content: '→'; transition: transform var(--transition); }
.opp-card:hover .opp-link { color: var(--gold); gap: 0.8rem; }
.opp-card:hover .opp-link::after { transform: translateX(2px); }

/* ===== STATS BAND ===== */
.stats-band { background: var(--black); padding: 5rem var(--gutter); }
.stats-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-block { text-align: center; padding: 2rem 1rem; border: 1px solid rgba(255,255,255,0.06); }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.6rem;
}
.stat-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ===== INSIGHTS ===== */
.insights { padding: 7rem var(--gutter); background: var(--white); border-top: 1px solid var(--border); }
.insights-inner { max-width: var(--max); margin: 0 auto; }
.insights-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.insight-main {
  background: var(--marble); border: 1px solid var(--border);
  padding: 3rem; position: relative; overflow: hidden;
  transition: border-color var(--transition);
}
.insight-main::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.6s var(--ease);
}
.insight-main:hover { border-color: var(--gold-border); }
.insight-main:hover::before { width: 100%; }
.insight-category {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.insight-headline {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 1.2rem;
}
.insight-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 2rem; }
.insight-read {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); display: flex; align-items: center; gap: 0.5rem;
  transition: color var(--transition), gap var(--transition);
}
.insight-read::after { content: '→'; }
.insight-main:hover .insight-read { color: var(--gold); gap: 0.8rem; }
.insights-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.insight-item {
  background: var(--white); padding: 1.8rem 2rem;
  transition: background var(--transition); cursor: pointer;
}
.insight-item:hover { background: var(--marble); }
.insight-item-cat { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.insight-item-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--black); line-height: 1.3; margin-bottom: 0.4rem;
}
.insight-item-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

/* ===== LEAD MAGNET ===== */
.lead-magnet { padding: 7rem var(--gutter); background: var(--black); }
.lead-magnet-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.magnet-text .section-heading { color: var(--white); }
.magnet-text .section-text { color: rgba(255,255,255,0.65); max-width: 100%; }
.magnet-form { background: var(--off-white); padding: 3rem; }
.magnet-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
.magnet-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--gold); padding: 7rem var(--gutter); text-align: center; }
.cta-band-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 1.5rem; display: block; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 700; color: var(--black); margin-bottom: 1.2rem; line-height: 1.1; }
.cta-band-sub { font-size: 1rem; color: rgba(0,0,0,0.6); max-width: 500px; margin: 0 auto 3rem; line-height: 1.8; }
.cta-band .btn-primary { background: var(--black); border-color: var(--black); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--black-soft); border-color: var(--black-soft); }

/* ===== TRUST BAND ===== */
.trust-band { padding: 3rem var(--gutter); background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-band-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.trust-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--text-muted); letter-spacing: 0.02em; }
.trust-text strong { color: var(--black); font-style: normal; font-weight: 600; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 10rem var(--gutter) 6rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, var(--gold-muted) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }

/* ===== SERVICES PAGE ===== */
.services-section { padding: 7rem var(--gutter); background: var(--white); }
.services-inner { max-width: var(--max); margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card {
  background: var(--off-white); padding: 3rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.6s var(--ease);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); border-color: var(--gold-border); }
.service-card:hover::before { height: 100%; }
.service-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--border); margin-bottom: 1rem; line-height: 1; }
.service-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--black); margin-bottom: 1rem; }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.service-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li { font-size: 0.85rem; color: var(--text-body); padding-left: 1.2rem; position: relative; line-height: 1.65; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 7rem var(--gutter); background: var(--white); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info .section-text { max-width: 100%; margin-bottom: 3rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.contact-detail-icon span { font-size: 0.85rem; color: var(--gold); }
.contact-detail-body h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-detail-body p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }
.contact-form-wrap { background: var(--off-white); border: 1px solid var(--border); padding: 3.5rem; }
.contact-form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; }
.contact-form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }

/* ===== POPUP FORM ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9800;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
  padding: 1rem;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--white); max-width: 560px; width: 100%;
  padding: 3rem; position: relative;
  transform: translateY(30px); transition: transform 0.45s var(--ease-out);
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px; border: 1px solid var(--border);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted); transition: all var(--transition);
}
.popup-close:hover { border-color: var(--black); color: var(--black); }
.popup-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
.popup-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.65; }

/* ===== FOOTER ===== */
.footer { background: var(--white); border-top: 2px solid var(--black); padding: 5rem var(--gutter) 3rem; }
.footer-grid { max-width: var(--max); margin: 0 auto 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 4rem; }
.footer-brand-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--black); letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.footer-brand-tagline { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-brand-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.85; max-width: 280px; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition), opacity var(--transition);
  flex-shrink: 0;
}
.footer-social a svg {
  width: 16px; height: 16px;
  fill: currentColor; display: block; flex-shrink: 0;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); opacity: 1; }
.footer-col-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--black); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.7rem; color: var(--text-muted); }
.footer-credit { font-size: 0.62rem; color: var(--mid-grey); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { gap: 3rem; }
  .opps-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner, .authority-inner, .leadership-inner, .lead-magnet-inner, .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero::before { display: none; }
  .hero-form-panel { padding: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
  .leader-badge { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .opps-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .leader-img-border { display: none; }
}

/* ===== PRINT STYLES ===== */
@media print {
  .nav, .mobile-sticky, .popup-overlay, .cta-band, .lead-magnet { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

/* ===== TEXTAREA HEIGHT ===== */
.form-control.textarea {
  min-height: 110px;
  resize: vertical;
}


/* ===== SERVICE CARD LIST FIX ===== */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.2rem;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.65;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
