/* ============================================================
   thathyperactivesardar.com — shared site styles (multi-page)
   Tokens from colors_and_type.css. Forked from the brand UI kit
   and extended with: multi-page nav, work grid, about page,
   newsletter, logos strip, podcast, contact form.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bone); color: var(--ink);
  font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--grid-max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: "■"; color: var(--oxblood); font-size: .8em; }
.dark .eyebrow, .darkbg .eyebrow { color: var(--smoke); }
.dark .eyebrow::before, .darkbg .eyebrow::before { color: var(--saffron); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- NAV (multi-page) ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 66px; display: flex; align-items: center;
  background: var(--ink); border-bottom: 1px solid var(--bone-12); transition: background var(--dur-base) var(--ease-cut); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-mark { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--bone); }
.nav-mark .ths { height: 26px; width: auto; display: block; }
.nav-mark .ths-mark { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--bone); letter-spacing: .02em; opacity: .82; transition: opacity var(--dur-fast); position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--saffron); }
.nav-book { font-weight: 600; font-size: 13px; color: var(--ink) !important; background: var(--saffron); padding: 10px 18px; border-radius: var(--r-md); opacity: 1 !important; transition: background var(--dur-fast); white-space: nowrap; }
.nav-book:hover { background: var(--saffron-deep); }
.nav-book.active::after { display: none; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: transparent; border: 0; cursor: pointer; padding: 9px 8px; }
.nav-burger span { display: block; height: 2px; width: 24px; background: var(--bone); border-radius: 2px; transition: transform var(--dur-fast) var(--ease-cut), opacity var(--dur-fast); }
.nav.open .nav-burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2){ opacity: 0; }
.nav.open .nav-burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; }
@media (max-width: 760px){
  .nav-links { display: none; }
  .nav-right { gap: 10px; }
  .nav-book { padding: 9px 15px; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
    background: var(--ink); border-bottom: 1px solid var(--bone-12); padding: 8px 0 18px;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-cut), transform var(--dur-base) var(--ease-cut); }
  .nav-mobile.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .m-link { display: block; padding: 15px 24px; font-size: 17px; font-weight: 500; color: var(--bone); opacity: .82;
    border-bottom: 1px solid var(--bone-06); transition: opacity var(--dur-fast), color var(--dur-fast); }
  .m-link:last-child { border-bottom: 0; }
  .m-link.active { color: var(--saffron); opacity: 1; }
}

/* page top spacer so fixed nav doesn't cover content on interior pages */
.page-top { height: 66px; background: var(--ink); }

/* ---------- HERO (home) ---------- */
.hero { background: var(--ink); position: relative; height: 100vh; min-height: 580px; overflow: hidden; --scroll: 0; }
.hero-stage { position: absolute; inset: 0;
  transform: translateY(calc(var(--scroll) * -7%)) scale(calc(1 - var(--scroll) * 0.06));
  filter: brightness(calc(1 - var(--scroll) * 0.4)); transform-origin: center 38%; }
.hero-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  opacity: 0; transform: scale(1.18); will-change: opacity, transform;
  transition: opacity 280ms var(--ease-cut); }
.hero-shot.on { opacity: 1; animation: heroPulse 1.1s var(--ease-cut) both; }
@keyframes heroPulse { 0% { transform: scale(1.16); } 45% { transform: scale(1.03); } 100% { transform: scale(1.10); } }
.hero-scrim { position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, rgba(14,14,16,.46) 0%, rgba(14,14,16,0) 24%, rgba(14,14,16,0) 56%, rgba(14,14,16,.9) 100%); }
.hero-flash { position: absolute; inset: 0; background: var(--saffron); z-index: 8; pointer-events: none; mix-blend-mode: screen; opacity: .85; animation: heroflash .42s steps(1,end) 1 forwards; }
@keyframes heroflash { 0%,16%{opacity:.85;} 17%,100%{opacity:0;} }
.hero-stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; z-index: 7; background: linear-gradient(90deg, var(--oxblood) 0 33%, var(--saffron) 33% 66%, var(--brass) 66% 100%); }

/* ---------- PHOTO SPLASH LOADER ---------- */
.splash { position: fixed; inset: 0; z-index: 9999; background: var(--ink); pointer-events: none; }
.splash.out { animation: splashOut 500ms var(--ease-cut) forwards; }
@keyframes splashOut { 0% { opacity: 1; } 100% { opacity: 0; } }
.splash-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  opacity: 0; transition: opacity 180ms ease; }
.splash-shot.on { opacity: 1; }

@media (prefers-reduced-motion: reduce){
  .hero-shot { transition: none; transform: none; }
  .hero-shot.on { animation: none; transform: none; }
  .hero-stage { transform: none; filter: none; }
}

/* ---------- WORK / identity band ---------- */
.work { background: var(--ink); color: var(--bone); position: relative; padding: 0 0 96px; overflow: hidden; }
.work-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.work-bg-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%;
  opacity: 0; filter: grayscale(.28) contrast(1.04) brightness(.62); transition: opacity 520ms var(--ease-cut); will-change: opacity; }
.work-bg-shot.on { opacity: 1; }
.work-bg-scrim { position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(14,14,16,.9) 14%, rgba(14,14,16,.74) 42%, rgba(14,14,16,.8) 68%, rgba(14,14,16,.96) 88%, var(--ink) 100%),
    radial-gradient(120% 70% at 50% 30%, rgba(14,14,16,.18) 0%, rgba(14,14,16,.66) 78%); }
.work > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce){ .work-bg-shot { transition: none; } .work-bg-shot:first-child { opacity: 1; } }
.work .eyebrow { color: var(--saffron); white-space: nowrap; }
.work .eyebrow::before { color: var(--saffron); }
.work-id { text-align: center; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 96px var(--gutter) 80px; position: relative; }
.work-id > * { width: 100%; }
.work-scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--bone); width: auto; }
.work-scroll span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; opacity: .8; }
.work-scroll svg { width: 22px; height: 22px; animation: bob 1.8s var(--ease-cut) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.work-hero-stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; width: 100%; background: linear-gradient(90deg, var(--oxblood) 0 33%, var(--saffron) 33% 66%, var(--brass) 66% 100%); }
.work-mark { max-width: 620px; margin: 14px auto 16px; }
.wm-svg { width: 100%; height: auto; display: block; }
.wm-svg .wm-a { fill: var(--saffron); }
.wm-svg .wm-b { fill: var(--bone); }
.work-tag { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 4vw, 44px); line-height: 1.18; color: var(--bone); max-width: 22ch; margin: 0 auto; }
.work-tag b { font-style: normal; color: var(--saffron); font-weight: 400; }
.work-line { font-family: var(--serif); font-size: clamp(17px, 2.2vw, 22px); color: var(--smoke); margin: 10px auto 0; }
.work-line span { color: var(--bone); font-style: italic; }
.work-sub { font-family: var(--sans); font-size: 14px; line-height: 1.6; color: var(--smoke); max-width: 56ch; margin: 12px auto 0; letter-spacing: .02em; }
.work-sub b { color: var(--bone); font-weight: 500; }
.work-cta { display: flex; gap: 14px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 84px; padding-top: 40px; border-top: 1px solid var(--bone-12); }
.work-h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -.01em; margin: 14px 0 0; color: var(--bone); max-width: 16ch; }
.work-hint { font-size: 13px; color: var(--smoke); margin: 12px 0 0; letter-spacing: .02em; max-width: 52ch; }
.work-seeall { display: flex; justify-content: center; margin-top: 36px; }
@media (max-width: 860px){ .hero { height: 88vh; } .work { padding: 0 0 64px; } .work-id { min-height: 92vh; padding: 96px var(--gutter) 76px; } .work-mark { max-width: 420px; } .work-head { margin-top: 56px; } }
.work-flash { position: absolute; inset: 0; background: var(--saffron); z-index: 4; pointer-events: none; mix-blend-mode: screen; animation: heroflash .5s steps(1,end) 1 forwards; }
@media (prefers-reduced-motion: reduce){ .work-flash { display: none; } .work-scroll svg { animation: none; } }

/* ---------- BUTTONS ---------- */
.btn { font-family: var(--sans); font-weight: 600; font-size: 14px; padding: 14px 24px; border-radius: var(--r-md); border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; letter-spacing: .01em; transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast); text-align: left; }
.btn-saffron { background: var(--saffron); color: var(--ink); }
.btn-saffron:hover { background: var(--saffron-deep); }
.btn-oxblood { background: var(--oxblood); color: var(--bone); }
.btn-oxblood:hover { background: #5a1818; }
.btn-ghost-light { background: transparent; color: var(--bone); border: 1px solid var(--bone-12); }
.btn-ghost-light:hover { border-color: var(--bone); }
.btn-ghost-dark { background: transparent; color: var(--oxblood); border: 1px solid var(--oxblood); }
.btn-ghost-dark:hover { background: var(--oxblood); color: var(--bone); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-cut); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- CASE SLIDER (home) ---------- */
.pf-nav { display: flex; gap: 10px; }
.pf-arrow { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--bone-12); background: transparent; color: var(--bone); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast); }
.pf-arrow:hover { border-color: var(--saffron); color: var(--saffron); }
.pf-arrow svg { width: 20px; height: 20px; }
.pf-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 32px; padding-bottom: 16px; scrollbar-width: none; }
.pf-track::-webkit-scrollbar { display: none; }
.case { scroll-snap-align: start; flex: 0 0 min(520px, 84vw); display: flex; flex-direction: column; background: var(--slate); border: 1px solid var(--bone-12); text-decoration: none; color: var(--bone); transition: border-color var(--dur-base), transform var(--dur-base); }
.case:hover { border-color: var(--saffron); transform: translateY(-3px); }
.case-top { padding: 28px 28px 0; }
.case-cat { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--saffron); }
.case-stat { font-family: var(--serif); font-weight: 400; font-size: clamp(60px, 8vw, 96px); line-height: .88; letter-spacing: -.03em; color: var(--bone); margin: 12px 0 2px; }
.case-stat sup { font-size: .36em; color: var(--saffron); vertical-align: super; }
.case-statcap { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone); opacity: .85; }
.case-shape { margin: 22px 0 0; padding: 22px 28px 0; border-top: 1px solid var(--bone-12); display: grid; gap: 12px; }
.srow { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: baseline; }
.srow .k { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.srow .v { font-size: 13.5px; line-height: 1.45; color: var(--bone); opacity: .9; }
.case-foot { margin-top: auto; padding: 22px 28px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.case-foot .nda { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.case-foot .view { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.case:hover .view .arrow { transform: translateX(3px); }

/* ---------- WORK PAGE (grid) ---------- */
.workpage { background: var(--ink); color: var(--bone); }
.workpage-hero { padding: 88px var(--gutter) 56px; border-bottom: 1px solid var(--bone-12); }
.workpage-hero .eyebrow { color: var(--saffron); }
.workpage-hero .eyebrow::before { color: var(--saffron); }
.workpage-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 7vw, 84px); line-height: 1.0; letter-spacing: -.02em; margin: 18px 0 0; max-width: 16ch; }
.workpage-hero h1 em { font-style: italic; color: var(--saffron); }
.workpage-hero .lede { font-size: 17px; line-height: 1.6; color: var(--bone); opacity: .82; max-width: 60ch; margin: 22px 0 0; }
.workpage-stats { display: flex; flex-wrap: wrap; gap: 0; margin: 40px 0 0; border-top: 1px solid var(--bone-12); }
.workpage-stats .s { padding: 18px 30px 18px 0; border-right: 1px solid var(--bone-12); }
.workpage-stats .s:last-child { border-right: 0; }
.workpage-stats .n { font-family: var(--serif); font-size: clamp(30px,4vw,42px); line-height: 1; color: var(--saffron); }
.workpage-stats .l { font-size: 11px; letter-spacing: .04em; color: var(--smoke); margin-top: 6px; max-width: 18ch; }
.grid-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 56px 0 88px; }
.grid-cases .case { flex: none; }
@media (max-width: 760px){ .grid-cases { grid-template-columns: 1fr; } .workpage-stats .s { padding: 14px 22px 14px 0; } }

/* ---------- ENGAGEMENTS ---------- */
.ship { background: var(--bone); padding: 88px 0; }
.ship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.ship-h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px,4vw,46px); line-height: 1.08; letter-spacing: -.01em; margin: 14px 0 0; max-width: 18ch; }
.tier { background: var(--bone); border: 1px solid var(--oxblood-15); padding: 30px 26px; display: flex; flex-direction: column; }
.tier.feature { border-color: var(--oxblood); border-top: 3px solid var(--oxblood); }
.tier .tname { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); }
.tier .tprice { font-family: var(--serif); font-weight: 400; font-size: 32px; letter-spacing: -.01em; margin: 8px 0 2px; white-space: nowrap; }
.tier .tprice span { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .04em; color: var(--smoke); margin-top: 3px; white-space: normal; }
.tier .tusd { font-family: var(--sans); font-size: 12px; color: var(--smoke); letter-spacing: .03em; margin-bottom: 4px; }
.tier .tline { font-size: 13px; line-height: 1.55; margin: 14px 0; }
.tier .tline strong { font-weight: 600; }
.tier .tline em { color: var(--oxblood); }
.tier .tlist { list-style: none; padding: 0; margin: 0 0 20px; }
.tier .tlist li { font-size: 13px; line-height: 1.5; padding-left: 18px; position: relative; margin-bottom: 8px; color: #3a3a40; }
.tier .tlist li::before { content: "■"; position: absolute; left: 0; color: var(--oxblood); font-size: 8px; top: 5px; }
.tier .tcta { margin-top: auto; }
.topmate { margin-top: 36px; border: 1px solid var(--oxblood-15); padding: 28px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.topmate h4 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 8px; }
.topmate .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.topmate .chip { font-size: 12px; padding: 7px 12px; border: 1px solid var(--oxblood-15); border-radius: 999px; color: #3a3a40; transition: border-color var(--dur-fast), color var(--dur-fast); cursor: pointer; }
.topmate .chip:hover { border-color: var(--oxblood); color: var(--oxblood); }
@media (max-width: 860px){ .ship-grid { grid-template-columns: 1fr; } .topmate { grid-template-columns: 1fr; } }

/* ---------- LOGOS / BRANDS STRIP ---------- */
.logos { background: var(--ink); color: var(--bone); padding: 64px 0; border-top: 1px solid var(--bone-12); }
.logos .eyebrow { color: var(--saffron); }
.logos .eyebrow::before { color: var(--saffron); }
.logos-lede { font-family: var(--serif); font-size: clamp(20px,2.6vw,28px); line-height: 1.3; color: var(--bone); max-width: 30ch; margin: 14px 0 30px; }
.logos-lede em { font-style: italic; color: var(--saffron); }
.logos-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--bone-12); border-left: 1px solid var(--bone-12); }
.logos-grid .lg { border-right: 1px solid var(--bone-12); border-bottom: 1px solid var(--bone-12); min-height: 96px; display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center; }
.logos-grid .lg span { font-family: var(--display-loud); font-weight: 600; font-size: 17px; letter-spacing: .02em; text-transform: uppercase; color: var(--bone); opacity: .68; transition: opacity var(--dur-base), color var(--dur-base); line-height: 1.05; }
.logos-grid .lg:hover span { opacity: 1; color: var(--saffron); }
.logos-note { font-size: 11px; letter-spacing: .04em; color: var(--smoke); margin-top: 20px; }
@media (max-width: 860px){ .logos-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- ABOUT (section + page) ---------- */
.about { background: var(--ink); color: var(--bone); padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; margin-top: 30px; }
.about-portrait { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center center; }
.about-portrait-cap { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); margin-top: 12px; }
.about h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.01em; margin: 0 0 22px; color: var(--bone); }
.about h2 em { font-style: italic; color: var(--saffron); }
.about p { font-size: 16px; line-height: 1.62; color: var(--bone); opacity: .86; max-width: 56ch; margin: 0 0 18px; }
.about .arc { display: flex; flex-wrap: wrap; gap: 0; margin: 26px 0 8px; border-top: 1px solid var(--bone-12); }
.arc-step { padding: 14px 18px 14px 0; border-right: 1px solid var(--bone-12); }
.arc-step .y { font-family: var(--serif); font-size: 20px; color: var(--saffron); }
.arc-step .w { font-size: 11px; color: var(--smoke); letter-spacing: .04em; margin-top: 2px; }
.mishran { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mishran span { font-family: var(--display-loud); font-weight: 800; font-size: 22px; letter-spacing: .02em; text-transform: uppercase; color: var(--bone); }
.mishran span.x { color: var(--saffron); }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; gap: 32px; } .about-portrait { max-width: 300px; } }

/* about page extras */
.about-hero { background: var(--ink); color: var(--bone); padding: 84px 0 0; }
.about-hero .eyebrow { color: var(--saffron); }
.about-hero .eyebrow::before { color: var(--saffron); }
.about-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px,6.4vw,76px); line-height: 1.02; letter-spacing: -.02em; margin: 18px 0 0; max-width: 18ch; }
.about-hero h1 em { font-style: italic; color: var(--saffron); }
.about-poster { width: 100%; max-width: 1120px; margin: 48px auto 0; display: block; }
.about-section { background: var(--ink); color: var(--bone); padding: 16px 0 84px; }
.prose { max-width: 64ch; margin: 0 auto; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--bone); opacity: .88; margin: 0 0 22px; }
.prose p em { font-style: italic; color: var(--saffron); }
.prose .pull { font-family: var(--serif); font-style: italic; font-size: clamp(24px,3.2vw,34px); line-height: 1.3; color: var(--bone); opacity: 1; border-left: 3px solid var(--oxblood); padding-left: 24px; margin: 36px 0; max-width: none; }
.prose .pull b { font-style: normal; color: var(--saffron); font-weight: 400; }
.about-divider { border: 0; border-top: 1px solid var(--bone-12); margin: 0; }
.lanes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--bone-12); border: 1px solid var(--bone-12); margin: 40px 0; }
.lane { background: var(--ink); padding: 26px 24px; }
.lane .ln { font-family: var(--display-loud); font-weight: 700; font-size: 22px; text-transform: uppercase; color: var(--saffron); letter-spacing: .02em; }
.lane p { font-size: 14px; line-height: 1.55; color: var(--bone); opacity: .82; margin: 10px 0 0; }
@media (max-width: 760px){ .lanes { grid-template-columns: 1fr; } }

/* two-register explainer */
.registers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.reg { border: 1px solid var(--bone-12); padding: 26px 24px; }
.reg.op { background: var(--bone-06); }
.reg.hy { background: var(--ink); border-color: var(--saffron); }
.reg h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px; }
.reg.op h4 { color: var(--smoke); }
.reg.hy h4 { color: var(--saffron); }
.reg .q { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.5; color: var(--bone); }
.reg.hy .q b { font-style: normal; font-weight: 400; color: var(--saffron); }
@media (max-width: 760px){ .registers { grid-template-columns: 1fr; } }

/* ---------- PODCAST ---------- */
.podcast { background: var(--bone); padding: 88px 0; }
.podcast-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; margin-top: 32px; }
.podcast-tile { background: var(--ink); aspect-ratio: 1/1; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; position: relative; overflow: hidden; }
.podcast-tile .ths-watermark { position: absolute; right: -10%; bottom: -8%; width: 70%; opacity: .14; }
.podcast-tile .ptop { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.podcast-tile .ptop .ep { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--saffron); }
.podcast-tile .ptop .live { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); border: 1px solid var(--bone-12); padding: 4px 9px; border-radius: 999px; }
.podcast-tile .pname { position: relative; z-index: 1; font-family: var(--display-loud); font-weight: 800; font-size: clamp(40px,6vw,64px); line-height: .9; text-transform: uppercase; color: var(--bone); }
.podcast-tile .pname em { color: var(--saffron); font-style: normal; }
.podcast h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px,4vw,46px); line-height: 1.08; letter-spacing: -.01em; margin: 14px 0 0; max-width: 16ch; }
.podcast p { font-size: 16px; line-height: 1.62; color: #3a3a40; margin: 18px 0 0; max-width: 52ch; }
.podcast .plist { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; }
.podcast .plist li { font-size: 14px; line-height: 1.5; padding-left: 20px; position: relative; color: #3a3a40; }
.podcast .plist li::before { content: "■"; position: absolute; left: 0; top: 4px; font-size: 8px; color: var(--oxblood); }
@media (max-width: 760px){ .podcast-grid { grid-template-columns: 1fr; gap: 32px; } .podcast-tile { max-width: 340px; } }

/* ---------- NEWSLETTER ---------- */
.news { background: var(--ink); color: var(--bone); padding: 88px 0; position: relative; overflow: hidden; }
.news::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: linear-gradient(90deg, var(--oxblood) 0 33%, var(--saffron) 33% 66%, var(--brass) 66% 100%); }
.news .eyebrow { color: var(--saffron); }
.news .eyebrow::before { color: var(--saffron); }
.news-inner { max-width: 720px; }
.news-loud { font-family: var(--display-loud); font-weight: 800; font-size: clamp(38px,6.4vw,76px); line-height: .92; text-transform: uppercase; color: var(--bone); margin: 16px 0 0; letter-spacing: .005em; }
.news-loud em { color: var(--saffron); font-style: normal; }
.news-sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2.4vw,24px); line-height: 1.4; color: var(--bone); opacity: .82; margin: 18px 0 0; max-width: 46ch; }
.news-form { display: flex; gap: 12px; margin: 32px 0 0; max-width: 560px; flex-wrap: wrap; }
.news-form input { flex: 1 1 280px; background: transparent; border: 1px solid var(--bone-12); border-radius: var(--r-sm); color: var(--bone); font-family: var(--sans); font-size: 15px; padding: 15px 16px; transition: border-color var(--dur-fast); }
.news-form input::placeholder { color: var(--smoke); }
.news-form input:focus { outline: 2px solid var(--saffron); outline-offset: 2px; border-color: transparent; }
.news-note { font-size: 12px; letter-spacing: .02em; color: var(--smoke); margin: 16px 0 0; max-width: 50ch; }
.news-ok { margin: 28px 0 0; border-left: 3px solid var(--saffron); padding: 6px 0 6px 22px; }
.news-ok .h { font-family: var(--serif); font-size: clamp(22px,3vw,30px); color: var(--bone); }
.news-ok .h b { color: var(--saffron); font-weight: 400; }
.news-ok .p { font-size: 14px; color: var(--smoke); margin-top: 8px; }

/* ---------- BOOK + FOOTER ---------- */
.book { background: var(--bone); padding: 90px 0; text-align: center; }
.book h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -.02em; margin: 16px auto 8px; max-width: 16ch; }
.book .lede { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--oxblood); max-width: 40ch; margin: 0 auto 32px; }
.book-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reject { max-width: 640px; margin: 56px auto 0; text-align: left; border-top: 1px solid var(--oxblood-15); padding-top: 24px; }
.reject h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); margin: 0 0 12px; }
.reject p { font-size: 14px; line-height: 1.7; color: #3a3a40; margin: 0; }
.reject p em { color: var(--oxblood); font-style: italic; }
footer { background: var(--ink); color: var(--smoke); padding: 64px 0 44px; }
footer .ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
footer .stamp { display: inline-block; border: 1px solid var(--bone); color: var(--bone); padding: 6px 11px; font-family: var(--serif); margin-bottom: 18px; }
footer h5 { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); margin: 0 0 14px; }
footer a, footer p { font-size: 13px; line-height: 1.9; color: var(--bone); opacity: .8; display: block; }
footer a:hover { opacity: 1; color: var(--saffron); }
footer .ft-tag { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--bone); opacity: .9; }
footer .ft-legal { margin-top: 40px; border-top: 1px solid var(--bone-12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 11px; letter-spacing: .04em; color: var(--smoke); text-transform: uppercase; }
@media (max-width: 860px){ footer .ft-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- CONTACT PAGE ---------- */
.contact, .about-main { background: var(--ink); color: var(--bone); }
.contact-hero { padding: 84px 0 40px; }
.contact-hero .eyebrow { color: var(--saffron); }
.contact-hero .eyebrow::before { color: var(--saffron); }
.contact-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px,6.4vw,76px); line-height: 1.02; letter-spacing: -.02em; margin: 18px 0 0; max-width: 16ch; }
.contact-hero h1 em { font-style: italic; color: var(--saffron); }
.contact-hero .lede { font-size: 17px; line-height: 1.6; color: var(--bone); opacity: .82; max-width: 56ch; margin: 22px 0 0; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; padding: 40px 0 90px; align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.lead-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.field label .req { color: var(--saffron); }
.field input, .field textarea, .field select {
  background: transparent; border: 1px solid var(--bone-12); border-radius: var(--r-sm); color: var(--bone);
  font-family: var(--sans); font-size: 15px; padding: 14px 15px; width: 100%; transition: border-color var(--dur-fast); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--smoke); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--saffron); outline-offset: 2px; border-color: transparent; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A847A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.field select option { background: var(--ink); color: var(--bone); }
.field.error input, .field.error textarea, .field.error select { border-color: var(--oxblood); outline-color: var(--oxblood); }
.field .err { font-size: 11px; color: var(--saffron); letter-spacing: .02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-foot .small { font-size: 12px; color: var(--smoke); max-width: 34ch; line-height: 1.5; }

.form-ok { border: 1px solid var(--saffron); padding: 40px 34px; text-align: left; }
.form-ok .eyebrow { color: var(--saffron); }
.form-ok .eyebrow::before { color: var(--saffron); }
.form-ok h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px,4vw,44px); line-height: 1.08; margin: 16px 0 14px; color: var(--bone); }
.form-ok h2 em { font-style: italic; color: var(--saffron); }
.form-ok p { font-size: 15px; line-height: 1.6; color: var(--bone); opacity: .84; margin: 0 0 22px; max-width: 46ch; }

.contact-side { border-left: 1px solid var(--bone-12); padding-left: 40px; }
@media (max-width: 860px){ .contact-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--bone-12); padding-top: 36px; } }
.contact-side h3 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); margin: 0 0 16px; }
.contact-direct { display: grid; gap: 12px; margin-bottom: 34px; }
.cd-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--bone-12); padding: 16px 18px; transition: border-color var(--dur-fast), background var(--dur-fast); cursor: pointer; }
.cd-link:hover { border-color: var(--saffron); background: var(--bone-06); }
.cd-link .cd-k { font-weight: 600; font-size: 14px; color: var(--bone); }
.cd-link .cd-v { font-size: 12px; color: var(--smoke); }
.cd-link .arrow { color: var(--saffron); }
.contact-side .resp { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.5; color: var(--bone); opacity: .8; border-top: 1px solid var(--bone-12); padding-top: 22px; }

/* ---------- ARTICLES ARCHIVE (light editorial) ---------- */
.arch { background: var(--bone); color: var(--ink); }
.arch-top { background: var(--ink); }
.arch-hero { padding: 84px 0 48px; }
.arch-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px,7vw,84px); line-height: 1.0; letter-spacing: -.02em; margin: 18px 0 0; max-width: 14ch; }
.arch-hero h1 em { font-style: italic; color: var(--oxblood); }
.arch-lede { font-size: 17px; line-height: 1.6; color: #3a3a40; max-width: 56ch; margin: 22px 0 0; }
.arch-sub { display: flex; gap: 12px; margin: 28px 0 0; max-width: 480px; flex-wrap: wrap; }
.arch-sub input { flex: 1 1 240px; background: transparent; border: 1px solid var(--oxblood-15); border-radius: var(--r-sm); color: var(--ink); font-family: var(--sans); font-size: 15px; padding: 14px 15px; }
.arch-sub input::placeholder { color: var(--smoke); }
.arch-sub input:focus { outline: 2px solid var(--oxblood); outline-offset: 2px; border-color: transparent; }
.arch-subok { margin: 28px 0 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--oxblood); }
.arch-subok b { font-style: normal; }
.arch-note { font-size: 12px; letter-spacing: .02em; color: var(--smoke); margin: 14px 0 0; }

.arch-feat { padding: 8px 0 16px; }
.feat { display: grid; grid-template-columns: minmax(220px, .72fr) 1fr; gap: 30px; align-items: stretch; border-top: 3px solid var(--oxblood); background: var(--oxblood-08); padding: 24px; transition: background var(--dur-base); }
.feat:hover { background: var(--oxblood-15); }
.feat-cover { width: 100%; height: 100%; min-height: 280px; aspect-ratio: 4/3; object-fit: cover; object-position: center; border-radius: var(--r-sm); background: var(--ink); }
.feat-copy { align-self: center; padding: 8px 8px 8px 0; }
.feat-tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--oxblood); font-weight: 600; }
.feat-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,4.4vw,48px); line-height: 1.08; letter-spacing: -.01em; margin: 14px 0 0; max-width: 22ch; }
.feat-dek { font-size: 16px; line-height: 1.6; color: #3a3a40; margin: 16px 0 0; max-width: 64ch; }
.feat-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 22px 0 0; font-size: 13px; color: var(--smoke); }
.feat-read { color: var(--oxblood); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.feat:hover .feat-read .arrow { transform: translateX(3px); }

.arch-list-sec { padding: 40px 0 88px; }
.arch-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 8px; border-bottom: 1px solid var(--oxblood-15); }
.arch-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-f { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .04em; padding: 8px 14px; border: 1px solid var(--oxblood-15); border-radius: var(--r-pill); background: transparent; color: #3a3a40; cursor: pointer; transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast); }
.chip-f:hover { border-color: var(--oxblood); color: var(--oxblood); }
.chip-f.on { background: var(--oxblood); color: var(--bone); border-color: var(--oxblood); }
.arch-list { display: grid; }
.arow { display: grid; grid-template-columns: 160px 1fr 190px; gap: 28px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--oxblood-15); transition: padding-left var(--dur-base) var(--ease-cut); }
.arow:hover { padding-left: 10px; }
.arow-meta { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.arow-lane { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--oxblood); font-weight: 600; }
.arow-ed { font-family: var(--serif); font-size: 14px; color: var(--ink); letter-spacing: .01em; }
.arow-date { font-size: 13px; color: var(--smoke); }
.arow-title { font-family: var(--serif); font-weight: 400; font-size: clamp(22px,2.8vw,30px); line-height: 1.16; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.arow:hover .arow-title { color: var(--oxblood); }
.arow-dek { font-size: 15px; line-height: 1.6; color: #3a3a40; margin: 10px 0 0; max-width: 70ch; }
.arow-read { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--oxblood); font-weight: 600; margin: 14px 0 0; }
.arow:hover .arow-read .arrow { transform: translateX(3px); }
.arow-cover { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; border-radius: var(--r-sm); background: var(--ink); }
.arch-empty { font-size: 15px; color: #3a3a40; padding: 40px 0; }
.linkbtn { background: none; border: 0; color: var(--oxblood); font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px){
  .feat { grid-template-columns: 1fr; padding: 18px; gap: 20px; }
  .feat-cover { min-height: 0; aspect-ratio: 16/10; }
  .feat-copy { padding: 0; }
  .arow { grid-template-columns: 1fr; gap: 14px; }
  .arow-meta { flex-direction: row; gap: 14px; flex-wrap: wrap; }
  .arow-cover { grid-row: 2; aspect-ratio: 16/10; }
}

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--ink); color: var(--bone); border: 1px solid transparent; padding: 14px 22px; font-size: 13px; z-index: 200; border-radius: var(--r-md); opacity: 0; visibility: hidden; transition: transform var(--dur-base) var(--ease-cut), opacity var(--dur-base), visibility var(--dur-base); }
.toast.show { transform: translateX(-50%) translateY(0); border-color: var(--saffron); opacity: 1; visibility: visible; }
.toast b { color: var(--saffron); }
