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

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

:root {
  --navy:       #0B1829;
  --navy-mid:   #0D1E36;
  --navy-light: #112540;
  --gold:       #C8A84B;
  --gold-dim:   rgba(200,168,75,0.45);
  --gold-faint: rgba(200,168,75,0.25);
  --white:      #FFFFFF;
  --text:       #C0CFDF;
  --muted:      #7A95BA;
  --steel:      #8FA3C8;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--text); font-family: Georgia, serif; font-size: 17px; line-height: 1.78; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,24,41,0.96);
  border-bottom: 2px solid rgba(200,168,75,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-name { font-family: var(--sans); font-size: 14px; letter-spacing: 4px; color: var(--white); text-transform: uppercase; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--muted); transition: all .3s; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap  { max-width: 980px;  margin: 0 auto; padding: 0 48px; }
.wrap-sm { max-width: 740px; margin: 0 auto; padding: 0 48px; }
.section { padding: 92px 0; }
.section-alt { background: var(--navy-mid); }
.pheader + .section { padding-top: 52px; }
.pheader + .page-nav + .section { padding-top: 52px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.display { font-family: var(--serif); font-size: clamp(30px,5vw,52px); font-weight: 700; color: var(--white); line-height: 1.13; margin-bottom: 24px; }
.lead { font-size: 18px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.body-text p { color: var(--muted); margin-bottom: 20px; line-height: 1.82; }
.body-text p:last-child { margin-bottom: 0; }
.rule { width: 48px; height: 1.5px; background: var(--gold); opacity: .8; margin-bottom: 32px; }
.rule-center { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
h2.section-heading { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
h3.block-title { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 16px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 34px; font-family: var(--sans); font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; transition: all .22s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d4b255; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; gap: 48px; padding: 130px 48px 90px; }
.hero-content { flex: 1.1; max-width: 640px; position: relative; z-index: 1; }
.hero-content .display { margin-bottom: 28px; }
.hero-content .lead { margin-bottom: 48px; }
.hero-logo-wrap { flex: 1; display: flex; justify-content: center; align-items: center; }
.hero-logo-img { width: min(380px, 100%); display: block; }

/* ── PRACTICE SECTION ────────────────────────────────────── */
.practice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.practice-logo-mobile { display: none; }
.practice-logo-desktop { }

/* ── PAGE NAV (on this page) ─────────────────────────────── */
.page-nav { padding: 14px 0; border-bottom: 1px solid var(--gold-faint); background: var(--navy-mid); }
.page-nav .wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-nav-label { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-right: 8px; }
.page-nav a { font-family: var(--sans); font-size: 11px; letter-spacing: 1px; color: var(--gold); text-decoration: none; opacity: .85; transition: opacity .2s; }
.page-nav a:hover { opacity: 1; }
.page-nav-sep { color: var(--muted); opacity: .4; font-size: 11px; }

/* ── CARDS ───────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 24px; margin-top: 52px; }
.card { background: var(--navy-light); border-top: 2px solid var(--gold); padding: 36px 30px; }
.card-num { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; color: var(--gold); opacity: .65; margin-bottom: 20px; text-transform: uppercase; }
.card-title { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .5px; margin-bottom: 14px; }
.card-text { font-size: 15px; color: var(--muted); line-height: 1.72; }

/* ── CARD GROUPS ─────────────────────────────────────────── */
.card-group { margin-top: 52px; }
.card-group-label { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid var(--gold-dim); margin-bottom: 24px; }
.card-group + .card-group { margin-top: 40px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 24px; margin-top: 52px; }
.tcard { border: 1px solid rgba(200,168,75,0.22); padding: 32px; }
.tcard-text { font-style: italic; font-size: 16px; color: var(--text); line-height: 1.78; margin-bottom: 24px; }
.tcard-source { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { border: 1px solid rgba(200,168,75,0.22); padding: 64px 48px; text-align: center; background: var(--navy-light); }
.cta-banner .display { font-size: clamp(24px,3.5vw,36px); margin-bottom: 18px; }
.cta-banner p { color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.pheader { padding: 148px 0 44px; border-bottom: 1.5px solid rgba(200,168,75,0.45); }
.pheader h1 { font-family: var(--serif); font-size: clamp(30px,4.5vw,46px); font-weight: 700; color: var(--white); line-height: 1.15; max-width: 680px; }

/* ── CONTENT BLOCKS ──────────────────────────────────────── */
.cblock { padding: 56px 0; border-bottom: 1px solid rgba(200,168,75,0.25); }
.cblock:last-child { border-bottom: none; }
.cblock-grid { display: grid; grid-template-columns: 200px 1fr; gap: 48px; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.steps { margin-top: 36px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(200,168,75,0.08); }
.step:last-child { border-bottom: none; }
.step-n { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2px; color: var(--gold); opacity: .7; padding-top: 4px; text-transform: uppercase; }
.step h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: .4px; }
.step p { font-size: 15.5px; color: var(--muted); line-height: 1.72; }

/* ── BULLET LIST ─────────────────────────────────────────── */
.bullet-list { list-style: none; padding: 0; margin: 12px 0 0; }
.bullet-list li { color: var(--muted); font-size: 16px; line-height: 1.72; padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid rgba(200,168,75,0.08); }
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .55; }
.important-note { background: rgba(200,168,75,0.07); border-left: 2px solid var(--gold); padding: 14px 18px; font-size: 15px; color: var(--muted); margin-top: 14px; line-height: 1.68; }

/* ── FEE CARDS ───────────────────────────────────────────── */
.fee-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.fee-card { border: 1px solid rgba(200,168,75,0.22); padding: 40px 36px; }
.fee-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.fee-title { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 14px; }
.fee-amount { font-family: var(--sans); font-size: 34px; font-weight: 700; color: var(--gold); margin-bottom: 22px; letter-spacing: -1px; }
.fee-list { list-style: none; }
.fee-list li { font-size: 15px; color: var(--muted); padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid rgba(200,168,75,0.08); }
.fee-list li:last-child { border-bottom: none; }
.fee-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .5; }

/* ── BOOK CTA ────────────────────────────────────────────── */
.book-cta { text-align: center; margin-top: 44px; padding-top: 44px; border-top: 1px solid rgba(200,168,75,0.15); }

/* ── BOOKLET PAGE ────────────────────────────────────────── */
.booklet-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; margin-top: 44px; }
.booklet-sticky { position: sticky; top: 90px; }
.booklet-img { width: 100%; border: 1px solid rgba(200,168,75,0.22); display: block; }
.booklet-dl { margin-top: 24px; display: block; width: 100%; text-align: center; }
.chapters { margin-top: 8px; }
.chapter { padding: 20px 0; border-bottom: 1px solid rgba(200,168,75,0.08); }
.chapter:first-child { padding-top: 0; }
.chapter:last-child { border-bottom: none; }
.chapter-title { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: .4px; margin-bottom: 8px; }
.chapter-desc { font-size: 14px; color: var(--muted); line-height: 1.68; padding-left: 14px; border-left: 1.5px solid rgba(200,168,75,0.22); }

/* ── CONTACT & PAYMENT ───────────────────────────────────── */
.contact-methods { display: grid; gap: 14px; margin-bottom: 64px; }
.cmethod { display: flex; align-items: center; gap: 28px; padding: 26px 32px; background: var(--navy-light); }
.cmethod-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
.cmethod-val { font-size: 18px; color: var(--white); }
.cmethod-val a { color: var(--white); text-decoration: none; transition: color .2s; }
.cmethod-val a:hover { color: var(--gold); }
.cmethod-val.sans-bold { font-family: var(--sans); font-weight: 700; }
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; margin-top: 36px; }
.pay-card { border: 1px solid rgba(200,168,75,0.22); padding: 40px 32px; text-align: center; }
.pay-card h3 { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.pay-note { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 12px; }
.wise-box { background: var(--navy-light); padding: 32px; text-align: left; }
.wise-box h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; color: var(--steel); text-transform: uppercase; margin-bottom: 10px; }
.wise-box p { font-size: 14.5px; color: var(--muted); font-style: italic; line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #060d19; border-top: 1px solid rgba(200,168,75,.1); padding: 48px 0; }
.footer-inner { max-width: 980px; margin: 0 auto; padding: 0 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.footer-brand { font-family: var(--sans); font-size: 12px; letter-spacing: 4px; color: var(--steel); text-transform: uppercase; }
.footer-contact { font-family: var(--sans); font-size: 12px; color: var(--muted); text-align: center; line-height: 1.9; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-copy { font-family: var(--sans); font-size: 11px; color: var(--muted); opacity: .4; }

/* ── ALL MOBILE (portrait + landscape) ───────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #060d19; padding: 28px 24px; gap: 22px; border-bottom: 1px solid rgba(200,168,75,0.22); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .wrap, .wrap-sm { padding: 0 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cmethod { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cblock-grid { grid-template-columns: 1fr; gap: 8px; }
  .booklet-layout { grid-template-columns: 1fr; }
  .booklet-sticky { position: static; max-width: 260px; margin: 0 auto; }
  .booklet-dl { max-width: 260px; margin: 24px auto 0; }
}

/* ── PORTRAIT MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) and (orientation: portrait) {
  .hero { flex-direction: column; padding: 120px 24px 72px; gap: 0; }
  .hero-logo-wrap { display: none; }
  .section { padding: 60px 0; }
  .pheader { padding: 110px 0 36px; }
  .pheader + .section { padding-top: 36px; }
  .pheader + .page-nav + .section { padding-top: 36px; }
  .cta-banner { padding: 48px 24px; }
  .btn-row { flex-direction: column; align-items: center; }
  .btn { text-align: center; width: 100%; max-width: 320px; white-space: nowrap; }
  .practice-grid { display: block; }
  .practice-text { overflow: hidden; }
  .practice-logo-mobile { display: block; float: right; width: 110px; height: 110px; margin: 4px 0 12px 16px; }
  .practice-logo-desktop { display: none; }
  .read-more-wrap { text-align: center; }
}

/* ── LANDSCAPE MOBILE ────────────────────────────────────── */
@media (orientation: landscape) and (max-width: 900px) {
  .hero { flex-direction: row; min-height: auto; padding: 88px 24px 44px; gap: 32px; align-items: center; }
  .hero-logo-wrap { display: flex; flex: 1; justify-content: center; align-items: center; }
  .hero-logo-img { width: min(200px, 100%); }
  .section { padding: 52px 0; }
  .pheader { padding: 90px 0 28px; }
  .pheader + .section { padding-top: 32px; }
  .pheader + .page-nav + .section { padding-top: 32px; }
  .btn-row { flex-direction: row !important; justify-content: center !important; gap: 12px; align-items: center; }
  .btn { text-align: center !important; width: auto !important; min-width: 160px; max-width: 260px; white-space: nowrap; }
  .read-more-wrap { text-align: center; }
  .cta-banner { padding: 48px 24px; }
}
