/* =========================================================
   ESTATE PLANNING — SA HEDGE FUND
   Page-specific stylesheet
   ========================================================= */


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

.estate-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
   ========================================================= */

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

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

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

.estate-root p {
  margin: 0;
}

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

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

.estate-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;
}


/* =========================================================
   SHARED PRIMITIVES
   ========================================================= */

.estate-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;
}

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

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

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


.estate-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 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  background: none;
}

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

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

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

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

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

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

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

.estate-arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}


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

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

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


/* =========================================================
   CENTRING
   ========================================================= */

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

.estate-center.estate-section-head {
  max-width: 680px;
}

.estate-center .estate-eyebrow {
  justify-content: center;
}


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

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

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

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

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

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


/* =========================================================
   SITE NAVIGATION
   Shared component — intentionally unprefixed
   ========================================================= */

.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 0.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 0.25s ease,
    opacity 0.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;
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

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

.estate-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.76rem;
  color: var(--on-navy-mute);
}

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

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

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

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


/* =========================================================
   FOOTER
   Shared component — intentionally unprefixed
   ========================================================= */

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 ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   BACKGROUND MOTIFS
   ========================================================= */

.estate-bg-motif {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.estate-bg-motif svg {
  width: 100%;
  height: 100%;
  display: block;
}


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

.estate-hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  padding:
    clamp(64px,9.5vw,108px)
    0
    clamp(76px,10.5vw,120px);
  overflow: hidden;
}

.estate-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px,5vw,64px);
  align-items: center;
}

.estate-hero h1 {
  font-size: clamp(2.2rem,4.6vw,3.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.estate-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;
}

.estate-hero-sub {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--on-navy-mute);
  max-width: 56ch;
  margin-bottom: 36px;
}

.estate-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.estate-hero-art {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid rgba(201,162,77,0.22);
  padding: clamp(20px,2.6vw,28px);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
}

.estate-hero-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.estate-hero-stages {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px,6vw,64px);
}

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


/* =========================================================
   02 WHY ESTATE PLANNING
   ========================================================= */

.estate-why {
  position: relative;
  overflow: hidden;
  padding: clamp(64px,9vw,104px) 0;
}

.estate-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;
}

.estate-why-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-cream-mute);
  margin-top: 16px;
  max-width: 56ch;
}

.estate-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;
}

.estate-why-art {
  background: #fff;
  border: 1px solid rgba(11,31,51,0.1);
  padding: clamp(24px,3vw,32px);
}

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

.estate-why-art-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}


/* =========================================================
   03 THE ESTATE PLANNING QUESTION
   ========================================================= */

.estate-path {
  background: var(--neutral);
  padding: clamp(64px,9vw,104px) 0;
}

.estate-path .estate-section-head {
  margin: 0 auto clamp(44px,5.5vw,56px);
}

.estate-path-flow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.estate-path-step {
  flex: 1 1 0;
  min-width: 170px;
  text-align: center;
  position: relative;
  padding-top: 34px;
}

.estate-path-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.estate-path-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);
}

.estate-path-num {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.estate-path-step h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.estate-path-step p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--on-cream-mute);
}


/* =========================================================
   04 ESTATE PLANNING FRAMEWORK
   ========================================================= */

.estate-framework {
  position: relative;
  overflow: hidden;
  padding: clamp(64px,9vw,104px) 0;
}

.estate-framework .estate-wrap {
  position: relative;
  z-index: 1;
}

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

.estate-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);
}

.estate-fw-diagram {
  max-width: 1180px;
  margin: 0 auto clamp(20px,3vw,28px);
}

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

.estate-fw-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: clamp(10px,1.6vw,18px);
  max-width: 1180px;
  margin: 0 auto;
}

.estate-fw-step h3 {
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.estate-fw-step p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--on-cream-mute);
}

.estate-fw-mobile {
  display: none;
}


/* =========================================================
   05 WHAT FORMS AN ESTATE
   ========================================================= */

.estate-assets {
  position: relative;
  overflow: hidden;
  background: var(--neutral);
  padding: clamp(64px,9vw,104px) 0;
}

.estate-assets .estate-wrap {
  position: relative;
  z-index: 1;
}

.estate-assets .estate-section-head {
  margin: 0 auto clamp(44px,5.5vw,56px);
}

.estate-assets-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(11,31,51,0.14);
}

.estate-assets-row {
  display: grid;
  grid-template-columns: 64px 220px 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);
}

.estate-assets-row span.estate-assets-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.estate-assets-row h3 {
  font-size: 0.98rem;
}

.estate-assets-row p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--on-cream-mute);
}


/* =========================================================
   06 OWNERSHIP & CONTROL
   ========================================================= */

.estate-ownership {
  padding: clamp(64px,9vw,104px) 0;
}

.estate-ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.estate-ownership-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-cream-mute);
  margin-top: 16px;
  max-width: 54ch;
}

.estate-ownership-art {
  background: #fff;
  border: 1px solid rgba(11,31,51,0.12);
  padding: clamp(24px,2.8vw,32px);
}

.estate-ownership-art svg {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================================================
   07 CONTINUITY
   ========================================================= */

.estate-continuity {
  background: var(--neutral);
  padding: clamp(64px,9vw,104px) 0;
}

.estate-continuity-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px,5vw,64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.estate-continuity-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-cream-mute);
  margin-top: 16px;
  max-width: 56ch;
}

.estate-continuity-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  border-top: 1px solid rgba(11,31,51,0.14);
  padding-top: 16px;
}

.estate-continuity-tags span {
  font-size: 0.78rem;
  color: var(--on-cream-mute);
  padding: 4px 14px 4px 0;
  margin-right: 14px;
  border-right: 1px solid rgba(11,31,51,0.15);
}

.estate-continuity-tags span:last-child {
  border-right: none;
  margin-right: 0;
}

.estate-continuity-note {
  border-left: 2px solid var(--gold-dark);
  padding: 2px 0 2px 20px;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--on-cream-mute);
  margin-top: 26px;
  max-width: 56ch;
}

.estate-continuity-note strong {
  color: var(--on-cream);
  font-weight: 600;
}

.estate-continuity-art {
  background: #fff;
  border: 1px solid rgba(11,31,51,0.1);
  padding: clamp(24px,3vw,32px);
}

.estate-continuity-art svg {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================================================
   08 COMMON ESTATE PLANNING GAPS
   ========================================================= */

.estate-gaps {
  position: relative;
  overflow: hidden;
  padding: clamp(64px,9vw,104px) 0;
}

.estate-gaps .estate-wrap {
  position: relative;
  z-index: 1;
}

.estate-gaps .estate-section-head {
  margin: 0 auto clamp(44px,5.5vw,56px);
}

.estate-gaps-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(24px,3vw,36px) clamp(32px,4vw,48px);
  max-width: 1000px;
  margin: 0 auto;
}

.estate-gap {
  display: flex;
  gap: 14px;
  padding: 0 0 clamp(16px,2vw,20px);
  border-bottom: 1px solid rgba(11,31,51,0.12);
}

.estate-gap h3 {
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.estate-gap p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--on-cream-mute);
}


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

.estate-perspective {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(72px,10vw,116px) 0;
}

.estate-perspective-art {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.estate-perspective .estate-wrap {
  position: relative;
  max-width: 760px;
}

.estate-perspective h2 {
  color: var(--on-navy);
  margin-bottom: 20px;
}

.estate-perspective p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-navy-mute);
  margin-bottom: 18px;
}

.estate-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
   ========================================================= */

.estate-who-process {
  position: relative;
  overflow: hidden;
  padding: clamp(64px,9vw,104px) 0;
}

.estate-who-process .estate-wrap {
  position: relative;
  z-index: 1;
}

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

.estate-wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,64px);
  max-width: 1080px;
  margin: 0 auto;
}

.estate-wp-col h3.estate-wp-heading {
  font-size: 0.98rem;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.estate-wp-segment {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,31,51,0.14);
}

.estate-wp-segment h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.estate-wp-segment p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--on-cream-mute);
}

.estate-wp-step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,31,51,0.14);
}

.estate-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);
}

.estate-wp-step h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.estate-wp-step p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--on-cream-mute);
}


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

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

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

.estate-research-note {
  font-size: 0.84rem;
  color: var(--on-cream-mute);
  margin-bottom: clamp(28px,3.5vw,36px);
  max-width: 62ch;
}

.estate-research-list {
  max-width: 900px;
  border-top: 1px solid rgba(11,31,51,0.12);
}

.estate-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);
}

.estate-research-row .estate-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  flex: none;
  width: 150px;
}

.estate-research-row h3 {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--on-cream-mute);
  flex: 1;
}

.estate-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;
}

.estate-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--on-cream-mute);
}


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

.estate-faq {
  background: var(--neutral);
  padding: clamp(64px,9vw,104px) 0;
}

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

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

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

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

.estate-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;
}

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

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

.estate-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
   ========================================================= */

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

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

.estate-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);
}

.estate-related-card {
  background: #fff;
  padding: clamp(24px,2.8vw,30px);
  display: flex;
  flex-direction: column;
}

.estate-related-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.estate-related-card p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--on-cream-mute);
  flex: 1;
  margin-bottom: 16px;
}

.estate-related-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

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


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

.estate-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(72px,10vw,120px) 0;
}

.estate-cta-art {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}

.estate-cta .estate-wrap {
  position: relative;
  max-width: 660px;
}

.estate-cta-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.estate-cta h2 {
  font-size: clamp(1.6rem,3.2vw,2.15rem);
  margin-bottom: 18px;
  line-height: 1.3;
  color: var(--on-navy);
}

.estate-cta p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--on-navy-mute);
  margin-bottom: 36px;
}

.estate-cta-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}


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

.estate-sticky-cta {
  display: none;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 980px) {

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

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

  .estate-hero-art {
    order: -1;
    aspect-ratio: 16 / 9;
  }

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

  .estate-ownership-grid {
    grid-template-columns: 1fr;
  }

  .estate-continuity-grid {
    grid-template-columns: 1fr;
  }

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

  .estate-research-row .estate-tag {
    width: auto;
  }

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

  .estate-path-flow {
    flex-wrap: wrap;
  }

  .estate-path-step {
    flex: 1 1 calc(50% - 16px);
    margin-bottom: 26px;
  }

  .estate-path-step::after {
    display: none;
  }

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

  .estate-fw-mobile {
    display: block;
    max-width: 520px;
    margin: 0 auto;
  }

  .estate-fw-mobile-step {
    position: relative;
    padding: 0 0 clamp(20px,3vw,26px) 34px;
  }

  .estate-fw-mobile-step::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }

  .estate-fw-mobile-step::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 16px;
    bottom: 0;
    width: 1px;
    background: rgba(11,31,51,0.18);
  }

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

  .estate-fw-mobile-num {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 4px;
  }

  .estate-fw-mobile-step h3 {
    font-size: 0.98rem;
    margin-bottom: 6px;
  }

  .estate-fw-mobile-step p {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--on-cream-mute);
  }

  .estate-assets-row {
    grid-template-columns: 40px 1fr;
  }

  .estate-assets-row h3 {
    grid-column: 2;
  }

  .estate-assets-row p {
    grid-column: 2;
  }

  .estate-gaps-grid {
    grid-template-columns: 1fr;
  }

  .estate-wp-grid {
    grid-template-columns: 1fr;
    gap: clamp(36px,4.5vw,48px);
  }


  /* Mobile sticky CTA */

  .estate-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);
  }

  .estate-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;
  }

  .estate-sticky-cta a:first-child {
    border-right: 1px solid rgba(201,162,77,0.18);
    color: var(--gold);
    font-weight: 500;
  }

  .estate-root {
    padding-bottom: 56px;
  }
}


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

@media (max-width: 640px) {

  .estate-path-step {
    flex: 1 1 100%;
  }

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

  .estate-cta-actions {
    align-items: center;
  }

  .estate-assets-row {
    grid-template-columns: 1fr;
  }

  .estate-assets-row span.estate-assets-num {
    display: none;
  }
}