:root {
  --navy: #071522;
  --navy2: #0b2033;
  --deep: #050b12;
  --cream: #f4f1eb;
  --white: #ffffff;
  --muted: #b9c4d2;
  --gold: #c8a15a;
  --gold2: #e1c078;
  --line: rgba(255,255,255,.14);
  --ink: #101820;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--white); font-family: Inter, Arial, sans-serif; line-height: 1.55; overflow-x: hidden; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 600; letter-spacing: -.03em; margin: 0; }
p { margin: 0; color: var(--muted); }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(7,21,34,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand-lockup { display: flex; align-items: center; gap: 14px; z-index: 101; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-name { font-weight: 800; letter-spacing: .18em; font-size: 16px; }
.brand-sub { font-size: 11px; letter-spacing: .28em; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.nav-links a { color: #dbe4ee; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold2); }
.nav-cta { border: 1px solid rgba(200,161,90,.5); padding: 10px 16px; border-radius: 999px; color: var(--gold2) !important; font-weight: 800; }

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 100px 6vw 80px;
  background: radial-gradient(circle at 80% 16%, rgba(200,161,90,.14), transparent 34%), linear-gradient(135deg, #071522 0%, #06111c 55%, #04090f 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-container { max-width: 1320px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .28em; font-size: 12px; font-weight: 800; margin-bottom: 18px; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero h1 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
.gold-text { color: var(--gold2); display: block; margin-bottom: 0.15em; }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: #eef3f8;
  max-width: 540px;
  line-height: 1.5;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visual-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.hero-graphic {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mini-proof {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(5,11,18,0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 10px;
}
.proof-box { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.proof-box:last-child { border-right: 0; }
.proof-box strong { display: block; color: var(--gold2); font-size: 18px; margin-bottom: 2px; }
.proof-box span { display: block; color: #e8edf4; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.principle-card {
  border: 1px solid rgba(200,161,90,.4);
  border-radius: 18px;
  background: rgba(5,11,18,.8);
  padding: 22px 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(6px);
}
.principle-card .eyebrow { margin-bottom: 10px; font-size: 11px; }
.principle-card p { font-family: Georgia, 'Times New Roman', serif; color: #fff; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.3; letter-spacing: -.01em; }

/* ===== SECTIONS ===== */
.section { padding: 90px 6vw; }
.section.alt { background: var(--cream); color: var(--ink); }
.section.alt p { color: #344557; }
.section-head { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.section-head h2, .case-study h2, .contact-card h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1.03; }
.section-head p { margin-top: 17px; font-size: 18px; color: #d3dbe6; }
.section.alt .section-head p { color: #344557; }

.video-frame { max-width: 990px; margin: 0 auto; padding: 14px; border: 1px solid rgba(200,161,90,.34); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: 0 35px 90px rgba(0,0,0,.36); }
.video-frame iframe { width: 100%; aspect-ratio: 16/9; height: auto; border: 0; border-radius: 18px; display: block; }

.pathways { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.path-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 34px; }
.path-card h3 { font-size: 34px; margin-bottom: 14px; }
.path-card p { font-size: 17px; margin-bottom: 24px; }
.path-card a { color: var(--gold2); font-weight: 900; }

.case-study { background: var(--cream); color: var(--ink); padding: 94px 6vw; }
.case-study p { color: #314050; }
.case-label { color: #8d6b2d; text-transform: uppercase; letter-spacing: .28em; font-size: 12px; font-weight: 900; margin-bottom: 16px; text-align: center; }
.case-study h2 { max-width: 1050px; margin: 0 auto; text-align: center; }
.case-intro { max-width: 820px; margin: 24px auto 50px; text-align: center; font-size: 18px; }
.case-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case-grid article { background: #fff; padding: 28px; border-radius: 24px; border: 1px solid rgba(7,21,34,.08); box-shadow: 0 20px 48px rgba(7,21,34,.10); }
.case-grid span { color: var(--gold); font-weight: 900; letter-spacing: .14em; }
.case-grid h3 { font-size: 28px; margin: 18px 0 12px; }

.deliverables { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deliverable-card { background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 28px; padding: 30px; min-height: 205px; }
.deliverable-card h3 { font-size: 29px; margin-bottom: 14px; }

.fit-band { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card { background: #fff; color: var(--ink); border-radius: 28px; padding: 34px; border: 1px solid rgba(7,21,34,.08); }
.fit-card.dark { background: #071522; color: #ffffff; border-color: rgba(200,161,90,.3); }
.fit-card.dark p { color: #ffffff; }
.fit-card p { font-size: 18px; margin-top: 14px; }
.fit-card h3 { font-size: 36px; }

.steps { max-width: 1000px; margin: 0 auto; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 22px; background: #fff; color: var(--ink); border-radius: 28px; padding: 30px; }
.step p { color: #344557; margin-top: 10px; font-size: 17px; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--navy2); color: #fff; display: grid; place-items: center; font-weight: 900; }

/* ===== CONTACT ===== */
.contact-section { padding: 90px 6vw; }
.contact-card { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.55fr 1fr; gap: 44px; background: #fff; color: var(--ink); border-radius: 34px; padding: 46px; }
.contact-card p { color: #334456; }
.contact-left { padding-right: 34px; border-right: 1px solid rgba(7,21,34,.12); }
.contact-left > p { font-size: 19px; line-height: 1.45; margin: 18px 0 30px; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea { width: 100%; border: 1px solid rgba(7,21,34,.15); border-radius: 14px; padding: 14px 16px; font-size: 15px; font-family: inherit; }
textarea { resize: vertical; }
button { border: 0; border-radius: 999px; background: var(--gold); color: #081522; padding: 16px 22px; font-weight: 900; cursor: pointer; font-size: 16px; }
.privacy-note, .fit-note { text-align: center; font-size: 14px !important; color: #4d5a68 !important; margin-top: 10px !important; }
.contact-right { display: grid; gap: 20px; }
.side-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(200,161,90,.24); }
.side-icon { width: 40px; height: 40px; border: 2px solid var(--gold); color: var(--gold); border-radius: 50%; display: grid; place-items: center; font-weight: 900; }
.side-item h3 { font-family: Inter, Arial, sans-serif; font-size: 21px; letter-spacing: -.02em; margin: 0 0 6px; }
.side-item p { font-size: 16px; }
.quote-card { background: #f4f1eb; border-radius: 18px; padding: 26px; }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 58px; line-height: .6; }
.quote-card p { font-style: italic; color: #1b2b3b; margin: 10px 0 18px; }
.quote-name { text-transform: uppercase; letter-spacing: .1em; font-weight: 900; color: #071522; }
.quote-title { color: #4b5968; font-size: 14px; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--line); text-align: center; padding: 28px 20px; }
footer p { font-size: 13px; color: #8f9aa8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid var(--line);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 16px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(32px, 7vw, 44px); }
  .hero { padding: 60px 5vw; }
  .mini-proof { position: static; grid-template-columns: 1fr 1fr 1fr; background: rgba(255,255,255,0.05); margin-top: 0; border-radius: 0 0 20px 20px; padding: 14px 10px; }
  .visual-container { border-radius: 20px 20px 0 0; }
  .case-grid, .deliverables, .pathways, .fit-band, .contact-card { grid-template-columns: 1fr; }
  .contact-left { border-right: 0; padding-right: 0; }
  .section, .contact-section, .case-study { padding: 70px 5vw; }
  .site-header { padding: 14px 5vw; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .mini-proof { grid-template-columns: 1fr 1fr 1fr; }
  .contact-card { padding: 26px; }
  .principle-card p { font-size: 16px; }
}
