@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --ink:        #16202E;
  --ink-2:      #1F2C3D;
  --paper:      #F7F3EB;
  --paper-alt:  #EFE9DC;
  --card:       #FCFAF4;
  --brass:      #8A5A12;
  --brass-2:    #A06C1C;
  --brass-dk:   #D7A647;
  --muted:      #5A636F;
  --muted-2:    #7C8593;
  --line:       #DBD3C3;
  --line-dk:    rgba(255,255,255,0.13);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.js [data-reveal] { opacity: 0; transform: translateY(18px); }
html.js [data-reveal].in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.serif { font-family: 'Fraunces', Georgia, serif; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
main, nav, footer { position: relative; z-index: 2; }

/* ─────────────── NAV ─────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,235,0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand .b-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.brand .b-sub { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-top: 5px; font-weight: 600; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500; position: relative; }
.nav-links a:not(.nav-cta)::after { content:''; position:absolute; left:0; right:0; bottom:-6px; height:1px; background:var(--brass); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-cta { border: 1px solid var(--ink); padding: 9px 18px; border-radius: 2px; font-weight: 600; transition: background .25s, color .25s; }
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }

/* ─────────────── HERO (home) ─────────────── */
.hero { padding: 96px 0 76px; border-bottom: 1px solid var(--line); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); font-weight: 700; margin-bottom: 30px; }
.eyebrow::before { content:''; width: 34px; height: 1px; background: var(--brass); display:inline-block; }
.hero h1 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(40px, 6.2vw, 72px); line-height: 1.04; letter-spacing: -.025em; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 56ch; margin: 30px 0 40px; line-height: 1.62; }
.ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; text-decoration: none; border-radius: 2px; transition: all .25s; cursor: pointer; }
.btn-fill { background: var(--ink); color: var(--paper); padding: 15px 28px; }
.btn-fill:hover { background: var(--brass); }
.btn-fill svg { transition: transform .25s; }
.btn-fill:hover svg { transform: translateX(4px); }
.btn-ghost { color: var(--ink); padding: 15px 6px; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn-ghost:hover { color: var(--brass); border-color: var(--brass); }
.btn-light { background: var(--paper); color: var(--ink); padding: 15px 28px; }
.btn-light:hover { background: var(--brass-dk); }

.hero-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.strip-item { padding: 26px 26px 26px 0; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: none; }
.strip-item .n { font-family: 'Fraunces', serif; font-weight: 600; font-size: 30px; color: var(--ink); letter-spacing: -.02em; }
.strip-item .l { font-size: 12.5px; color: var(--muted-2); margin-top: 4px; line-height: 1.4; }

/* ─────────────── PAGE HEADER (interior) ─────────────── */
.page-head { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.page-head .eyebrow { margin-bottom: 22px; }
.page-head h1 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -.025em; max-width: 18ch; }
.page-head h1 em { font-style: italic; color: var(--brass); }
.page-head .ph-sub { font-size: 18.5px; color: var(--muted); max-width: 58ch; margin-top: 22px; line-height: 1.6; }

/* ─────────────── SECTION SCAFFOLD ─────────────── */
section { padding: 88px 0; }
.sec-alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-dark { background: var(--ink); color: var(--paper); }
.kicker { display: flex; align-items: center; gap: 12px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); font-weight: 700; margin-bottom: 18px; }
.kicker .mark { font-family:'Fraunces',serif; font-style: italic; font-size: 14px; color: var(--muted-2); letter-spacing: 0; }
.sec-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: -.02em; max-width: 20ch; }
.sec-sub { font-size: 17.5px; color: var(--muted); max-width: 60ch; margin-top: 20px; line-height: 1.6; }
.sec-dark .sec-sub { color: rgba(247,243,235,0.72); }
.sec-dark .sec-title { color: var(--paper); }
.sec-dark .kicker { color: var(--brass-dk); }

.ico { width: 26px; height: 26px; stroke: var(--brass); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────── VALUE PROPS ─────────────── */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 8px; }
.val { padding: 4px 36px 4px 0; border-left: 1px solid var(--line); padding-left: 32px; }
.val:first-child { border-left: none; padding-left: 0; }
.val .ico { width: 30px; height: 30px; margin-bottom: 22px; }
.val h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 12px; }
.val p { font-size: 15px; color: var(--muted); line-height: 1.66; }

/* ─────────────── SERVICES ─────────────── */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc { background: var(--paper); padding: 40px 38px; position: relative; transition: background .3s; }
.sec-alt .svc { background: var(--paper-alt); }
.svc:hover { background: var(--card); }
.svc-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--brass); margin-bottom: 14px; display: block; }
.svc h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 23px; line-height: 1.18; letter-spacing: -.015em; margin-bottom: 14px; }
.svc p { font-size: 14.5px; color: var(--muted); line-height: 1.66; margin-bottom: 20px; }
.svc-deliver { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; padding: 14px 0 0; border-top: 1px solid var(--line); }
.svc-deliver b { color: var(--brass); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; font-size: 11px; display: block; margin-bottom: 5px; }
.svc-price { margin-top: 18px; font-size: 14px; color: var(--ink); }
.svc-price b { font-family: 'Fraunces', serif; font-weight: 600; }

/* services preview (home) */
.svc-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.svc-mini { background: var(--paper); padding: 30px 28px; transition: background .3s; }
.svc-mini:hover { background: var(--card); }
.svc-mini .m-num { font-family:'Fraunces',serif; font-style: italic; font-size: 13px; color: var(--brass); display: block; margin-bottom: 10px; }
.svc-mini h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; line-height: 1.2; margin-bottom: 8px; }
.svc-mini p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.svc-mini .m-price { font-size: 13px; color: var(--ink); font-weight: 600; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.link-arrow svg { transition: transform .25s; }
.link-arrow:hover { color: var(--brass); border-color: var(--brass); }
.link-arrow:hover svg { transform: translateX(4px); }
.sec-dark .link-arrow { color: var(--paper); border-color: var(--paper); }
.sec-dark .link-arrow:hover { color: var(--brass-dk); border-color: var(--brass-dk); }

/* ─────────────── WHY INDEPENDENT ─────────────── */
.conflict { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; margin-top: 8px; }
.conflict-text p { font-size: 16px; color: rgba(247,243,235,0.82); line-height: 1.78; margin-bottom: 20px; }
.conflict-text strong { color: var(--paper); font-weight: 600; }
.conflict-text em { color: var(--brass-dk); font-style: italic; }
.pledge { margin-top: 30px; border-left: 2px solid var(--brass-dk); padding: 4px 0 4px 24px; }
.pledge .p-label { font-family: 'Fraunces', serif; font-style: italic; color: var(--brass-dk); font-size: 17px; margin-bottom: 8px; }
.pledge p { font-size: 15px; color: rgba(247,243,235,0.82); line-height: 1.72; margin: 0; }
.conflict-list { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dk); border-radius: 3px; }
.cl-head { padding: 22px 28px; border-bottom: 1px solid var(--line-dk); font-family:'Fraunces',serif; font-style: italic; font-size: 18px; color: var(--paper); }
.cl-item { display: flex; gap: 16px; padding: 20px 28px; border-bottom: 1px solid var(--line-dk); }
.cl-item:last-child { border-bottom: none; }
.cl-item .ico { stroke: var(--brass-dk); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.cl-item strong { display: block; color: var(--paper); font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cl-item span { font-size: 13.5px; color: rgba(247,243,235,0.62); line-height: 1.55; }

/* ─────────────── WHO WE HELP ─────────────── */
.clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }
.client { background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 30px 28px; transition: transform .3s, box-shadow .3s; }
.client:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(22,32,46,0.4); }
.client .ico { width: 28px; height: 28px; margin-bottom: 18px; }
.client h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; line-height: 1.2; margin-bottom: 10px; }
.client p { font-size: 14px; color: var(--muted); line-height: 1.62; }
.tag { display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--brass); border: 1px solid var(--line); padding: 4px 11px; border-radius: 2px; }

/* ─────────────── PROCESS ─────────────── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 8px; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.step .s-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--brass); position: absolute; top: -1px; right: 0; transform: translateY(-130%); }
.step .s-mark { font-family: 'Fraunces', serif; font-weight: 600; font-size: 34px; color: var(--ink); line-height: 1; margin-bottom: 14px; letter-spacing: -.02em; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─────────────── ABOUT ─────────────── */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; margin-top: 8px; }
.about-text p { font-size: 16px; color: var(--ink-2); line-height: 1.82; margin-bottom: 18px; }
.about-text strong { color: var(--ink); font-weight: 700; }
.about-text em { font-style: italic; }
.creds { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.cred { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.cred svg { width: 18px; height: 18px; stroke: var(--brass); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.bio { background: var(--ink); color: var(--paper); border-radius: 4px; padding: 40px 38px; position: sticky; top: 96px; }
.bio .b-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 26px; letter-spacing: -.01em; }
.bio .b-role { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-dk); margin-top: 6px; margin-bottom: 28px; }
.bio .b-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; line-height: 1.6; color: rgba(247,243,235,0.9); padding-left: 20px; border-left: 2px solid var(--brass-dk); margin-bottom: 30px; }
.bio-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-top: 26px; border-top: 1px solid var(--line-dk); }
.bio-stat .v { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--paper); }
.bio-stat .k { font-size: 12px; color: rgba(247,243,235,0.55); margin-top: 2px; }

/* ─────────────── CONTACT ─────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 8px; }
.opts { display: flex; flex-direction: column; gap: 16px; }
.opt { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line-dk); }
.opt:first-child { padding-top: 0; }
.opt .ico { stroke: var(--brass-dk); width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.opt h4 { font-size: 15px; font-weight: 700; color: var(--paper); margin-bottom: 4px; }
.opt p { font-size: 14px; color: rgba(247,243,235,0.62); line-height: 1.55; }
.opt a { color: var(--brass-dk); text-decoration: none; }
.opt a:hover { text-decoration: underline; }
.disclaimer { margin-top: 26px; font-size: 13px; color: rgba(247,243,235,0.55); line-height: 1.65; border-left: 2px solid var(--line-dk); padding-left: 18px; }
.disclaimer strong { color: rgba(247,243,235,0.8); }
.pricecard { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dk); border-radius: 4px; padding: 32px 34px; }
.pricecard h3 { font-family:'Fraunces',serif; font-style: italic; font-size: 18px; color: var(--paper); margin-bottom: 8px; }
.pricecard .pc-note { font-size: 12.5px; color: rgba(247,243,235,0.5); margin-bottom: 22px; }
.prow { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-dk); }
.prow:last-of-type { border-bottom: none; }
.prow .pn { font-size: 14px; color: rgba(247,243,235,0.85); }
.prow .pp { font-family:'Fraunces',serif; font-weight: 600; font-size: 15px; color: var(--brass-dk); white-space: nowrap; padding-left: 16px; }
.pc-foot { margin-top: 20px; font-size: 11.5px; color: rgba(247,243,235,0.45); }

/* ─────────────── CTA BAND ─────────────── */
.cta-band { background: var(--ink); color: var(--paper); border-radius: 4px; padding: 56px 56px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family:'Fraunces',serif; font-weight: 500; font-size: clamp(26px,3.4vw,36px); line-height: 1.15; letter-spacing: -.02em; max-width: 18ch; }
.cta-band p { color: rgba(247,243,235,0.7); font-size: 16px; margin-top: 12px; max-width: 44ch; }

/* ─────────────── FOOTER ─────────────── */
footer { background: var(--ink-2); color: rgba(247,243,235,0.5); padding: 48px 0 36px; border-top: 1px solid var(--line-dk); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--line-dk); }
.foot-brand .f-name { font-family:'Fraunces',serif; font-weight: 600; font-size: 19px; color: rgba(247,243,235,0.9); }
.foot-brand .f-sub { font-size: 12.5px; margin-top: 6px; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-dk); }
.foot-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h5 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,235,0.4); margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(247,243,235,0.7); text-decoration: none; font-size: 14px; margin-bottom: 9px; }
.foot-col a:hover { color: var(--brass-dk); }
.f-legal { margin-top: 26px; font-size: 12px; color: rgba(247,243,235,0.4); line-height: 1.6; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 940px) {
  .wrap { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 64px 0 56px; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(2) { border-right: none; }
  section { padding: 60px 0; }
  .values { grid-template-columns: 1fr; gap: 36px; }
  .val { border-left: none; padding-left: 0; }
  .services, .svc-mini-grid { grid-template-columns: 1fr; }
  .conflict, .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .clients { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 28px; }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .bio { order: -1; position: static; }
  .cta-band { padding: 40px 32px; }
}
@media (max-width: 500px) {
  .hero-strip { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
}

/* ─────────────── CONTACT FORM (dark) ─────────────── */
.form-wrap h3 { font-family:'Fraunces',serif; font-style: italic; font-size: 20px; color: var(--paper); margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,243,235,0.55); margin-bottom: 7px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dk); border-radius: 3px;
  padding: 13px 15px; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; color: var(--paper);
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,243,235,0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass-dk); background: rgba(255,255,255,0.08); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23D7A647' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field select option { background: var(--ink); color: var(--paper); }
.btn-submit { background: var(--brass-dk); color: var(--ink); border: none; padding: 15px 30px; border-radius: 3px;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .25s; }
.btn-submit:hover { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; margin-top: 8px; }
.contact-aside { display: flex; flex-direction: column; gap: 28px; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ─────────────── AUDIT → RETAINER FLOW ─────────────── */
.flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; margin-top: 8px; }
.flow-card { background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 38px 36px; }
.flow-card.is-lead { border-color: var(--ink); box-shadow: 0 22px 55px -32px rgba(22,32,46,.55); }
.flow-step { font-family:'Fraunces',serif; font-style:italic; font-size:14px; color:var(--brass); margin-bottom: 14px; }
.flow-card h3 { font-family:'Fraunces',serif; font-weight:600; font-size:25px; line-height:1.15; letter-spacing:-.02em; margin-bottom:14px; }
.flow-card p { font-size:15px; color:var(--muted); line-height:1.72; }
.flow-card p strong { color: var(--ink); font-weight:600; }
.flow-arrow { display:flex; align-items:center; justify-content:center; }
.flow-arrow svg { width: 28px; height: 28px; stroke: var(--brass); stroke-width: 1.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }
@media (max-width:940px){ .flow { grid-template-columns: 1fr; gap:18px; } .flow-arrow svg { transform: rotate(90deg); } }

/* ─────────────── WHERE WE FIT ─────────────── */
.compare { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:8px; align-items:start; }
.cmp { background: var(--card); border:1px solid var(--line); border-radius:4px; padding:30px 28px; }
.cmp.is-us { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.cmp .cmp-name { font-family:'Fraunces',serif; font-weight:600; font-size:19px; line-height:1.2; margin-bottom:6px; }
.cmp.is-us .cmp-name { color: var(--paper); }
.cmp .cmp-tag { font-size:11px; letter-spacing:.12em; text-transform:uppercase; font-weight:700; color:var(--brass); margin-bottom:22px; }
.cmp.is-us .cmp-tag { color: var(--brass-dk); }
.cmp dl { display:flex; flex-direction:column; gap:15px; margin:0; }
.cmp dt { font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-2); margin-bottom:3px; }
.cmp.is-us dt { color: rgba(247,243,235,.5); }
.cmp dd { font-size:14px; color:var(--ink-2); line-height:1.5; margin:0; }
.cmp.is-us dd { color: rgba(247,243,235,.85); }
@media (max-width:940px){ .compare { grid-template-columns:1fr; } }

/* ─────────────── ALSO AVAILABLE ─────────────── */
.also { display:grid; grid-template-columns: repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:8px; }
.also-item { background:var(--paper); padding:26px 28px; }
.sec-alt .also-item { background: var(--paper-alt); }
.also-item h4 { font-family:'Fraunces',serif; font-weight:600; font-size:16px; margin-bottom:7px; }
.also-item p { font-size:13px; color:var(--muted); line-height:1.55; }
@media (max-width:940px){ .also { grid-template-columns:1fr; } }

/* service pairing note */
.svc-pair { margin-top:16px; font-size:12.5px; font-style:italic; color:var(--brass); font-family:'Fraunces',serif; }
.svc.is-flagship { background: var(--card); }
.svc.is-flagship::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--brass); }
.flag-badge { display:inline-block; font-size:10px; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:var(--brass); border:1px solid var(--brass); border-radius:2px; padding:3px 9px; margin-left:10px; vertical-align:middle; }

/* ─────────────── FEES CARD (dark, replaces price table) ─────────────── */
.fees-card { background: rgba(255,255,255,0.04); border:1px solid var(--line-dk); border-radius:4px; padding:32px 34px; }
.fees-card h3 { font-family:'Fraunces',serif; font-style:italic; font-size:18px; color:var(--paper); margin-bottom:6px; }
.fees-card .fc-note { font-size:12.5px; color:rgba(247,243,235,.5); margin-bottom:20px; }
.fee-step { display:flex; gap:15px; padding:15px 0; border-bottom:1px solid var(--line-dk); }
.fee-step:last-child { border-bottom:none; }
.fee-step .fn { font-family:'Fraunces',serif; font-style:italic; color:var(--brass-dk); font-size:16px; flex-shrink:0; line-height:1.4; }
.fee-step .ft h5 { font-size:14px; color:var(--paper); font-weight:700; margin-bottom:3px; }
.fee-step .ft p { font-size:13px; color:rgba(247,243,235,.65); line-height:1.5; }

/* fees explainer (light, services page) */
.fees-row { display:grid; grid-template-columns: repeat(3,1fr); gap:0; margin-top:8px; }
.fees-col { padding:4px 32px 4px 0; border-left:1px solid var(--line); padding-left:30px; }
.fees-col:first-child { border-left:none; padding-left:0; }
.fees-col .fc-num { font-family:'Fraunces',serif; font-style:italic; font-size:15px; color:var(--brass); margin-bottom:12px; }
.fees-col h3 { font-family:'Fraunces',serif; font-weight:600; font-size:19px; margin-bottom:9px; letter-spacing:-.01em; }
.fees-col p { font-size:14px; color:var(--muted); line-height:1.62; }
@media (max-width:940px){ .fees-row { grid-template-columns:1fr; gap:30px; } .fees-col { border-left:none; padding-left:0; } }

/* ─────────────── OUTCOMES ─────────────── */
.outcomes { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:8px; }
.outcome { border-top:2px solid var(--ink); padding-top:22px; }
.outcome h3 { font-family:'Fraunces',serif; font-weight:600; font-size:18px; line-height:1.2; letter-spacing:-.01em; margin-bottom:9px; }
.outcome p { font-size:13.5px; color:var(--muted); line-height:1.6; }
.sec-dark .outcome { border-top-color: var(--brass-dk); }
.sec-dark .outcome h3 { color:var(--paper); }
.sec-dark .outcome p { color:rgba(247,243,235,.7); }
@media (max-width:940px){ .outcomes { grid-template-columns:1fr 1fr; gap:24px; } }
@media (max-width:500px){ .outcomes { grid-template-columns:1fr; } }

/* voting-power callout */
.vp-callout { background: rgba(215,166,71,0.08); border:1px solid rgba(215,166,71,0.3); border-radius:4px; padding:24px 26px; margin-top:26px; }
.vp-callout .vp-label { font-family:'Fraunces',serif; font-style:italic; color:var(--brass-dk); font-size:16px; margin-bottom:8px; }
.vp-callout p { font-size:15px; color:rgba(247,243,235,.85); line-height:1.7; margin:0; }

/* ─────────────── MOBILE NAV ─────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,32,46,.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: var(--ink);
  z-index: 300;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.nav-drawer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -.01em;
}
.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--paper);
  line-height: 0;
}
.nav-drawer-close svg {
  width: 22px;
  height: 22px;
  stroke: rgba(247,243,235,.7);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  transition: stroke .2s;
}
.nav-drawer-close:hover svg { stroke: var(--paper); }

.nav-drawer-links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nav-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.nav-drawer-links li:last-child {
  border-bottom: none;
  margin-top: auto;
  padding-top: 28px;
}
.nav-drawer-links a {
  display: block;
  color: rgba(247,243,235,.8);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 17px 0;
  transition: color .2s;
  letter-spacing: -.01em;
}
.nav-drawer-links a:hover { color: var(--paper); }
.nav-drawer-links li:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass-dk);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border: 1px solid var(--brass-dk);
  border-radius: 2px;
  transition: background .25s, color .25s;
}
.nav-drawer-links li:last-child a:hover {
  background: var(--brass-dk);
  color: var(--ink);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
