/* =========================================================
   RETIREMENT PLANNING
   SA HEDGE FUND — PRESERVE
   ========================================================= */


/* =========================================================
   TOKENS
   ========================================================= */

.service-detail-root{
  --navy:#0B1F33;
  --navy-deep:#071523;
  --navy-raise:#112A44;

  --gold:#C9A24D;
  --gold-dim:rgba(201,162,77,0.28);
  --gold-dark:#9A7A34;

  --cream:#F3EFE7;
  --neutral:#F3F1ED;

  --on-navy:#F3EFE7;
  --on-navy-mute:#9FAFC2;

  --on-cream:#0B1F33;
  --on-cream-mute:#5A6579;

  --good:#5B8A6B;
  --warn:#B5502E;

  --max:1220px;
  --gutter:clamp(20px,4vw,48px);
  --read:720px;
}


/* =========================================================
   BASE
   ========================================================= */

.service-detail-root,
.service-detail-root *{
  box-sizing:border-box;
}

.service-detail-root{
  background:var(--cream);
  color:var(--on-cream);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}

.service-detail-root h1,
.service-detail-root h2,
.service-detail-root h3,
.service-detail-root h4,
.service-detail-root .serif{
  font-family:'Playfair Display',serif;
  font-weight:600;
  margin:0;
}

.service-detail-root p{
  margin:0;
}

.service-detail-root a{
  color:inherit;
  text-decoration:none;
}

.service-detail-root ::selection{
  background:var(--gold);
  color:var(--navy-deep);
}

.service-detail-root label{
  font-family:'Inter',sans-serif;
}

.service-detail-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--gutter);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:200;
  background:var(--gold);
  color:var(--navy-deep);
  padding:12px 20px;
  font-size:0.85rem;
  font-weight:600;
}

.skip-link:focus{
  left:16px;
  top:16px;
}

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


/* =========================================================
   EYEBROW
   ========================================================= */

.service-detail-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;

  font-size:0.74rem;
  letter-spacing:0.16em;
  text-transform:uppercase;

  color:var(--gold-dark);

  margin-bottom:20px;
}

.service-detail-eyebrow::before{
  content:'';
  width:24px;
  height:1px;
  background:var(--gold-dark);
}

.service-detail-eyebrow-light{
  color:var(--gold);
}

.service-detail-eyebrow-light::before{
  background:var(--gold);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.service-detail-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  min-height:48px;
  padding:0 26px;

  font-size:0.86rem;
  letter-spacing:0.02em;

  transition:all .25s ease;

  border:1px solid transparent;
  cursor:pointer;

  font-family:'Inter',sans-serif;
  background:none;
}

.service-detail-btn-primary{
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:500;
}

.service-detail-btn-primary:hover{
  background:#dcb769;
}

.service-detail-btn-line{
  border-bottom:1px solid rgba(11,31,51,0.25);
  padding:0 0 4px;
  color:var(--on-cream);
}

.service-detail-btn-line:hover{
  border-color:var(--gold-dark);
  color:var(--gold-dark);
}

.service-detail-btn-line-light{
  border-color:rgba(243,239,231,0.35);
  color:var(--on-navy);
}

.service-detail-btn-line-light:hover{
  color:var(--gold);
  border-color:var(--gold);
}

.service-detail-btn:hover .service-detail-arrow{
  transform:translateX(3px);
}

.service-detail-arrow{
  transition:transform .25s ease;
  display:inline-block;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.service-detail-section-head{
  max-width:660px;
}

.service-detail-section-head h2{
  font-size:clamp(1.5rem,2.8vw,2.05rem);
}

.service-detail-lede{
  font-size:1rem;
  line-height:1.75;
  color:var(--on-cream-mute);
  max-width:64ch;
  margin-top:16px;
}


/* =========================================================
   ICONS
   ========================================================= */

.service-detail-icon{
  width:16px;
  height:16px;
  min-width:16px;
  display:block;
}

.service-detail-chevron{
  width:16px;
  height:16px;
  min-width:16px;
  flex:0 0 16px;
  display:block;
  transition:transform .25s ease;
  color:var(--gold-dark);
}

.service-detail-faq-item[open] .service-detail-chevron{
  transform:rotate(180deg);
}

.service-detail-wa-icon{
  width:16px;
  height:16px;
  min-width:16px;
  display:block;
}

.service-detail-check{
  width:14px;
  height:14px;
  min-width:14px;
  display:block;
  color:var(--gold-dark);
}

.service-detail-alert{
  width:18px;
  height:18px;
  min-width:18px;
  display:block;
  color:var(--warn);
}


/* =========================================================
   SITE NAV
   ========================================================= */

.nav{
  position:sticky;
  top:0;
  z-index:60;

  background:rgba(7,21,35,0.94);
  backdrop-filter:blur(10px);

  border-bottom:1px solid rgba(201,162,77,0.18);

  color:#F3EFE7;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;

  max-width:1220px;
  margin:0 auto;

  padding:18px clamp(20px,4vw,48px);
  min-height:64px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;

  font-family:'Playfair Display',serif;
  font-size:1.05rem;
  letter-spacing:0.01em;

  color:#F3EFE7;
}

.logo .idx{
  font-family:'Inter',sans-serif;
  font-size:0.7rem;
  color:#C9A24D;
  letter-spacing:0.1em;

  border:1px solid rgba(201,162,77,0.28);
  padding:3px 7px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:clamp(16px,2.6vw,32px);
}

.nav-links a{
  font-size:0.78rem;
  letter-spacing:0.05em;
  text-transform:uppercase;

  color:#9FAFC2;

  position:relative;
  padding:4px 0;
  white-space:nowrap;
}

.nav-links a::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-2px;

  width:0;
  height:1px;

  background:#C9A24D;

  transition:width .25s ease;
}

.nav-links a:hover{
  color:#F3EFE7;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a[aria-current="page"]{
  color:#C9A24D;
}

.nav-links a[aria-current="page"]::after{
  width:100%;
}

.nav-links .nav-cta{
  text-transform:none;
  letter-spacing:0.02em;

  border:1px solid rgba(201,162,77,0.28);

  padding:10px 18px;

  color:#C9A24D;

  min-height:44px;

  display:inline-flex;
  align-items:center;
}

.nav-links .nav-cta:hover{
  background:#C9A24D;
  color:#071523;
}

.nav-links .nav-cta::after{
  display:none;
}

.nav-burger{
  display:none;

  width:44px;
  height:44px;

  border:1px solid rgba(201,162,77,0.3);
  background:none;

  align-items:center;
  justify-content:center;

  cursor:pointer;
  flex-direction:column;
  gap:5px;
}

.nav-burger span{
  width:18px;
  height:1px;
  background:#C9A24D;

  display:block;

  transition:
    transform .25s ease,
    opacity .25s ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.mobile-drawer{
  display:none;

  flex-direction:column;
  gap:2px;

  background:#071523;

  border-bottom:1px solid rgba(201,162,77,0.18);

  padding:8px clamp(20px,4vw,48px) 20px;
}

.mobile-drawer.open{
  display:flex;
}

.mobile-drawer a{
  padding:14px 4px;

  font-size:0.95rem;

  border-bottom:1px solid rgba(201,162,77,0.1);

  min-height:44px;

  display:flex;
  align-items:center;

  color:#F3EFE7;
}

.mobile-drawer a[aria-current="page"]{
  color:#C9A24D;
}

.mobile-drawer .m-cta{
  color:#C9A24D;
  font-weight:500;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.service-detail-crumbs{
  background:var(--navy-deep);
  border-bottom:1px solid rgba(201,162,77,0.14);
}

.service-detail-crumbs ol{
  list-style:none;

  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;

  margin:0 auto;
  padding:12px var(--gutter);

  max-width:var(--max);

  font-size:0.76rem;
  color:var(--on-navy-mute);
}

.service-detail-crumbs a{
  color:var(--on-navy-mute);
}

.service-detail-crumbs a:hover{
  color:var(--gold);
}

.service-detail-crumbs li[aria-current]{
  color:var(--gold);
}

.service-detail-crumbs li:not(:last-child)::after{
  content:'/';
  margin-left:8px;
  color:rgba(159,175,194,0.4);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
  border-top:1px solid rgba(201,162,77,0.18);

  padding:clamp(32px,5vw,48px) 0;

  background:#071523;
  color:#F3EFE7;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;

  flex-wrap:wrap;
  gap:20px;
}

.footer-inner .fmark{
  font-family:'Playfair Display',serif;
  font-size:0.95rem;
}

.footer-links{
  display:flex;
  gap:clamp(16px,3vw,28px);
  flex-wrap:wrap;
}

.footer-links a{
  font-size:0.78rem;
  color:#9FAFC2;
}

.footer-links a:hover{
  color:#C9A24D;
}

.footer-links a[aria-current="page"]{
  color:#C9A24D;
}

.footer-fine{
  font-size:0.74rem;
  color:rgba(159,175,194,0.5);

  margin-top:20px;
  text-align:center;
}

.wrap{
  max-width:1220px;
  margin:0 auto;
  padding:0 clamp(20px,4vw,48px);
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal{
  opacity:0;
  transform:translateY(16px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce){

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

}


/* =========================================================
   GENERIC ART
   ========================================================= */

.service-detail-art{
  position:absolute;
  inset:0;
  pointer-events:none;
}


/* =========================================================
   01 — HERO
   ========================================================= */

.service-detail-hero{
  position:relative;

  background:var(--navy);
  color:var(--on-navy);

  padding:
    clamp(64px,9.5vw,108px)
    0
    clamp(76px,10.5vw,120px);

  overflow:hidden;
}

.service-detail-hero-grid{
  position:relative;

  display:grid;
  grid-template-columns:1.05fr 0.95fr;

  gap:clamp(40px,5vw,64px);

  align-items:center;
}

.service-detail-hero h1{
  font-size:clamp(2.2rem,4.6vw,3.3rem);

  line-height:1.15;
  letter-spacing:-0.01em;

  margin-bottom:20px;
}

.service-detail-hero-statement{
  font-size:1.14rem;

  line-height:1.65;

  color:var(--on-navy);

  max-width:52ch;

  margin-bottom:16px;

  font-style:italic;

  font-family:'Playfair Display',serif;
  font-weight:500;
}

.service-detail-hero-sub{
  font-size:0.98rem;

  line-height:1.8;

  color:var(--on-navy-mute);

  max-width:56ch;

  margin-bottom:36px;
}

.service-detail-hero-actions{
  display:flex;
  gap:20px;

  flex-wrap:wrap;
}

.service-detail-hero-photo{
  position:relative;

  aspect-ratio:4/5;

  overflow:hidden;

  background:var(--navy-deep);
}

.service-detail-hero-photo img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;
}

.service-detail-hero-photo::after{
  content:'';

  position:absolute;
  inset:0;

  box-shadow:
    inset 0 0 0 1px rgba(201,162,77,0.25);

  pointer-events:none;
}

.service-detail-hero-stages{
  position:relative;

  margin-top:clamp(48px,6vw,64px);
}

.service-detail-hero-stages svg{
  width:100%;
  height:auto;
  display:block;
}


/* =========================================================
   02 — WHY RETIREMENT PLANNING
   ========================================================= */

.service-detail-why{
  position:relative;

  overflow:hidden;

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-why-grid{
  position:relative;

  display:grid;
  grid-template-columns:1.05fr 0.95fr;

  gap:clamp(40px,5vw,64px);

  align-items:center;

  max-width:1120px;

  margin:0 auto;
}

.service-detail-why-copy p{
  font-size:1rem;

  line-height:1.85;

  color:var(--on-cream-mute);

  margin-top:16px;

  max-width:56ch;
}

.service-detail-why-note{
  margin-top:20px;

  font-family:'Playfair Display',serif;
  font-style:italic;

  font-size:1.02rem;
  line-height:1.6;

  color:var(--on-cream);

  background:#fff;

  border:1px solid rgba(11,31,51,0.1);

  padding:20px 22px;
}

.service-detail-why-art{
  background:#fff;

  border:1px solid rgba(11,31,51,0.1);

  padding:clamp(24px,3vw,32px);
}

.service-detail-why-art svg{
  width:100%;
  height:auto;
  display:block;
}

.service-detail-why-art-label{
  font-size:0.7rem;

  letter-spacing:0.1em;
  text-transform:uppercase;

  color:var(--gold-dark);

  margin-bottom:16px;

  display:block;
}


/* =========================================================
   03 — RETIREMENT TRANSITION
   ========================================================= */

.service-detail-transition{
  background:var(--neutral);

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-transition .service-detail-section-head{
  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  text-align:center;

  max-width:680px;
}

.service-detail-transition .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-flow{
  display:flex;

  justify-content:space-between;

  gap:16px;

  max-width:1080px;

  margin:0 auto;

  flex-wrap:wrap;
}

.service-detail-flow-step{
  flex:1 1 0;

  min-width:180px;

  text-align:center;

  position:relative;

  padding-top:34px;
}

.service-detail-flow-step::before{
  content:'';

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:9px;
  height:9px;

  border-radius:50%;

  background:var(--gold);
}

.service-detail-flow-step:not(:last-child)::after{
  content:'';

  position:absolute;

  top:4px;

  left:calc(50% + 20px);

  width:calc(100% - 20px);

  height:1px;

  background:rgba(11,31,51,0.18);
}

.service-detail-flow-num{
  font-size:0.68rem;

  letter-spacing:0.1em;

  color:var(--gold-dark);

  margin-bottom:8px;
}

.service-detail-flow-step h3{
  font-size:1rem;
  margin-bottom:8px;
}

.service-detail-flow-step p{
  font-size:0.86rem;

  line-height:1.6;

  color:var(--on-cream-mute);
}


/* =========================================================
   04 — RETIREMENT PLANNING FRAMEWORK
   ========================================================= */

.service-detail-framework{
  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-framework .service-detail-section-head{
  margin:
    0
    auto
    clamp(20px,3vw,28px);

  text-align:center;

  max-width:680px;
}

.service-detail-framework .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-framework-lede{
  text-align:center;

  max-width:640px;

  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  font-size:0.98rem;

  line-height:1.8;

  color:var(--on-cream-mute);
}

.service-detail-fw-diagram{
  max-width:1180px;

  margin:
    0
    auto
    clamp(20px,3vw,28px);
}

.service-detail-fw-diagram svg{
  width:100%;
  height:auto;
  display:block;
}

.service-detail-fw-grid{
  display:grid;

  grid-template-columns:repeat(6,1fr);

  gap:clamp(10px,1.6vw,18px);

  max-width:1180px;

  margin:0 auto;
}

.service-detail-fw-step h3{
  font-size:0.92rem;

  margin-bottom:6px;
}

.service-detail-fw-step p{
  font-size:0.8rem;

  line-height:1.55;

  color:var(--on-cream-mute);
}

.service-detail-fw-mobile{
  display:none;
}


/* =========================================================
   05 — KEY CONSIDERATIONS
   ========================================================= */

.service-detail-considerations{
  background:var(--neutral);

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-considerations .service-detail-section-head{
  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  text-align:center;

  max-width:680px;
}

.service-detail-considerations .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-cons-list{
  max-width:900px;

  margin:0 auto;

  border-top:1px solid rgba(11,31,51,0.14);
}

.service-detail-cons-row{
  display:grid;

  grid-template-columns:64px 200px 1fr;

  gap:clamp(16px,2.4vw,32px);

  align-items:baseline;

  padding:
    clamp(18px,2.2vw,22px)
    2px;

  border-bottom:1px solid rgba(11,31,51,0.14);
}

.service-detail-cons-row span.service-detail-cons-num{
  font-family:'Playfair Display',serif;

  font-size:1.1rem;

  color:var(--gold-dark);
}

.service-detail-cons-row h3{
  font-size:0.98rem;
}

.service-detail-cons-row p{
  font-size:0.88rem;

  line-height:1.6;

  color:var(--on-cream-mute);
}


/* =========================================================
   06 — THE CORPUS QUESTION
   ========================================================= */

.service-detail-corpus{
  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-corpus-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:clamp(40px,5vw,64px);

  align-items:center;

  max-width:1120px;

  margin:0 auto;
}

.service-detail-corpus-copy p{
  font-size:1rem;

  line-height:1.85;

  color:var(--on-cream-mute);

  margin-top:16px;

  max-width:54ch;
}

.service-detail-corpus-art{
  background:#fff;

  border:1px solid rgba(11,31,51,0.12);

  padding:clamp(24px,2.8vw,32px);
}

.service-detail-corpus-art svg{
  width:100%;
  height:auto;
  display:block;
}


/* =========================================================
   07 — ACCUMULATION VS DISTRIBUTION
   ========================================================= */

.service-detail-compare{
  background:var(--neutral);

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-compare .service-detail-section-head{
  margin:
    0
    auto
    clamp(32px,4vw,40px);

  text-align:center;

  max-width:680px;
}

.service-detail-compare .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-compare-art{
  max-width:920px;

  margin:
    0
    auto
    clamp(28px,3.4vw,36px);
}

.service-detail-compare-art svg{
  width:100%;
  height:auto;
  display:block;
}

.service-detail-compare-table{
  max-width:920px;

  margin:0 auto;

  border:1px solid rgba(11,31,51,0.12);

  background:#fff;
}

.service-detail-compare-head,
.service-detail-compare-row{
  display:grid;

  grid-template-columns:1fr 1fr;
}

.service-detail-compare-head div{
  font-size:0.72rem;

  letter-spacing:0.1em;

  text-transform:uppercase;

  color:var(--gold-dark);

  padding:16px clamp(18px,2.4vw,26px);

  border-bottom:2px solid var(--gold-dim);
}

.service-detail-compare-row div{
  font-size:0.88rem;

  line-height:1.55;

  color:var(--on-cream);

  padding:16px clamp(18px,2.4vw,26px);

  border-bottom:1px solid rgba(11,31,51,0.1);
}

.service-detail-compare-row div:first-child{
  border-right:1px solid rgba(11,31,51,0.1);
}

.service-detail-compare-close{
  max-width:800px;

  margin:
    clamp(32px,4vw,40px)
    auto
    0;

  text-align:center;

  font-family:'Playfair Display',serif;

  font-style:italic;

  font-size:1.02rem;

  line-height:1.6;

  color:var(--on-cream);
}


/* =========================================================
   08 — COMMON MISTAKES
   ========================================================= */

.service-detail-mistakes{
  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-mistakes .service-detail-section-head{
  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  text-align:center;

  max-width:680px;
}

.service-detail-mistakes .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-mistakes-grid{
  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:
    clamp(24px,3vw,36px)
    clamp(32px,4vw,48px);

  max-width:1000px;

  margin:0 auto;
}

.service-detail-mistake{
  display:flex;

  gap:14px;

  padding:
    0
    0
    clamp(16px,2vw,20px);

  border-bottom:1px solid rgba(11,31,51,0.12);
}

.service-detail-mistake h3{
  font-size:0.94rem;

  margin-bottom:6px;
}

.service-detail-mistake p{
  font-size:0.84rem;

  line-height:1.6;

  color:var(--on-cream-mute);
}


/* =========================================================
   09 — OUR PERSPECTIVE
   ========================================================= */

.service-detail-perspective{
  position:relative;

  overflow:hidden;

  background:var(--navy);

  color:var(--on-navy);

  padding:clamp(72px,10vw,116px) 0;
}

.service-detail-perspective-art{
  position:absolute;

  inset:0;

  opacity:0.5;

  pointer-events:none;
}

.service-detail-perspective .service-detail-wrap{
  position:relative;

  max-width:760px;

  margin:0 auto;

  text-align:center;
}

.service-detail-perspective h2{
  color:var(--on-navy);

  margin-bottom:20px;
}

.service-detail-perspective p{
  font-size:1rem;

  line-height:1.85;

  color:var(--on-navy-mute);

  margin-bottom:18px;
}

.service-detail-perspective-statement{
  font-family:'Playfair Display',serif;

  font-style:italic;

  font-size:1.08rem;

  line-height:1.6;

  color:var(--gold);

  margin-top:20px;
}


/* =========================================================
   10 — WHO THIS IS FOR + HOW WE WORK
   ========================================================= */

.service-detail-who-process{
  background:var(--neutral);

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-who-process .service-detail-section-head{
  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  text-align:center;

  max-width:700px;
}

.service-detail-who-process .service-detail-eyebrow{
  justify-content:center;
}

.service-detail-wp-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:clamp(40px,5vw,64px);

  max-width:1080px;

  margin:0 auto;
}

.service-detail-wp-col h3.service-detail-wp-heading{
  font-size:0.98rem;

  margin-bottom:20px;

  color:var(--gold-dark);
}

.service-detail-wp-stage{
  padding:14px 0;

  border-bottom:1px solid rgba(11,31,51,0.14);
}

.service-detail-wp-stage h4{
  font-size:0.92rem;

  margin-bottom:4px;
}

.service-detail-wp-stage p{
  font-size:0.84rem;

  line-height:1.55;

  color:var(--on-cream-mute);
}

.service-detail-wp-step{
  display:flex;

  gap:14px;

  padding:14px 0;

  border-bottom:1px solid rgba(11,31,51,0.14);
}

.service-detail-wp-badge{
  flex:none;

  width:28px;
  height:28px;

  border:1px solid var(--gold-dark);

  border-radius:50%;

  display:flex;

  align-items:center;
  justify-content:center;

  font-family:'Playfair Display',serif;

  font-size:0.82rem;

  color:var(--gold-dark);
}

.service-detail-wp-step h4{
  font-size:0.92rem;

  margin-bottom:4px;
}

.service-detail-wp-step p{
  font-size:0.84rem;

  line-height:1.55;

  color:var(--on-cream-mute);
}


/* =========================================================
   11 — RELATED RESEARCH
   ========================================================= */

.service-detail-research{
  padding:clamp(56px,7.5vw,88px) 0;
}

.service-detail-research .service-detail-section-head{
  margin:
    0
    0
    clamp(10px,1.4vw,14px);
}

.service-detail-research-note{
  font-size:0.84rem;

  color:var(--on-cream-mute);

  margin-bottom:clamp(28px,3.5vw,36px);

  max-width:62ch;
}

.service-detail-research-list{
  max-width:900px;

  border-top:1px solid rgba(11,31,51,0.12);
}

.service-detail-research-row{
  display:flex;

  align-items:baseline;

  justify-content:space-between;

  gap:20px;

  padding:14px 2px;

  border-bottom:1px solid rgba(11,31,51,0.12);
}

.service-detail-research-row .service-detail-tag{
  font-size:0.68rem;

  letter-spacing:0.08em;

  text-transform:uppercase;

  color:var(--gold-dark);

  flex:none;

  width:140px;
}

.service-detail-research-row h3{
  font-size:0.88rem;

  font-weight:500;

  line-height:1.4;

  color:var(--on-cream-mute);

  flex:1;
}

.service-detail-soon{
  font-size:0.7rem;

  font-weight:600;

  letter-spacing:0.05em;

  text-transform:uppercase;

  color:var(--on-cream-mute);

  display:inline-flex;

  align-items:center;

  gap:6px;

  flex:none;
}

.service-detail-soon::before{
  content:'';

  width:6px;
  height:6px;

  border-radius:50%;

  background:var(--on-cream-mute);
}


/* =========================================================
   12 — FAQ
   ========================================================= */

.service-detail-faq{
  background:var(--neutral);

  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-faq .service-detail-wrap{
  max-width:var(--read);
}

.service-detail-faq .service-detail-section-head{
  margin-bottom:clamp(36px,5vw,48px);
}

.service-detail-faq-list{
  border-top:1px solid rgba(11,31,51,0.12);
}

.service-detail-faq-item{
  border-bottom:1px solid rgba(11,31,51,0.12);
}

.service-detail-faq-item summary{
  list-style:none;

  cursor:pointer;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  padding:22px 2px;

  font-size:0.98rem;

  font-weight:500;

  color:var(--on-cream);

  min-height:48px;
}

.service-detail-faq-item summary::-webkit-details-marker{
  display:none;
}

.service-detail-faq-item[open] summary{
  color:var(--gold-dark);
}

.service-detail-faq-item p{
  font-size:0.94rem;

  line-height:1.72;

  color:var(--on-cream-mute);

  max-width:66ch;

  padding:0 2px 22px;
}


/* =========================================================
   13 — RELATED PRESERVE SERVICES
   ========================================================= */

.service-detail-related{
  padding:clamp(64px,9vw,104px) 0;
}

.service-detail-related .service-detail-section-head{
  margin:
    0
    auto
    clamp(44px,5.5vw,56px);

  text-align:center;

  max-width:680px;
}

.service-detail-related-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:1px;

  background:rgba(11,31,51,0.1);

  border:1px solid rgba(11,31,51,0.1);
}

.service-detail-related-card{
  background:#fff;

  padding:clamp(24px,2.8vw,30px);

  display:flex;

  flex-direction:column;
}

.service-detail-related-card h3{
  font-size:1rem;

  margin-bottom:10px;
}

.service-detail-related-card p{
  font-size:0.86rem;

  line-height:1.65;

  color:var(--on-cream-mute);

  flex:1;

  margin-bottom:16px;
}

.service-detail-related-link{
  font-size:0.8rem;

  font-weight:600;

  color:var(--gold-dark);

  display:inline-flex;

  align-items:center;

  gap:6px;

  width:fit-content;
}

.service-detail-related-link:hover{
  color:var(--gold);
}


/* =========================================================
   14 — FINAL CTA
   ========================================================= */

.service-detail-cta{
  position:relative;

  overflow:hidden;

  background:var(--navy);

  color:var(--on-navy);

  padding:clamp(72px,10vw,120px) 0;

  text-align:center;
}

.service-detail-cta-art{
  position:absolute;

  inset:0;

  opacity:0.6;

  pointer-events:none;
}

.service-detail-cta .service-detail-wrap{
  position:relative;

  max-width:660px;
}

.service-detail-cta-rule{
  width:44px;

  height:2px;

  background:var(--gold);

  margin:0 auto 32px;
}

.service-detail-cta h2{
  font-size:clamp(1.6rem,3.2vw,2.15rem);

  margin-bottom:18px;

  line-height:1.3;

  color:var(--on-navy);
}

.service-detail-cta p{
  font-size:1.02rem;

  line-height:1.75;

  color:var(--on-navy-mute);

  margin-bottom:36px;
}

.service-detail-cta-actions{
  display:flex;

  gap:22px;

  justify-content:center;

  flex-wrap:wrap;
}


/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */

.service-detail-sticky-cta{
  display:none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:980px){

  .nav-links{
    display:none;
  }

  .nav-burger{
    display:flex;
  }

  .service-detail-hero-grid{
    grid-template-columns:1fr;
  }

  .service-detail-hero-photo{
    order:-1;
    aspect-ratio:16/9;
  }

  .service-detail-why-grid{
    grid-template-columns:1fr;
  }

  .service-detail-research-row{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .service-detail-research-row .service-detail-tag{
    width:auto;
  }

  .service-detail-related-grid{
    grid-template-columns:1fr;
  }

  .service-detail-corpus-grid{
    grid-template-columns:1fr;
  }

  .service-detail-compare-head div,
  .service-detail-compare-row div{
    padding:14px 16px;
    font-size:0.82rem;
  }

  .service-detail-flow{
    flex-wrap:wrap;
  }

  .service-detail-flow-step{
    flex:1 1 calc(50% - 16px);
    margin-bottom:26px;
  }

  .service-detail-flow-step::after{
    display:none;
  }

  .service-detail-fw-diagram,
  .service-detail-fw-grid{
    display:none;
  }

  .service-detail-fw-mobile{
    display:block;

    max-width:520px;

    margin:0 auto;
  }

  .service-detail-fw-mobile-step{
    position:relative;

    padding:
      0
      0
      clamp(20px,3vw,26px)
      34px;
  }

  .service-detail-fw-mobile-step::before{
    content:'';

    position:absolute;

    left:6px;
    top:4px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--gold);
  }

  .service-detail-fw-mobile-step::after{
    content:'';

    position:absolute;

    left:9px;
    top:16px;
    bottom:0;

    width:1px;

    background:rgba(11,31,51,0.18);
  }

  .service-detail-fw-mobile-step:last-child::after{
    display:none;
  }

  .service-detail-fw-mobile-num{
    font-size:0.7rem;

    letter-spacing:0.08em;

    color:var(--gold-dark);

    margin-bottom:4px;
  }

  .service-detail-fw-mobile-step h3{
    font-size:0.98rem;

    margin-bottom:6px;
  }

  .service-detail-fw-mobile-step p{
    font-size:0.86rem;

    line-height:1.55;

    color:var(--on-cream-mute);
  }

  .service-detail-cons-row{
    grid-template-columns:40px 1fr;
  }

  .service-detail-cons-row h3{
    grid-column:2;
  }

  .service-detail-cons-row p{
    grid-column:2;
  }

  .service-detail-mistakes-grid{
    grid-template-columns:1fr;
  }

  .service-detail-wp-grid{
    grid-template-columns:1fr;

    gap:clamp(36px,4.5vw,48px);
  }

  .service-detail-sticky-cta{
    display:flex;

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    z-index:70;

    background:rgba(7,21,35,0.97);

    backdrop-filter:blur(8px);

    border-top:1px solid rgba(201,162,77,0.22);
  }

  .service-detail-sticky-cta a{
    flex:1;

    text-align:center;

    padding:14px 10px;

    font-size:0.82rem;

    color:var(--on-navy);

    min-height:48px;

    display:flex;

    align-items:center;
    justify-content:center;
  }

  .service-detail-sticky-cta a:first-child{
    border-right:1px solid rgba(201,162,77,0.18);

    color:var(--gold);

    font-weight:500;
  }

  .service-detail-root{
    padding-bottom:56px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:640px){

  .service-detail-flow-step{
    flex:1 1 100%;
  }

  .service-detail-hero-actions,
  .service-detail-cta-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .service-detail-cta-actions{
    align-items:center;
  }

  .service-detail-compare-head div:first-child,
  .service-detail-compare-row div:first-child{
    border-right:none;
  }

  .service-detail-cons-row{
    grid-template-columns:1fr;
  }

  .service-detail-cons-row span.service-detail-cons-num{
    display:none;
  }

}