:root {
  --navy: #1B3A6B;
  --navy-deep: #0F2447;
  --navy-soft: #2A4A7A;
  --gold: #C9A84C;
  --gold-light: #E0C97A;
  --gold-dark: #A88832;
  --cream: #F6F3EB;
  --cream-2: #EDE8DC;
  --white: #FFFFFF;
  --ink: #1A2332;
  --muted: #5B6573;
  --line: rgba(27, 58, 107, 0.12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --shadow: 0 18px 50px rgba(15, 36, 71, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.container-narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
.lead { font-size: 1.15rem; max-width: 42rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(246, 243, 235, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
body.has-hero .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.08);
}
body.has-hero .site-header.is-solid {
  position: sticky;
  background: rgba(15, 36, 71, 0.94);
  border-bottom-color: rgba(201,168,76,0.25);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.08em;
}
body.has-hero .logo-text strong { color: var(--white); }
.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.nav-main { display: flex; align-items: center; gap: 28px; }
.nav-main a { font-size: 0.95rem; color: var(--navy); }
.nav-main a:hover, .nav-main a.active { color: var(--gold-dark); }
.nav-main a.btn-gold { color: var(--navy-deep); background: var(--gold); padding: 10px 18px; }
body.has-hero .nav-main a { color: rgba(255,255,255,0.86); }
body.has-hero .nav-main a:hover,
body.has-hero .nav-main a.active { color: var(--gold); }
body.has-hero .nav-main a.btn-gold { color: var(--navy-deep); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--navy); }
body.has-hero .nav-toggle span { background: var(--white); }

.hero {
  min-height: 92vh;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,168,76,0.16), transparent 45%),
    linear-gradient(165deg, #0F2447 0%, #1B3A6B 58%, #152E54 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 18%;
  width: 520px;
  height: 520px;
  background: url("../assets/logo.svg") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero .lead { color: rgba(246,243,235,0.82); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: rgba(246,243,235,0.7);
  font-size: 0.92rem;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 10px; }
.hero-card p { color: rgba(246,243,235,0.75); margin-bottom: 22px; }
.slot-list { display: grid; gap: 10px; margin-bottom: 22px; }
.slot-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15,36,71,0.35);
  font-size: 0.95rem;
}
.slot-list b { color: var(--gold); font-weight: 500; }

.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(246,243,235,0.75); }
.section-navy .eyebrow { color: var(--gold); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 12px; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}
.trust-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.trust-item p { font-size: 0.9rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.45);
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.4);
}
.card h3 { margin-bottom: 10px; }
.card a.more {
  display: inline-block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
}
.card a.more:hover { color: var(--gold-dark); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.step h3 { margin-bottom: 8px; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.portrait {
  background: var(--navy-deep);
  border-radius: 28px;
  min-height: 420px;
  padding: 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 18px;
  pointer-events: none;
}
.portrait-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}
.portrait .mark {
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 0.85;
  color: rgba(201,168,76,0.22);
  margin-bottom: auto;
}
.portrait h3 { color: var(--white); font-size: 2rem; }
.portrait p { color: rgba(246,243,235,0.75); }
.quote {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--navy-deep);
  margin: 18px 0 22px;
}

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience article {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.audience h3 { margin-bottom: 10px; }

.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; }

.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(246,243,235,0.78); }

.page-hero {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 120px 0 56px;
}
.page-hero h1 { color: var(--white); margin: 10px 0 12px; }
.page-hero p { color: rgba(246,243,235,0.78); max-width: 40rem; }
.breadcrumb { font-size: 0.88rem; color: var(--gold); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }

.expertise {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.expertise:last-child { border-bottom: 0; }
.exp-index { font-family: var(--serif); font-size: 2rem; color: var(--gold); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 500; color: var(--navy); }
input, select, textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(201,168,76,0.45);
  border-color: var(--gold);
}
textarea { min-height: 130px; resize: vertical; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-success, .form-error {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.form-success { background: #EAF5EB; color: #1B6B2E; }
.form-error { background: #FFF3E0; color: #BF360C; }
.contact-side {
  background: var(--cream);
  border-radius: 24px;
  padding: 28px;
}
.contact-side a { color: var(--navy); font-weight: 500; }
.contact-side li { margin: 10px 0; }

.legal h2 { margin: 28px 0 10px; font-size: 1.5rem; }
.legal p, .legal li { margin-bottom: 10px; }
.legal ul { padding-left: 18px; list-style: disc; }
.legal a { color: var(--navy); text-decoration: underline; }
.hero-card .btn { width: 100%; }
.cta-band .btn { flex-shrink: 0; }
.consent input { margin-top: 4px; }
.footer-grid li { margin: 8px 0; }
.expertise h2 { margin-bottom: 12px; }
.contact-side h3 { margin-bottom: 14px; color: var(--navy); }

.site-footer {
  background: var(--navy-deep);
  color: rgba(246,243,235,0.78);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.site-footer h3 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 48px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.motto { font-family: var(--serif); font-style: italic; color: var(--gold-light); }

@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .steps, .trust-bar, .audience, .footer-grid, .form-grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: flex; }
  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px 28px;
    gap: 14px;
  }
  .nav-main.open { display: flex; z-index: 60; }
  body.has-hero .nav-main a, .nav-main a { color: var(--white); }
  .hero { min-height: auto; padding-top: 120px; }
  .hero::after { width: 280px; height: 280px; opacity: 0.05; }
  .expertise { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .logo-text { display: none; }
  .container, .container-narrow { width: calc(100% - 28px); }
  .hero-card, .cta-band, .page-hero { padding: 28px 20px; }
}
