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

:root {
  --navy:     #0D2B55;
  --navy-mid: #1a3f70;
  --gold:     #C9A84C;
  --off-white:#F5F7FA;
  --steel:    #E8EDF4;
  --slate:    #2C3E50;
  --gray:     #5a6a7a;
  --light:    #94a3b8;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,43,85,0.97);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 18px;
  color: var(--white); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px; border-radius: 2px; font-weight: 600 !important;
}
.nav-cta:hover { background: #e0b84a !important; }

/* ── STATIC HERO ── */
.static-hero {
  background: var(--navy);
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 0;
}
.static-hero-content {
  /* Padding does the visual centering — no flexbox centering that clips overflow */
  padding: 96px 64px 96px 64px;
  position: relative; z-index: 1;
  background: radial-gradient(ellipse at 20% 60%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.static-hero-video {
  background: #08192e;
  border-left: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}

/* Play button — opens lightbox, no video in the layout */
.play-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.play-btn:hover .play-icon { transform: scale(1.08); background: #e0b84a; }
.play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--navy);
  padding-left: 5px;
  transition: transform 0.2s, background 0.2s;
}
.play-btn span {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}

/* ── VIDEO LIGHTBOX ── */
#video-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
#video-lightbox.open { display: flex; }
#video-lightbox video {
  width: 92vw;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  border-radius: 2px;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}
#video-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 32px; line-height: 1;
  transition: color 0.2s;
}
#video-close:hover { color: var(--gold); }

.video-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
/* Hero headline — shouldn't leads */
.static-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 700; line-height: 1.18;
  color: var(--white); margin-bottom: 22px;
}

/* Subhead — won'ts + I do both */
.static-hero p {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 36px;
}
.static-hero p strong { color: var(--white); font-weight: 500; }
/* Subhead — must come after .static-hero p to win specificity */
.static-hero .hero-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700; line-height: 1.7;
  color: var(--white);
  max-width: 600px; margin-bottom: 36px;
}
.static-hero .hero-subhead strong {
  color: var(--gold); font-weight: 700;
}
.hero-cta-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #e0b84a; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-sub {
  margin-top: 18px; font-size: 12px;
  color: rgba(255,255,255,0.38); line-height: 1.5;
}

/* ── TICKER ── */
.ticker-wrap {
  width: 100%; overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 13px 0;
}
.ticker { display: flex; white-space: nowrap; animation: ticker-scroll 45s linear infinite; }
.ticker-item {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.42); padding: 0 28px;
}
.ticker-item span { color: var(--gold); margin-right: 28px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 88px 48px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.divider { width: 44px; height: 3px; background: var(--gold); margin-bottom: 44px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 136px 48px 72px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; line-height: 1.1;
  color: var(--white); max-width: 680px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.62);
  max-width: 540px; margin-top: 18px; line-height: 1.7;
}

/* ── PROOF ── */
.proof { background: var(--steel); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proof-card {
  background: var(--white); padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: var(--gold); }
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 900;
  color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.proof-number sup { font-size: 18px; }
.proof-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.proof-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── ABOUT ── */
.about { background: var(--navy); }
.about-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 72px; align-items: start;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: 2px; display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative; z-index: 1;
}
.about-photo-frame {
  position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px; pointer-events: none; z-index: 0;
}
.about-body { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.8; }
.about-body p { margin-bottom: 18px; }
.about-body strong { color: var(--white); font-weight: 500; }
.credential-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 14px; align-items: flex-start;
}
.credential-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 9px; flex-shrink: 0;
}
.credential-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.credential-text strong { color: var(--white); display: block; font-size: 14px; }

/* ── TIMELINE ── */
.career { background: var(--off-white); }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px; background: var(--steel);
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -33px; top: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
}
.timeline-dates {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.timeline-role { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.timeline-company { font-size: 13px; color: var(--gray); margin-bottom: 9px; }
.timeline-desc { font-size: 14px; color: var(--gray); line-height: 1.65; max-width: 660px; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  padding: 36px 28px;
  border: 1px solid var(--steel); border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(13,43,85,0.07);
}
.service-icon { font-size: 18px; margin-bottom: 20px; color: var(--gold); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── WORK ── */
.work { background: var(--steel); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.work-card { background: var(--white); border-radius: 2px; overflow: hidden; transition: box-shadow 0.2s; }
.work-card:hover { box-shadow: 0 8px 32px rgba(13,43,85,0.1); }
.work-card-header {
  padding: 16px 24px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.work-card-body { padding: 24px; }
.work-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.work-card-desc { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.work-card-meta { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 32px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.28); }
.testimonial-quote {
  font-size: 14px; font-style: normal;
  color: rgba(255,255,255,0.82); line-height: 1.72; margin-bottom: 22px;
}
.testimonial-quote::before {
  content: '\201C'; color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 28px; line-height: 0;
  vertical-align: -10px; margin-right: 3px;
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── BOOKS ── */
.books { background: var(--steel); }
.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 720px; }
.book-card { background: var(--white); padding: 32px; border-left: 4px solid var(--gold); }
.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.book-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }
.book-endorsement {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--steel);
  font-size: 12px; color: var(--light); font-style: italic;
}

/* ── PORTFOLIO DOWNLOAD BANNER ── */
.portfolio-banner {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 28px 36px; gap: 24px; flex-wrap: wrap;
}
.portfolio-banner-text strong {
  display: block; font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.portfolio-banner-text span { font-size: 13px; color: rgba(255,255,255,0.5); }
.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 12px 24px; border-radius: 2px; white-space: nowrap;
  transition: background 0.2s;
}
.btn-download:hover { background: #e0b84a; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); text-align: center; padding: 112px 48px; }
.cta-section .section-title { color: var(--white); margin-bottom: 14px; }
.cta-section .section-title em { color: var(--gold); font-style: italic; }
.cta-body {
  font-size: 17px; color: rgba(255,255,255,0.62);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.7;
}
.cta-note { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.3); }
.cta-note a { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-left p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 18px; }
.contact-left strong { color: var(--white); }
.contact-options { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.contact-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-option:hover { border-color: rgba(201,168,76,0.35); background: rgba(255,255,255,0.07); }
.contact-option-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.12); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: var(--gold);
}
.contact-option-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.contact-option-text { font-size: 14px; font-weight: 500; color: var(--white); }
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 44px;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.contact-form-wrap > p { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-select option { background: var(--navy); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 2px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.form-submit:hover { background: #e0b84a; }
.form-success { display: none; text-align: center; padding: 32px 0; font-size: 15px; color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #07192c; padding: 36px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap; gap: 16px;
}
.footer-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--white); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .static-hero { grid-template-columns: 1fr 420px; }
}
@media (max-width: 900px) {
  .static-hero { grid-template-columns: 1fr; }
  .static-hero-video { min-height: 300px; border-left: none; border-top: 1px solid rgba(201,168,76,0.12); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .static-hero-content { padding: 56px 24px 56px; }
  .static-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .static-hero p { font-size: 15px; max-width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .page-hero { padding: 106px 24px 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .books-grid { grid-template-columns: 1fr; }
  footer { padding: 28px 24px; }
}
