/* Shared styles — byte-identical to the approved export.
   These 216 rule blocks appear in every page of the original build.
   Order preserved; nothing rewritten. */

:root{
    --cream:#FAF8F3;
    --cream-deep:#EFEADF;
    --ink:#1A1A1A;
    --ink-mid:#5A554C;
    --gold:#C39A3F;
    --gold-bright:#E4C271;
    --gold-deep:#8C6A1F;
    --white:#FFFFFF;
    --line:#E7E1D0;
    --shadow:0 18px 50px -22px rgba(35,30,15,.42);
    --shadow-sm:0 8px 24px -14px rgba(35,30,15,.38);
    --serif:'Poppins',-apple-system,'Segoe UI',sans-serif;
    --sans:'Poppins',-apple-system,'Segoe UI',sans-serif;
  }

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

html{scroll-behavior:smooth}

body{
    font-family:var(--sans);
    background:var(--cream);
    color:var(--ink);
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

h1,h2{font-family:var(--serif);font-weight:500;line-height:1.08;letter-spacing:-.032em}

h3,h4{font-family:var(--serif);font-weight:700;line-height:1.18;letter-spacing:-.02em}

a{color:inherit;text-decoration:none}

img{display:block;max-width:100%}

.wrap{max-width:1200px;margin:0 auto;padding:0 32px}

em{font-style:italic;color:var(--gold-deep)}

/* ---------- buttons ---------- */
  .btn{
    display:inline-flex;align-items:center;gap:9px;
    font-family:var(--sans);font-weight:600;font-size:15px;white-space:nowrap;
    padding:15px 26px;border-radius:999px;cursor:pointer;border:none;
    transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  }

.btn-gold{
    background:linear-gradient(135deg,var(--gold-bright),var(--gold));
    color:#241a05;box-shadow:0 12px 26px -12px rgba(190,140,46,.85);
  }

.btn-gold:hover{transform:translateY(-3px);box-shadow:0 18px 34px -12px rgba(190,140,46,.95)}

.btn-ink{background:var(--ink);color:var(--cream)}

.btn-ink:hover{transform:translateY(-3px)}

.btn-ghost{background:transparent;color:var(--ink);border:1.5px solid var(--ink)}

.btn-ghost:hover{background:var(--ink);color:var(--cream)}

.btn svg{width:16px;height:16px}

.eyebrow{
    font-size:12.5px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
    color:var(--gold-deep);display:inline-flex;align-items:center;gap:9px;
  }

.eyebrow::before{content:"";width:26px;height:1.5px;background:var(--gold)}

/* ---------- header ---------- */
  header{
    position:sticky;top:0;z-index:80;
    background:#000;backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }

.nav{display:flex;align-items:center;justify-content:space-between;gap:32px;height:78px}

.logo{display:flex;align-items:center}

.logo img{height:60px;width:auto;max-width:280px;object-fit:contain;display:block}

.nav-links{display:flex;gap:24px;align-items:center}

.nav-links a{font-size:14.5px;font-weight:500;color:rgba(255,255,255,.78);transition:color .2s;white-space:nowrap}

.nav-links a:hover{color:#fff}

.nav-cta{display:flex;align-items:center;gap:16px}

.nav-phone{font-size:14.5px;font-weight:600;display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.88);white-space:nowrap}

.nav-phone svg{width:15px;height:15px;color:var(--gold-bright)}

.burger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:6px}

.burger span{width:24px;height:2px;background:#fff;border-radius:2px;transition:.3s}

/* ---------- hero ---------- */
  .hero{position:relative;padding:120px 0 130px;overflow:hidden;background:#0e0e0e;min-height:560px}

.hero-bg{position:absolute;top:-12%;left:0;right:0;height:124%;z-index:0;will-change:transform}

.hero-bg img{width:100%;height:100%;object-fit:cover;display:block}

.hero-grid{
    position:relative;z-index:2;display:grid;
    grid-template-columns:1.05fr .95fr;gap:54px;align-items:center;
  }

.hero h1{font-size:clamp(44px,5.6vw,68px);margin:22px 0 20px;color:#fff}

.hero h1 em{color:var(--gold-bright)}

.hero p.lead{font-size:18px;color:rgba(255,255,255,.85);max-width:500px;margin-bottom:0}

/* ---------- path selector ---------- */
  .selector{
    background:var(--white);border-radius:24px;padding:32px;
    box-shadow:var(--shadow);border:1px solid var(--line);position:relative;
  }

.selector-head{display:flex;align-items:center;gap:12px;margin-bottom:6px}

.step-dots{display:flex;gap:6px;margin-left:auto}

.step-dots i{width:7px;height:7px;border-radius:50%;background:var(--line);transition:.3s}

.step-dots i.on{background:var(--gold);width:20px;border-radius:4px}

.selector h3{font-size:22px;margin-bottom:4px}

.selector .sub{font-size:14px;color:var(--ink-mid);margin-bottom:22px}

.step{display:none;animation:fade .4s ease}

.step.active{display:block}

@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.choice-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

.choice{
    text-align:left;background:var(--cream);border:1.5px solid var(--line);
    border-radius:16px;padding:20px 18px;cursor:pointer;transition:.22s;
  }

.choice:hover{border-color:var(--gold);transform:translateY(-3px);box-shadow:var(--shadow-sm)}

.choice .ic{width:40px;height:40px;border-radius:11px;background:linear-gradient(135deg,var(--gold-bright),var(--gold));display:flex;align-items:center;justify-content:center;margin-bottom:12px}

.choice .ic svg{width:21px;height:21px;color:#fff}

.choice b{font-family:var(--serif);font-size:17px;font-weight:600;display:block}

.choice span{font-size:12.5px;color:var(--ink-mid)}

.chip-row{display:flex;flex-wrap:wrap;gap:10px}

.chip{
    background:var(--cream);border:1.5px solid var(--line);border-radius:12px;
    padding:13px 20px;cursor:pointer;font-weight:600;font-size:14.5px;transition:.2s;
    display:flex;align-items:center;gap:8px;
  }

.chip:hover{border-color:var(--gold);background:#fff;transform:translateY(-2px)}

.chip.soon{opacity:.5;cursor:not-allowed}

.chip.soon:hover{transform:none;border-color:var(--line)}

.chip small{font-size:10px;font-weight:700;letter-spacing:.06em;color:var(--gold-deep)}

.back-link{
    background:none;border:none;cursor:pointer;font-family:var(--sans);
    font-size:13px;font-weight:600;color:var(--ink-mid);display:flex;align-items:center;
    gap:5px;margin-bottom:16px;padding:0;
  }

.back-link:hover{color:var(--ink)}

.back-link svg{width:13px;height:13px}

/* result */
  .result-tag{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-deep)}

.result h4{font-size:24px;margin:7px 0 10px}

.result p{font-size:14px;color:var(--ink-mid);margin-bottom:16px}

.crit{list-style:none;margin-bottom:20px}

.crit li{font-size:13.5px;display:flex;gap:9px;padding:6px 0;border-bottom:1px dashed var(--line)}

.crit li:last-child{border:none}

.crit svg{width:16px;height:16px;color:var(--gold);flex:none;margin-top:2px}

.result-cta{display:flex;gap:10px;flex-wrap:wrap}

.result-cta .btn{font-size:14px;padding:13px 22px}

/* ---------- generic section ---------- */
  section{position:relative}

.band{padding:52px 0}

.band-cream{background:var(--cream-deep)}

.band-ink{background:var(--ink);color:var(--cream)}

.sec-head{max-width:640px;margin-bottom:56px}

.sec-head.center{margin-left:auto;margin-right:auto;text-align:center}

.sec-head h2{font-size:clamp(32px,4vw,46px);margin:14px 0 14px}

.sec-head p{font-size:16.5px;color:var(--ink-mid)}

.band-ink .sec-head p{color:#bdb5a4}

.band-ink .eyebrow{color:var(--gold-bright)}

/* trust strip */
  .trust{background:var(--white);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}

.trust-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:28px;padding:36px 0}

.trust-item{display:flex;align-items:center;justify-content:center;gap:14px}

.trust-item .tn{font-family:var(--serif);font-size:32px;font-weight:700;color:var(--gold-deep);letter-spacing:-.02em;line-height:1}

.trust-item .tl{font-size:13px;color:var(--ink-mid);font-weight:500;line-height:1.35;max-width:160px}

/* two paths */
  .paths{display:grid;grid-template-columns:1fr 1fr;gap:26px}

.path-card{
    background:var(--white);border-radius:22px;overflow:hidden;
    border:1px solid var(--line);box-shadow:var(--shadow-sm);transition:.3s;display:flex;flex-direction:column;
  }

.path-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}

.path-img{height:208px;position:relative;overflow:hidden}

.path-img img{width:100%;height:100%;object-fit:cover;transition:.5s}

.path-card:hover .path-img img{transform:scale(1.06)}

.path-img .badge{
    position:absolute;left:16px;top:16px;background:var(--white);
    padding:6px 13px;border-radius:999px;font-size:12px;font-weight:700;
    letter-spacing:.04em;
  }

.path-body{padding:26px;display:flex;flex-direction:column;flex:1}

.path-body h3{font-size:23px;margin-bottom:9px}

.path-body .pp{font-size:14.5px;color:var(--ink-mid);margin-bottom:16px}

.path-list{list-style:none;margin-bottom:20px}

.path-list li{font-size:13.5px;padding:5px 0;display:flex;gap:9px}

.path-list svg{width:15px;height:15px;color:var(--gold);flex:none;margin-top:3px}

.path-body .btn{margin-top:auto;align-self:flex-start}

/* packages */
  .pkg-filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:30px;align-items:center}

.filter-label{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-mid);margin-right:4px}

.fbtn{
    background:var(--white);border:1.5px solid var(--line);border-radius:999px;
    padding:9px 17px;font-family:var(--sans);font-weight:600;font-size:13.5px;
    cursor:pointer;transition:.2s;color:var(--ink-mid);
  }

.fbtn:hover{border-color:var(--gold)}

.fbtn.active{background:var(--ink);color:var(--cream);border-color:var(--ink)}

.pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

.pkg{
    background:var(--white);border-radius:18px;overflow:hidden;border:1px solid var(--line);
    box-shadow:var(--shadow-sm);transition:.3s;display:flex;flex-direction:column;
  }

.pkg:hover{transform:translateY(-5px);box-shadow:var(--shadow)}

.pkg-img{height:170px;position:relative;overflow:hidden}

.pkg-img img{width:100%;height:100%;object-fit:cover}

.pkg-tags{position:absolute;left:12px;top:12px;display:flex;gap:6px}

.pkg-tags span{
    background:rgba(28,26,22,.85);color:#fff;font-size:10.5px;font-weight:700;
    letter-spacing:.05em;padding:5px 10px;border-radius:999px;backdrop-filter:blur(4px);
  }

.pkg-tags span.t-inv{background:linear-gradient(135deg,var(--gold-bright),var(--gold));color:#241a05}

.pkg-body{padding:22px;display:flex;flex-direction:column;flex:1}

.pkg-loc{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-deep);display:flex;align-items:center;gap:5px}

.pkg-loc svg{width:13px;height:13px}

.pkg-body h4{font-size:19px;margin:5px 0 12px}

.pkg-specs{display:flex;gap:14px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid var(--line)}

.pkg-specs div{font-size:12.5px;color:var(--ink-mid);font-weight:600;display:flex;align-items:center;gap:5px}

.pkg-specs svg{width:15px;height:15px;color:var(--gold)}

.pkg-price{margin-bottom:14px}

.pkg-price .pl{font-size:11.5px;color:var(--ink-mid);font-weight:600;text-transform:uppercase;letter-spacing:.05em}

.pkg-price .pv{font-family:var(--serif);font-size:23px;font-weight:600}

.pkg-price .ph{font-size:13px;font-weight:600;color:var(--gold-deep);margin-top:2px}

.pkg-body .btn{margin-top:auto;width:100%;justify-content:center;font-size:13.5px;padding:12px}

.pkg-note{text-align:center;margin-top:26px;font-size:13px;color:var(--ink-mid)}

.empty{grid-column:1/-1;text-align:center;padding:50px 20px;color:var(--ink-mid);font-size:15px;display:none}

/* process */
  .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

.stepc{
    background:rgba(255,255,255,.05);border:1px solid rgba(226,177,74,.22);
    border-radius:16px;padding:26px 22px;transition:.3s;
  }

.stepc:hover{background:rgba(255,255,255,.09);transform:translateY(-4px)}

.stepc .num{
    font-family:var(--serif);font-size:14px;font-weight:600;color:#241a05;
    width:38px;height:38px;border-radius:10px;display:flex;align-items:center;
    justify-content:center;background:linear-gradient(135deg,var(--gold-bright),var(--gold));margin-bottom:15px;
  }

.stepc h4{font-size:18px;color:var(--cream);margin-bottom:7px}

.stepc p{font-size:13.5px;color:#bdb5a4}

/* qualify banner */
  .qualify{position:relative;overflow:hidden;padding:45px 0;background:#1a1a1a}

.qualify-bg{position:absolute;inset:0;z-index:0}

.qualify-bg img{width:100%;height:100%;object-fit:cover;display:block}

.qualify-overlay{
    position:absolute;inset:0;z-index:1;
    background:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.5) 55%,rgba(0,0,0,.25) 100%);
  }

.qualify-inner{
    position:relative;z-index:2;display:flex;align-items:center;
    justify-content:space-between;gap:48px;flex-wrap:wrap;
  }

.qualify-copy{flex:1;min-width:280px;max-width:680px}

.qualify-copy h2{color:#fff;font-size:clamp(34px,3.8vw,46px);margin-bottom:18px}

.qualify-copy p{color:rgba(255,255,255,.86);font-size:17px;line-height:1.6;max-width:560px;margin:0}

.btn-light{
    background:#fff;color:var(--ink);font-size:15px;padding:18px 36px;
    box-shadow:0 14px 30px -12px rgba(0,0,0,.5);
  }

.btn-light:hover{transform:translateY(-3px);box-shadow:0 22px 40px -14px rgba(0,0,0,.6);color:var(--ink)}

/* mission */
  .mission-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:60px;align-items:center}

.mission-img{
    border-radius:18px;overflow:hidden;box-shadow:var(--shadow);
    aspect-ratio:1/1;background:var(--cream-deep);
  }

.mission-img img{width:100%;height:100%;object-fit:cover;display:block}

.mission-copy h2{font-size:clamp(32px,3.8vw,44px);margin-bottom:28px}

.mission-copy p{font-size:16px;color:var(--ink-mid);line-height:1.7;margin-bottom:18px;max-width:560px}

.mission-copy p:last-child{margin-bottom:0}

.mission-copy .lead-p{color:var(--ink);font-weight:600;font-size:17px}

/* why us */
  .why-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}

.why-lead{font-family:var(--serif);font-style:italic;font-weight:500;font-size:clamp(28px,3.2vw,38px);line-height:1.18;letter-spacing:-.02em;color:var(--ink);margin:14px 0 30px}

.why-body p{font-size:16px;color:var(--ink-mid);line-height:1.7;margin-bottom:16px;max-width:560px}

.why-body p:last-child{margin-bottom:0}

.why-body strong{color:var(--ink);font-weight:700}

.why-points{display:flex;flex-direction:column;gap:8px}

.why-pt{display:flex;gap:16px;padding:18px;border-radius:14px;transition:.25s}

.why-pt:hover{background:var(--white);box-shadow:var(--shadow-sm)}

.why-pt .wic{
    width:46px;height:46px;border-radius:12px;flex:none;
    background:var(--cream-deep);display:flex;align-items:center;justify-content:center;
  }

.why-pt .wic svg{width:22px;height:22px;color:var(--gold-deep)}

.why-pt h4{font-size:17px;margin-bottom:3px}

.why-pt p{font-size:13.5px;color:var(--ink-mid)}

.why-visual{position:relative}

.why-visual img{border-radius:22px;width:100%;height:480px;object-fit:cover;box-shadow:var(--shadow)}

.why-quote{
    position:absolute;bottom:20px;left:20px;background:var(--white);
    border-radius:16px;padding:22px;max-width:270px;box-shadow:var(--shadow);border:1px solid var(--line);
  }

.why-quote p{font-family:var(--serif);font-style:italic;font-weight:500;font-size:15.5px;line-height:1.4}

.why-quote span{font-size:12px;font-weight:700;color:var(--gold-deep);display:block;margin-top:8px}

/* reviews */
  .reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}

.review{
    background:var(--white);border-radius:18px;padding:28px;
    border:1px solid var(--line);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;
  }

.stars{color:var(--gold);font-size:15px;letter-spacing:2px;margin-bottom:13px}

.review p{font-size:14.5px;color:var(--ink-mid);flex:1;margin-bottom:18px}

.reviewer{display:flex;align-items:center;gap:12px}

.reviewer .av{
    width:44px;height:44px;border-radius:50%;flex:none;
    background:linear-gradient(135deg,var(--gold-bright),var(--gold-deep));
    display:flex;align-items:center;justify-content:center;
    font-family:var(--serif);font-weight:600;color:#fff;font-size:16px;
  }

.reviewer b{font-size:14.5px;display:block;font-family:var(--serif);font-weight:600}

.reviewer span{font-size:12px;color:var(--ink-mid)}

/* faq */
  .faq{max-width:780px;margin:0 auto}

.faq-item{border-bottom:1px solid var(--line)}

.faq-q{
    width:100%;background:none;border:none;cursor:pointer;text-align:left;
    padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
    font-family:var(--serif);font-size:18px;font-weight:600;color:var(--ink);
  }

.faq-q .pm{
    width:30px;height:30px;border-radius:50%;flex:none;border:1.5px solid var(--gold);
    display:flex;align-items:center;justify-content:center;transition:.3s;color:var(--gold-deep);
  }

.faq-item.open .pm{background:var(--gold);color:#fff;transform:rotate(45deg)}

.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}

.faq-a p{padding:0 4px 22px;font-size:14.5px;color:var(--ink-mid)}

/* cta + form */
  .cta-final{
    background:linear-gradient(135deg,#2a2419,var(--ink));
    border-radius:26px;padding:54px;display:grid;grid-template-columns:1fr 1fr;
    gap:48px;align-items:center;color:var(--cream);position:relative;overflow:hidden;
  }

.cta-final::before{
    content:"";position:absolute;width:300px;height:300px;border-radius:50%;
    background:radial-gradient(circle,rgba(226,177,74,.32),transparent 70%);
    top:-100px;right:-60px;
  }

.cta-final h2{font-size:clamp(28px,3.4vw,38px);margin:14px 0 12px;position:relative}

.cta-final p{color:#c2bbab;font-size:15.5px;position:relative}

.qform{background:var(--white);border-radius:18px;padding:26px;position:relative}

.qform h4{font-size:18px;color:var(--ink);margin-bottom:4px}

.qform .qs{font-size:13px;color:var(--ink-mid);margin-bottom:18px}

.field{margin-bottom:13px}

.field label{font-size:12px;font-weight:700;color:var(--ink);display:block;margin-bottom:5px}

.field input,.field select{
    width:100%;padding:11px 13px;border:1.5px solid var(--line);border-radius:10px;
    font-family:var(--sans);font-size:14px;background:var(--cream);color:var(--ink);
  }

.field input:focus,.field select:focus{outline:none;border-color:var(--gold)}

.field-row{display:grid;grid-template-columns:1fr 1fr;gap:11px}

.qform .btn{width:100%;justify-content:center;margin-top:6px}

.form-note{font-size:11.5px;color:var(--ink-mid);text-align:center;margin-top:11px}

/* footer */
  footer{background:#000;color:#bdb5a4;padding:60px 0 28px}

.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:44px}

.foot-about p{font-size:13.5px;margin:16px 0;max-width:280px}

.foot-col h5{font-family:var(--serif);font-size:15px;color:var(--cream);font-weight:600;margin-bottom:14px}

.foot-col a,.foot-col p{display:block;font-size:13.5px;margin-bottom:9px;transition:.2s}

.foot-col a:hover{color:var(--gold-bright)}

.foot-logo{display:inline-flex}

.foot-logo img{height:64px;width:auto;max-width:300px;object-fit:contain;transition:opacity .2s}

.foot-logo:hover img{opacity:.85}

.foot-bot{
    border-top:1px solid #33302a;padding-top:24px;display:flex;
    justify-content:space-between;gap:18px;flex-wrap:wrap;font-size:12px;
  }

.foot-bot .disc{max-width:560px;line-height:1.6}

/* reveal */
  .reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}

.reveal.in{opacity:1;transform:none}

/* ---------- responsive ---------- */
  @media(max-width:1200px){
    .nav-phone{display:none}
  }

@media(max-width:1100px){
    .nav-links{display:none}
    .burger{display:flex}
    .nav-links.show{
      display:flex;position:absolute;top:78px;left:0;right:0;flex-direction:column;
      background:#000;backdrop-filter:blur(14px);
      padding:24px 32px;gap:18px;border-bottom:1px solid rgba(255,255,255,.08);
      box-shadow:0 18px 40px -18px rgba(0,0,0,.6);
    }
  }

@media(max-width:980px){
    .hero-grid,.why-grid,.mission-grid,.cta-final{grid-template-columns:1fr;gap:42px}
    .paths,.reviews{grid-template-columns:1fr}
    .pkg-grid,.steps{grid-template-columns:repeat(2,1fr)}
    .foot-grid{grid-template-columns:1fr 1fr;gap:32px}
    .why-visual img{height:380px}
    .why-quote{left:20px;right:20px;bottom:20px;max-width:none}
  }

@media(max-width:680px){
    .wrap{padding:0 20px}
    .logo img{height:46px}
    .pkg-grid,.steps,.field-row{grid-template-columns:1fr}
    .choice-row{grid-template-columns:1fr}
    .cta-final{padding:40px 24px}
    .band{padding:36px 0}
    .hero{padding:52px 0 80px}
    .sec-head{margin-bottom:40px}
    .selector{padding:26px 22px}
    .why-quote{position:static;max-width:none;margin-top:18px;left:auto;right:auto;bottom:auto}
    .nav{height:68px}
    .nav-links.show{top:68px}
  }
