/* ============================================================
   EmblemAir : Operator's Ledger design system
   Warm cream paper, deep navy ink. Editorial, methodical,
   like a well-set print logbook translated to the web.
   ============================================================ */

:root {
  --paper:   #f4f1ea;
  --paper-2: #eee7da;
  --paper-3: #e7dfce;
  --navy:    #1a2a4a;
  --navy-hi: #24365c;
  --charcoal: #14203a;

  --gold:        #a97f34;
  --gold-bright: #d3b06a;
  --gold-soft:   rgba(169, 127, 52, 0.16);

  --ink:   #1a2a4a;
  --body:  rgba(26, 42, 74, 0.80);
  --muted: rgba(26, 42, 74, 0.56);
  --faint: rgba(26, 42, 74, 0.34);
  --line:  rgba(26, 42, 74, 0.40);
  --line-soft: rgba(26, 42, 74, 0.24);

  --on-navy:      #f4f1ea;
  --on-navy-soft: rgba(244, 241, 234, 0.72);
  --on-navy-faint:rgba(244, 241, 234, 0.40);
  --line-navy:    rgba(244, 241, 234, 0.20);

  --serif: Georgia, 'Times New Roman', 'Iowan Old Style', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, 'SFMono-Regular', 'Courier New', monospace;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(26, 42, 74, 0.16); }

/* ---------- Type primitives ---------- */
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

.label {
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.index {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.14em;
  color: var(--navy);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.07;
  color: var(--ink);
}
.display em { font-style: italic; }
h1.display { font-size: clamp(38px, 5.6vw, 72px); }
h2.display { font-size: clamp(30px, 4.2vw, 52px); }
h3.display { font-size: clamp(22px, 2.5vw, 30px); }

.lede {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: var(--body);
  font-weight: 400;
}
.body { font-size: 15.5px; line-height: 1.78; color: var(--body); }
.measure    { max-width: 560px; }
.measure-lg { max-width: 680px; }
.center     { text-align: center; }
.center .measure, .center .measure-lg { margin-left: auto; margin-right: auto; }

.rule { height: 1px; background: var(--line); border: 0; }
.rule-soft { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--navy);
  color: var(--on-navy);
  background: var(--navy);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:hover { background: transparent; color: var(--navy); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(26,42,74,0.04); }

.btn-on-navy { border-color: var(--on-navy); background: var(--on-navy); color: var(--navy); }
.btn-on-navy:hover { background: transparent; color: var(--on-navy); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.link-arrow .arw { transition: transform 0.3s var(--ease); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- Layout ---------- */
section { padding: 124px 40px; position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.band { border-top: 1px solid var(--line-soft); }
.tint { background: var(--paper-2); }
.tint-3 { background: var(--paper-3); }

/* section masthead: index number + label + hairline */
.masthead { display: flex; align-items: baseline; gap: 18px; margin-bottom: 56px; }
.masthead .no { font: 500 12px/1 var(--mono); letter-spacing: 0.1em; color: var(--gold); }
.masthead .ttl { font: 500 11px/1 var(--mono); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.masthead .ln { flex: 1; height: 1px; background: var(--line); }
.masthead.center { justify-content: center; text-align: center; }

.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .display { margin-bottom: 20px; }

/* ---------- Ledger masthead strip ---------- */
.strip {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 11px 40px;
  font: 500 10.5px/1 var(--mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-navy-soft);
  background: var(--navy);
  text-align: center;
}
.strip .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--on-navy-faint); }
@media (max-width: 620px) { .strip { font-size: 9px; gap: 9px; letter-spacing: 0.14em; padding: 9px 16px; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); padding: 14px 40px; }
.nav-logo { font: 600 16px/1 var(--serif); letter-spacing: 0.02em; color: var(--navy); }
.nav-logo b { font-weight: 600; }
.nav-logo .a { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font: 500 11.5px/1 var(--mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { border: 1px solid var(--navy); padding: 10px 18px; color: var(--navy) !important; transition: background 0.3s var(--ease), color 0.3s var(--ease) !important; }
.nav-cta:hover { background: var(--navy); color: var(--on-navy) !important; }

.hamburger { display: none; width: 28px; height: 15px; position: relative; cursor: pointer; z-index: 110; }
.hamburger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--navy); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), top 0.35s var(--ease); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { top: 100%; }
.hamburger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 105; background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--serif); font-size: 30px; color: var(--navy); }
.mobile-nav a.gold { font-style: italic; }

/* ---------- Hero ---------- */
.hero { padding: 76px 40px 96px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.hero-meta .label { color: var(--navy); }
.hero-meta .ln { width: 46px; height: 1px; background: var(--line); }
.hero h1.display { margin-bottom: 28px; }
.hero .lede { max-width: 540px; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
}
.hero-figure .frame img { width: 100%; height: 116%; object-fit: cover; object-position: center; }
.hero-figure .cap {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 12px;
  font: 500 10px/1.5 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
}
/* animated instrument dial, top-left of figure */
.dial { position: absolute; top: -26px; left: -26px; width: 88px; height: 88px; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; z-index: 2; }
.dial svg { width: 66px; height: 66px; }
@media (max-width: 960px) { .dial { width: 70px; height: 70px; top: -20px; left: 14px; } .dial svg { width: 52px; height: 52px; } }

/* ---------- Ledger entries (value pillars) : bordered boxes ---------- */
.ledger { display: grid; gap: 16px; }
.ledger-row {
  display: grid; grid-template-columns: 84px 1fr; gap: 32px;
  padding: 34px 36px;
  border: 1px solid var(--navy);
  background: var(--paper);
  align-items: start;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.ledger-row:hover { box-shadow: 0 12px 32px -20px rgba(26, 42, 74, 0.5); transform: translateY(-2px); }
.ledger-row .no { font: 500 13px/1 var(--mono); color: var(--navy); letter-spacing: 0.08em; padding-top: 6px; }
.ledger-row h3 { font-family: var(--serif); font-size: clamp(21px, 2.2vw, 26px); font-weight: 400; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.ledger-row p { font-size: 15px; line-height: 1.76; color: var(--body); max-width: 640px; }
.ledger-row .tag { display: inline-block; margin-top: 14px; font: 500 10px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }

/* ---------- Case file (process) : bordered boxes ---------- */
.casefile { display: grid; gap: 16px; max-width: 960px; margin: 0 auto; }
.case-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 40px;
  padding: 40px 40px;
  border: 1px solid var(--navy);
  background: var(--paper);
  align-items: start;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.case-row:hover { box-shadow: 0 12px 32px -20px rgba(26, 42, 74, 0.5); transform: translateY(-2px); }
.case-num { font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); font-weight: 400; color: var(--navy); line-height: 0.9; }
.case-body h3 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.case-body p { font-size: 15.5px; line-height: 1.78; color: var(--body); max-width: 640px; }
.case-body .meta { margin-top: 16px; font: 500 10.5px/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

/* ---------- Figure band (full-width image with parallax) ---------- */
.figband { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.figband .parallax { width: 100%; height: 100%; }
.figband-inner { height: clamp(320px, 46vw, 560px); position: relative; overflow: hidden; }
.figband-inner img { width: 100%; height: 128%; object-fit: cover; position: absolute; top: -14%; left: 0; }
.figband .cap { position: absolute; left: 24px; bottom: 18px; z-index: 2; font: 500 10.5px/1.5 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-navy); background: rgba(26,42,74,0.72); padding: 7px 12px; }

/* framed inline figure */
.figure { border: 1px solid var(--line); overflow: hidden; position: relative; }
.figure img { width: 100%; display: block; }
.figure .cap { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; border-top: 1px solid var(--line); font: 500 10px/1.4 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); background: var(--paper); }

/* ---------- Offer tiers ---------- */
.tiers { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 26px; align-items: center; }
.offer-solo { max-width: 640px; margin: 0 auto; }
.tier { display: flex; flex-direction: column; padding: 44px 40px; border: 1px solid var(--line); background: var(--paper); }
.tier.flag {
  border: 1px solid var(--charcoal);
  border-top: 3px solid var(--gold-bright);
  background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
  color: var(--on-navy);
  padding: 56px 48px;
  box-shadow: 0 34px 74px -36px rgba(20, 32, 58, 0.7);
}
.tier.flag .btn-on-navy { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--charcoal); }
.tier.flag .btn-on-navy:hover { background: transparent; color: var(--gold-bright); }
.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.tier-kicker { font: 500 10.5px/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.tier.flag .tier-kicker { color: var(--gold-bright); }
.tier-no { font: 500 11px/1 var(--mono); color: var(--faint); }
.tier.flag .tier-no { color: var(--gold-bright); opacity: 0.85; }
.tier h3 { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 12px; }
.tier-sub { font-size: 14.5px; line-height: 1.7; color: var(--body); margin-bottom: 28px; }
.tier.flag .tier-sub { color: var(--on-navy-soft); }
.tier-price { display: flex; align-items: baseline; gap: 10px; padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.tier.flag .tier-price { border-bottom-color: var(--line-navy); }
.tier-price .amt { font-family: var(--serif); font-size: clamp(34px, 4vw, 46px); line-height: 1; letter-spacing: -0.01em; }
.tier-price .per { font: 500 10.5px/1.4 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.tier.flag .tier-price .per { color: var(--gold-bright); }
.tier-list { list-style: none; margin-bottom: 34px; flex: 1; }
.tier-list li { position: relative; padding: 12px 0 12px 24px; font-size: 14.5px; line-height: 1.5; color: var(--body); border-top: 1px solid var(--line-soft); }
.tier-list li:first-child { border-top: 0; }
.tier.flag .tier-list li { color: var(--on-navy-soft); border-top-color: var(--line-navy); }
.tier-list li::before { content: ''; position: absolute; left: 2px; top: 20px; width: 7px; height: 1px; background: var(--navy); }
.tier.flag .tier-list li::before { background: var(--gold-bright); }
.tier .btn, .tier .btn-ghost, .tier .btn-on-navy { width: 100%; justify-content: center; }

/* ---------- Why (quiet statement over navy) ---------- */
.statement { background: var(--navy); color: var(--on-navy); }
.statement .masthead .no, .statement .masthead .ttl { color: var(--on-navy-soft); }
.statement .masthead .ln { background: var(--line-navy); }
.statement .display { color: var(--on-navy); }
.statement .lede { color: var(--on-navy-soft); }
.statement .figure-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 8px; }
.statement .stat-line { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line-navy); }
.statement .stat .n { font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); color: var(--on-navy); line-height: 1; margin-bottom: 12px; }
.statement .stat .l { font: 500 10.5px/1.5 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-navy-faint); }
.statement .frame { border: 1px solid var(--line-navy); overflow: hidden; aspect-ratio: 16/10; }
.statement .frame img { width: 100%; height: 118%; object-fit: cover; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta .display { margin-bottom: 22px; }
.cta .lede { margin-bottom: 40px; }

/* ---------- About: dossier ---------- */
.dossier { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.dossier .card { border: 1px solid var(--line); background: var(--paper); }
.dossier .card .photo { aspect-ratio: 4/5; background: var(--paper-3); display: grid; place-items: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.dossier .card .photo .mono-mark { font-family: var(--serif); font-size: clamp(52px, 6vw, 76px); color: var(--navy); }
.dossier .card .rows { padding: 8px 22px 14px; }
.dossier .card .drow { display: flex; justify-content: space-between; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line-soft); font-size: 13px; }
.dossier .card .drow:first-child { border-top: 0; }
.dossier .card .drow .k { font: 500 10px/1.4 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.dossier .card .drow .v { color: var(--body); text-align: right; }
.dossier-text .kicker { font: 500 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.dossier-text h2 { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 26px; line-height: 1.1; }
.dossier-text p { font-size: 16px; line-height: 1.82; color: var(--body); margin-bottom: 20px; }
.dossier-text p:last-child { margin-bottom: 0; }

/* principles */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-soft); }
.principle { padding: 40px 34px; border-left: 1px solid var(--line-soft); }
.principle:first-child { border-left: 0; }
.principle .p-no { font: 500 12px/1 var(--mono); color: var(--navy); margin-bottom: 20px; }
.principle h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.principle p { font-size: 14.5px; line-height: 1.72; color: var(--body); }

/* ---------- Contact form ---------- */
.form-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.form-aside .kicker { font: 500 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.form-aside h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 400; line-height: 1.12; margin-bottom: 22px; letter-spacing: -0.01em; }
.form-aside p { font-size: 15px; line-height: 1.75; color: var(--body); margin-bottom: 24px; max-width: 420px; }
.aside-email { display: inline-block; font-size: 15px; color: var(--navy); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color 0.3s var(--ease); word-break: break-word; }
.aside-email:hover { border-color: var(--navy); }
.aside-meta { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.aside-meta p { font-size: 13.5px; color: var(--muted); font-style: italic; max-width: 420px; margin: 0; }

.form-card { border: 1px solid var(--line); background: var(--paper); padding: 48px 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 30px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font: 500 10px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: var(--sans); font-size: 15px; padding: 10px 0; outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--navy); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1 L6 6 L11 1' stroke='%231a2a4a' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 24px;
}
.field select option { background: var(--paper); color: var(--ink); }
.field input[type="date"] { color-scheme: light; }
.submit-btn { grid-column: 1 / -1; margin-top: 18px; width: 100%; justify-content: center; }

.thanks { text-align: center; padding: 32px 0; }
.thanks .label { color: var(--navy); margin-bottom: 20px; display: inline-block; }
.thanks h3 { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px); font-weight: 400; line-height: 1.2; margin-bottom: 18px; }
.thanks h3 em { font-style: italic; }
.thanks .rule { width: 44px; margin: 22px auto; }
.thanks p { font-size: 15px; line-height: 1.7; color: var(--body); max-width: 440px; margin: 0 auto; }
.thanks a { color: var(--navy); border-bottom: 1px solid var(--line); }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: var(--on-navy); padding: 76px 40px 34px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: 60px; max-width: var(--maxw); margin: 0 auto; padding-bottom: 46px; border-bottom: 1px solid var(--line-navy); }
.footer-logo { font: 600 17px/1 var(--serif); color: var(--on-navy); margin-bottom: 18px; }
.footer-tagline { font-size: 13.5px; color: var(--on-navy-soft); line-height: 1.75; max-width: 320px; }
.footer-title { font: 500 10.5px/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-navy-faint); margin-bottom: 20px; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 12px; font-size: 14px; color: var(--on-navy-soft); }
.footer-list a { transition: color 0.3s var(--ease); }
.footer-list a:hover { color: var(--on-navy); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-fine { font: 500 11px/1.5 var(--mono); letter-spacing: 0.06em; color: var(--on-navy-faint); }

/* ---------- Reveal (JS adds .is-in) ---------- */
[data-anim] { opacity: 0; transform: translateY(26px); }
.anim-ready [data-anim] { will-change: opacity, transform; }
[data-anim].is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
/* If JS/GSAP absent or reduced motion, never hide content */
.no-anim [data-anim], html:not(.anim-ready) [data-anim] { opacity: 1; transform: none; }
/* Animations run regardless of the OS reduce-motion setting (site-owner choice). */

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  section { padding: 78px 22px; }
  .hero { padding: 40px 22px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-figure { max-width: 440px; }
  .hero .lede { max-width: 100%; }
  .masthead { margin-bottom: 40px; }
  .tiers { grid-template-columns: 1fr; gap: 20px; }
  .dossier { grid-template-columns: 1fr; gap: 44px; }
  .dossier .card { max-width: 420px; }
  .principles { grid-template-columns: 1fr; }
  .principle { border-left: 0; border-top: 1px solid var(--line-soft); }
  .principle:first-child { border-top: 0; }
  .statement .figure-row { grid-template-columns: 1fr; gap: 32px; }
  .form-shell { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 620px) {
  .ledger-row { grid-template-columns: 44px 1fr; gap: 16px; padding: 26px 22px; }
  .case-row { grid-template-columns: 52px 1fr; gap: 18px; padding: 30px 24px; }
  .form-card { padding: 34px 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 24px; }
  .tier { padding: 34px 26px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn, .hero-cta .btn-ghost { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; }
  .statement .stat-line { gap: 32px; }
}

/* ============================================================
   Added: gold accents, smooth scroll, cinematic hero,
   priority ring, friction deletion, typewriter quotes.
   ============================================================ */

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Gold button */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 12px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 28px; border: 1px solid var(--gold-bright);
  background: var(--gold-bright); color: var(--charcoal); cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.btn-gold:hover { background: transparent; color: var(--gold-bright); }

/* Footer wordmark accent */
.footer-logo span { color: var(--gold-bright); }

/* ---------- Cinematic full-bleed hero (Ken Burns) ---------- */
.hero-full { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--charcoal); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; }
.kenburns { animation: kenburns 28s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.03) translate(0, 0); }
  to   { transform: scale(1.15) translate(-1.6%, -1.4%); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,32,58,0.52) 0%, rgba(20,32,58,0.30) 42%, rgba(20,32,58,0.82) 100%),
    linear-gradient(90deg, rgba(20,32,58,0.45) 0%, rgba(20,32,58,0) 55%);
}
.hero-full-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 40px 96px; }
.hero-full .hero-meta { margin-bottom: 26px; }
.hero-full .hero-meta .label { color: var(--gold-bright); }
.hero-full .hero-meta .ln { background: rgba(244,241,234,0.42); }
.hero-full h1.display { color: var(--on-navy); max-width: 16ch; margin-bottom: 26px; text-shadow: 0 2px 34px rgba(0,0,0,0.4); }
.hero-full h1.display em { color: var(--gold-bright); }
.hero-full .lede { color: rgba(244,241,234,0.92); max-width: 600px; margin-bottom: 40px; text-shadow: 0 1px 18px rgba(0,0,0,0.35); }
.hero-full .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-full .btn-ghost { border-color: rgba(244,241,234,0.5); color: var(--on-navy); }
.hero-full .btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(244,241,234,0.06); }
@media (prefers-reduced-motion: reduce) { .kenburns { animation: none; } }

/* ---------- Split hero (blank template, image on the right) ---------- */
.hero-split { background: var(--paper); padding: 0; position: relative; overflow: hidden; }
/* headline mask reveal */
.hero-split h1.display { overflow: hidden; padding-bottom: 2px; }
.hero-hl { display: block; }
/* entrance states (only when animating; fail-safe visible otherwise) */
.anim-ready .hero-split .hero-meta,
.anim-ready .hero-split .lede,
.anim-ready .hero-split .hero-cta,
.anim-ready .flight-path { opacity: 0; }
.anim-ready .hero-hl { transform: translateY(112%); }
/* flight path in the lower-left */
.flight-path { position: absolute; z-index: 2; pointer-events: none; left: clamp(32px, 3vw, 56px); bottom: clamp(30px, 6vh, 64px); width: min(40%, 440px); }
.flight-path svg { width: 100%; height: auto; overflow: visible; display: block; }
.fp-line { fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; }
.fp-ticks line { stroke: var(--gold); stroke-width: 1; opacity: 0.45; }
.fp-start, .fp-dot, .fp-plane { fill: var(--gold); }
.fp-dot { filter: drop-shadow(0 0 4px rgba(211,176,106,0.65)); }
.fp-label { font: 500 10px/1 var(--mono); letter-spacing: 0.18em; fill: var(--muted); }
.fp-label-end { fill: var(--gold); }
@media (max-width: 900px) { .flight-path { display: none; } }
.hero-split-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 0; align-items: stretch; max-width: none; margin: 0; min-height: 78vh; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px clamp(24px, 2.5vw, 40px) 72px clamp(32px, 3vw, 56px); }
.hero-split .hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-split .hero-meta .label { color: var(--navy); }
.hero-split .hero-meta .ln { width: 46px; height: 1px; background: var(--line); }
.hero-split h1.display { margin-bottom: 24px; }
.hero-split .lede { max-width: 640px; margin-bottom: 38px; }
.hero-split .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
/* Image fills nearly the whole right half, no card, blends into the cream page */
.hero-figure-r { position: relative; align-self: stretch; overflow: hidden; }
.hero-figure-r .frame { height: 100%; background: transparent; border-radius: 0; box-shadow: none; overflow: hidden; }
.hero-figure-r .frame img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: 46% 42%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%);
  mask-image: linear-gradient(to right, transparent 0, #000 10%);
}
@media (max-width: 960px) {
  .hero-split { padding: 32px 22px 64px; }
  .hero-split-grid { grid-template-columns: 1fr; gap: 28px; min-height: auto; align-items: start; }
  .hero-copy { padding: 0; }
  .hero-figure-r { order: -1; align-self: auto; overflow: visible; max-width: 560px; margin: 0 auto; }
  .hero-figure-r .frame { height: auto; }
  .hero-figure-r .frame img { height: auto; object-fit: contain; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Priority Ring ---------- */
.ring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ring-pillars { display: grid; gap: 0; margin-top: 8px; }
.ring-pillar { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.ring-pillar:first-child { border-top: 0; padding-top: 0; }
.ring-pillar .rp-no { font: 500 12px/1.5 var(--mono); color: var(--gold); }
.ring-pillar h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.ring-pillar p { font-size: 14px; line-height: 1.62; color: var(--body); }
.ring-wrap { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; max-width: 440px; width: 100%; margin: 0 auto; }
.ring-wrap svg { width: 100%; height: 100%; overflow: visible; }
.ring-track { fill: none; stroke: var(--line); stroke-width: 1; }
.ring-trail { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(211,176,106,0.6)); }
.ring-spoke { stroke: var(--line); stroke-width: 1; }
.ring-node circle { fill: var(--paper); stroke: var(--navy); stroke-width: 1.4; }
.ring-node .nb { fill: var(--gold); }
.ring-node text { font: 500 10px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; fill: var(--navy); }
.ring-center circle { fill: var(--navy); }
.ring-center text { font: 600 12px/1 var(--serif); fill: var(--paper); letter-spacing: 0.04em; }
.ring-center .sub { font: 500 7.5px/1 var(--mono); fill: var(--gold-bright); letter-spacing: 0.2em; }

/* ---------- Friction Deletion ---------- */
.friction { background: var(--paper-2); }
.friction-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.friction-list { display: grid; gap: 2px; max-width: 540px; margin: 52px auto 0; text-align: left; }
.fr-item { position: relative; font-family: var(--serif); font-size: clamp(19px, 2.3vw, 27px); color: var(--body); padding: 13px 0 13px 42px; }
.fr-item .fr-x { position: absolute; left: 4px; top: 50%; transform: translateY(-50%); font: 500 13px/1 var(--mono); color: var(--gold); }
.fr-item .fr-label { transition: color 0.5s var(--ease); }
.fr-item.pre-struck .fr-label { color: var(--body); }
.fr-item .fr-line { position: absolute; left: 42px; right: 0; top: 52%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.friction-result { margin-top: 56px; }
.fr-result { font-family: var(--serif); font-size: clamp(30px, 4.6vw, 56px); color: var(--navy); letter-spacing: -0.015em; line-height: 1.1; }
.fr-result em { font-style: italic; color: var(--gold); }
.fr-result-wrap { opacity: 0; transform: translateY(20px); }
.fr-result-wrap.show { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.no-anim .fr-result-wrap, html:not(.anim-ready) .fr-result-wrap { opacity: 1; transform: none; }

/* ---------- Authority quotes / typewriter ---------- */
.quotes { background: var(--navy); color: var(--on-navy); }
.quotes-inner { max-width: 960px; margin: 0 auto; display: grid; gap: 60px; }
.quote { font-family: var(--serif); font-size: clamp(25px, 3.4vw, 42px); line-height: 1.3; font-weight: 400; letter-spacing: -0.012em; color: var(--on-navy); min-height: 1.3em; }
.quote .em-gold { color: var(--gold-bright); font-style: italic; }
.quote .caret { display: inline-block; width: 2px; height: 0.95em; background: var(--gold-bright); margin-left: 3px; vertical-align: -0.12em; opacity: 0; }
.quote.typing .caret { opacity: 1; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.quote-mark { font: 500 11px/1 var(--mono); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); display: block; margin-bottom: 18px; }
.quotes .masthead .ttl { color: var(--on-navy-soft); }
.quotes .masthead .ln { background: var(--line-navy); }

/* ---------- Responsive for added components ---------- */
@media (max-width: 960px) {
  .hero-full { min-height: 84vh; }
  .hero-full-inner { padding: 0 22px 72px; }
  .ring-grid { grid-template-columns: 1fr; gap: 48px; }
  .ring-wrap { max-width: 360px; order: -1; }
  .quotes-inner { gap: 44px; }
  .tiers { grid-template-columns: 1fr; gap: 22px; }
  .tier.flag { order: -1; padding: 44px 34px; }
}
@media (max-width: 620px) {
  .hero-full { min-height: 80vh; }
  .fr-item { font-size: 19px; padding-left: 36px; }
  .friction-list { gap: 4px; }
}

/* ============================================================
   Background particle plane + note-card treatment
   ============================================================ */
#planefield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
body > .strip, body > header, body > section, body > .figband, body > footer { position: relative; z-index: 1; }

/* sections go transparent so the gold plane shows in the gutters/behind */
section, .tint, .friction, .cta.tint, .statement, .quotes, .hero-split { background: transparent; }
section { padding-top: 58px; padding-bottom: 58px; }

/* subtle gray note card holding each section's content */
section > .wrap {
  background: rgba(247, 245, 241, 0.82);
  border: 1px solid rgba(26, 42, 74, 0.06);
  border-radius: 30px;
  padding: clamp(34px, 4.4vw, 66px);
  box-shadow: 0 34px 90px -50px rgba(26, 42, 74, 0.38);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
/* navy sections stay navy, as cards */
.statement > .wrap, .quotes > .wrap { background: var(--navy); border-color: rgba(244,241,234,0.10); }

/* hero: transparent bg (assembly shows); copy sits on a card */
.hero-copy {
  background: rgba(247, 245, 241, 0.82);
  border: 1px solid rgba(26, 42, 74, 0.06);
  border-radius: 30px;
  margin: 0 0 0 clamp(16px, 2vw, 40px);
  padding: clamp(40px, 4vw, 64px);
  box-shadow: 0 34px 90px -50px rgba(26, 42, 74, 0.34);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}

/* footer sits above the canvas normally (already navy) */
footer { position: relative; z-index: 1; }

@media (max-width: 900px) {
  section > .wrap { border-radius: 22px; padding: 30px 22px; }
  .hero-copy { margin: 0; border-radius: 22px; }
}

/* background route replaces the small hero flight-path */
.flight-path { display: none; }

/* ============================================================
   v2: fully transparent pages so the giant background plane shows
   ============================================================ */
section > .wrap, .hero-copy {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
}
/* navy sections -> transparent with dark, readable text */
.statement .display, .statement .lede, .quotes .quote, .quotes .quote .tw { color: var(--ink); }
.statement .lede { color: var(--body); }
.statement .masthead .ttl, .quotes .masthead .ttl { color: var(--muted); }
.statement .masthead .ln, .quotes .masthead .ln { background: var(--line); }
.statement .masthead .no, .quotes .masthead .no { color: var(--gold); }
.statement .stat .n { color: var(--navy); }
.statement .stat .l { color: var(--muted); }
.statement .stat-line { border-top-color: var(--line); }
.quotes .quote .em-gold { color: var(--gold); }
.quotes .caret { background: var(--gold); }

/* legibility over the plane: soft cream halo behind text */
.hero-copy .display, .hero-copy .lede,
section > .wrap .display, section > .wrap .lede, section > .wrap .body,
section > .wrap h3, section > .wrap p, section > .wrap li {
  text-shadow: 0 1px 10px rgba(244,241,234,0.9), 0 0 3px rgba(244,241,234,0.75);
}

/* hero: single-column text, jet image removed */
.hero-split-grid { grid-template-columns: 1fr; min-height: 82vh; }
.hero-copy { max-width: 660px; }
