:root {
  --navy: #102a46;
  --navy-deep: #0a1d31;
  --navy-soft: #244b70;
  --blue-mist: #dce6ec;
  --linen: #f5efe5;
  --linen-deep: #e6dac8;
  --paper: #fcfaf6;
  --gold: #b99552;
  --gold-light: #dcc99b;
  --ink: #18212a;
  --muted: #61707b;
  --white: #fffdfa;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(15, 37, 57, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -4rem;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--navy);
  border-radius: 0 0 .6rem .6rem;
}
.skip-link:focus { top: 0; }

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  color: var(--white);
}
.nav-shell {
  width: min(1180px, calc(100% - 3rem));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.personal-logo-window {
  position: relative;
  width: 148px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(220,201,155,.45);
  border-radius: 2px;
  background: #c7a67f;
}
.personal-logo-window img {
  position: absolute;
  width: 200%;
  max-width: none;
  height: auto;
  left: 0;
  top: 0;
  transform: translate(-25%, -27%);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-light);
  border-radius: 50% 50% 48% 52%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: -.05em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy b { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.brand-copy small { margin-top: .3rem; color: rgba(255,255,255,.66); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: rgba(255,255,255,.76); font-size: .82rem; letter-spacing: .04em; text-decoration: none; }
nav a:hover { color: var(--white); }
.nav-cta {
  border: 1px solid rgba(220,201,155,.75);
  border-radius: 999px;
  padding: .65rem 1rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.nav-cta:hover { background: rgba(255,255,255,.08); }
.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .7fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  overflow: hidden;
  padding: 150px max(5vw, calc((100vw - 1180px) / 2)) 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 30%, rgba(70,108,138,.45), transparent 31%),
    linear-gradient(135deg, #0b2239 0%, #153b5d 52%, #0d2741 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(115deg, transparent 49.8%, rgba(255,255,255,.16) 50%, transparent 50.2%);
  background-size: 250px 250px;
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; right: -160px; top: 40px; border: 1px solid rgba(220,201,155,.18); }
.hero-glow-two { width: 640px; height: 640px; right: -230px; top: -30px; border: 1px solid rgba(220,201,155,.1); }
.hero-content { max-width: 720px; }
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.45rem, 6.2vw, 6.6rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}
h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead {
  max-width: 620px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,.74);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #10253b; background: var(--gold-light); box-shadow: 0 12px 32px rgba(6,18,29,.18); }
.button-primary:hover { background: #ead9ad; box-shadow: 0 16px 38px rgba(6,18,29,.24); }
.button-quiet { color: var(--white); border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .65rem 1.6rem; margin-top: 3rem; color: rgba(255,255,255,.52); font-size: .72rem; }
.hero-proof span { position: relative; }
.hero-proof span:not(:last-child)::after { content: "·"; position: absolute; right: -.9rem; color: var(--gold); }
.hero-card {
  position: relative;
  max-width: 420px;
  justify-self: end;
  padding: clamp(2rem, 3.8vw, 3.3rem);
  border: 1px solid rgba(220,201,155,.33);
  border-radius: 50% 50% 8px 8px / 18% 18% 8px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: 0 32px 80px rgba(4,16,27,.28);
  backdrop-filter: blur(9px);
  text-align: center;
}
.hero-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(220,201,155,.12); border-radius: inherit; pointer-events: none; }
.method-logo-window {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(220,201,155,.75);
  border-radius: 50%;
  background: var(--linen);
  box-shadow: 0 12px 28px rgba(3,15,26,.22);
}
.method-logo-window img {
  position: absolute;
  width: 300%;
  max-width: none;
  height: auto;
  left: 0;
  top: 0;
  transform: translateX(-33.333%);
}
.method-signature { margin: .85rem 0 0; color: var(--gold-light); font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.ornament { display: flex; align-items: center; justify-content: center; gap: .65rem; color: var(--gold-light); }
.ornament span { width: 28px; height: 1px; background: currentColor; opacity: .5; }
.ornament b { font-size: .65rem; }
.quote { margin: 2rem 0 .45rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.6vw, 2.25rem); font-style: italic; line-height: 1.25; }
.verse { margin: 0; color: var(--gold-light); font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; }
.card-divider { width: 36px; height: 1px; margin: 2rem auto; background: var(--gold); }
.reflection { margin: 0; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: 1rem; line-height: 1.65; }
.text-link { margin-top: 1.8rem; border: 0; padding: .3rem 0; color: var(--gold-light); background: transparent; font-size: .75rem; font-weight: 700; letter-spacing: .05em; cursor: pointer; }
.text-link:hover { color: var(--white); }

.method-section { padding: clamp(5.5rem, 10vw, 9rem) max(5vw, calc((100vw - 1180px) / 2)); background: var(--linen); }
.section-heading { display: grid; grid-template-columns: .55fr 1.15fr .8fr; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .map-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.1vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-heading > p:last-child, .map-intro > p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; }
.pillars { display: grid; grid-template-columns: repeat(10, 1fr); gap: 1rem; }
.pillar {
  grid-column: span 2;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid rgba(16,42,70,.1);
  border-radius: 2px;
  background: rgba(255,253,250,.58);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.pillar:hover { transform: translateY(-5px); background: var(--white); box-shadow: 0 22px 50px rgba(40,50,60,.1); }
.pillar.featured { color: var(--white); border-color: var(--navy); background: var(--navy); }
.pillar-number { color: var(--gold); font-size: .66rem; letter-spacing: .16em; }
.pillar-symbol { display: grid; place-items: center; width: 42px; height: 42px; margin: 2rem 0 auto; border: 1px solid var(--gold-light); border-radius: 50%; color: var(--gold); font-size: 1rem; }
.pillar h3 { margin: 1.4rem 0 .75rem; color: var(--navy); font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.pillar.featured h3 { color: var(--white); }
.pillar p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.62; }
.pillar.featured p { color: rgba(255,255,255,.65); }
.for-whom { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; margin-top: 5rem; padding: 3.5rem; border-top: 1px solid rgba(16,42,70,.15); border-bottom: 1px solid rgba(16,42,70,.15); }
.for-whom h3 { max-width: 420px; margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 400; line-height: 1.2; }
.for-whom ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin: 0; padding: 0; list-style: none; }
.for-whom li { position: relative; padding-left: 1.35rem; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.for-whom li::before { content: "✦"; position: absolute; left: 0; top: .1rem; color: var(--gold); font-size: .55rem; }

.map-section {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: 760px;
  padding: clamp(5.5rem, 10vw, 9rem) max(5vw, calc((100vw - 1100px) / 2));
  background:
    linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)),
    repeating-linear-gradient(45deg, var(--linen) 0, var(--linen) 1px, transparent 1px, transparent 8px);
}
.map-intro > p { max-width: 520px; margin-top: 1.6rem; }
.privacy-note { display: flex; gap: .7rem; align-items: center; margin-top: 2rem; color: #76828a; font-size: .74rem; }
.privacy-note span { color: var(--gold); }
.map-card {
  min-height: 535px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(185,149,82,.26);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-start { max-width: 420px; margin: 0 auto; text-align: center; }
.compass { width: 92px; height: 92px; display: grid; place-items: center; margin: 0 auto 2rem; border: 1px solid var(--gold); border-radius: 50%; transform: rotate(45deg); }
.compass::before { content: ""; position: absolute; width: 74px; height: 74px; border: 1px solid var(--gold-light); border-radius: 50%; }
.compass span { color: var(--navy); font-family: var(--serif); font-size: 1.15rem; transform: rotate(-45deg); }
.map-start h3, .map-result h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 400; line-height: 1.1; }
.map-start > p { margin: 1rem 0 2rem; color: var(--muted); font-family: var(--serif); line-height: 1.6; }
.map-start small { display: block; margin-top: 1rem; color: #89939a; }
.quiz-topline { display: flex; justify-content: space-between; align-items: center; color: #7a858d; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.restart-link, .back-button { border: 0; color: var(--navy-soft); background: transparent; cursor: pointer; }
.restart-link { padding: .4rem 0; font-size: .67rem; text-decoration: underline; text-underline-offset: 3px; }
.progress-track { width: 100%; height: 3px; margin: 1rem 0 2.5rem; overflow: hidden; background: #e8e5df; }
.progress-track span { display: block; width: 20%; height: 100%; background: var(--gold); transition: width .35s ease; }
.question-area { margin: 0 0 .8rem; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.map-quiz h3 { max-width: 540px; margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(1.55rem, 2.8vw, 2.25rem); font-weight: 400; line-height: 1.25; }
.answer-list { display: grid; gap: .7rem; margin-top: 2rem; }
.answer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e1ded8;
  border-radius: 3px;
  padding: 1rem 1.1rem;
  color: #41505d;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.answer:hover, .answer:focus-visible { border-color: var(--gold); background: #fcf8ef; transform: translateX(3px); outline: none; }
.answer-dot { flex: 0 0 auto; width: 18px; height: 18px; border: 1px solid #b8b2a8; border-radius: 50%; }
.back-button { margin-top: 1.3rem; padding: .5rem 0; color: #74818a; font-size: .75rem; }
.map-result { max-width: 480px; margin: 0 auto; text-align: center; }
.result-icon, .modal-symbol { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 1.7rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.map-result > p:not(.eyebrow) { margin: 1.1rem 0 1.6rem; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; line-height: 1.6; }
.result-practice { margin: 0 0 1.7rem; padding: 1.2rem; border-left: 2px solid var(--gold); background: var(--linen); text-align: left; }
.result-practice span { color: var(--gold); font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.result-practice p { margin: .5rem 0 0; color: var(--navy); font-size: .85rem; line-height: 1.5; }
.centered { display: block; margin: 1.2rem auto 0; color: #71808a; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; padding: 2.5rem max(5vw, calc((100vw - 1180px) / 2)); color: rgba(255,255,255,.62); background: var(--navy-deep); font-size: .75rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand > div { display: grid; }
.footer-brand b { color: var(--white); font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.footer-brand small { margin-top: .25rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-logo { width: 110px; height: 40px; }
footer > p { text-align: center; }
footer > small { text-align: right; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 1.2rem; background: rgba(6,18,30,.76); backdrop-filter: blur(5px); }
.modal { position: relative; width: min(510px, 100%); padding: clamp(2rem, 5vw, 3.5rem); border: 1px solid var(--gold-light); background: var(--white); box-shadow: 0 32px 100px rgba(0,0,0,.35); text-align: center; }
.modal-close { position: absolute; top: .8rem; right: .9rem; border: 0; padding: .35rem .55rem; color: #6f7b83; background: transparent; font-size: 1.6rem; cursor: pointer; }
.modal h2 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 400; line-height: 1.1; }
.modal > p:not(.eyebrow) { margin: 1.2rem 0 1.8rem; color: var(--muted); font-family: var(--serif); line-height: 1.6; }
.modal form { display: grid; gap: .55rem; margin-top: 1.5rem; text-align: left; }
.modal form > label:not(.consent-row) { margin-top: .45rem; color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .025em; }
.modal input[type="text"], .modal input[type="tel"], .modal input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d4cc;
  border-radius: 3px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.modal input::placeholder { color: #9aa2a8; }
.modal input:focus { border-color: var(--gold); outline: 2px solid rgba(185,149,82,.15); }
.consent-row { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: .7rem; margin: .9rem 0 .55rem; color: #68747c; font-size: .68rem; line-height: 1.45; cursor: pointer; }
.consent-row input { width: 17px; height: 17px; margin: .05rem 0 0; accent-color: var(--navy); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin: 0 0 .4rem !important; padding: .7rem .8rem; border-left: 2px solid #9d3f3f; color: #7f3030 !important; background: #fff1ef; font-family: var(--sans) !important; font-size: .72rem; line-height: 1.45 !important; }
.form-security { display: block; margin-top: .9rem; color: #89939a; font-size: .63rem; line-height: 1.45; }
.lead-success { text-align: center; }
.lead-success > p:not(.eyebrow) { margin: 1.2rem 0 1.8rem; color: var(--muted); font-family: var(--serif); line-height: 1.6; }
.button[disabled] { opacity: .65; cursor: wait; transform: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr .62fr; gap: 2.5rem; }
  .hero-card { padding: 2rem 1.6rem; }
  .section-heading { grid-template-columns: .4fr 1fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .pillars { grid-template-columns: repeat(6, 1fr); }
  .pillar { grid-column: span 2; }
  .pillar:nth-last-child(-n+2) { grid-column: span 3; }
}

@media (max-width: 760px) {
  .nav-shell { width: calc(100% - 2rem); height: 74px; }
  .personal-logo-window { width: 112px; height: 42px; }
  .brand-copy { display: none; }
  .menu-button { width: 42px; height: 42px; display: grid; align-content: center; gap: 5px; border: 0; padding: 10px; background: transparent; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 22px; height: 1px; background: var(--white); }
  nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: .8rem;
    border: 1px solid rgba(220,201,155,.35);
    background: rgba(10,29,49,.97);
    box-shadow: 0 15px 40px rgba(0,0,0,.22);
  }
  nav.open { display: grid; }
  nav a, .nav-cta { width: 100%; padding: .9rem; text-align: left; }
  .nav-cta { border-radius: 4px; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 3.5rem; padding: 120px 1.25rem 4rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero-lead { font-size: 1.1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: .6rem; }
  .hero-proof span::after { display: none; }
  .hero-card { width: 100%; max-width: none; justify-self: stretch; }
  .method-section, .map-section { padding: 5.2rem 1.25rem; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 1.4rem; }
  .pillars { display: grid; grid-template-columns: 1fr; }
  .pillar, .pillar:nth-last-child(-n+2) { grid-column: auto; min-height: 255px; }
  .for-whom { grid-template-columns: 1fr; gap: 2.2rem; margin-top: 3.5rem; padding: 2.5rem 0; }
  .for-whom ul { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-card { min-height: 510px; padding: 2rem 1.25rem; }
  .modal { max-height: calc(100vh - 2rem); overflow-y: auto; padding: 2.3rem 1.3rem 1.6rem; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer > p, footer > small { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
