﻿:root {
  --espresso: #1B1007;
  --espresso-soft: #241608;
  --ink: #241708;
  --ink-muted: #5B4732;
  --ink-body: #4A3A28;
  --paper: #FFFFFF;
  --paper-warm: #F7EFE6;
  --bronze: #704010;
  --bronze-light: #985821;
  --gold: #C08A52;
  --gold-bright: #D9A96E;
  --wine: #5E3A1D;
  --cream: #FFF6EC;
  --line: rgba(112, 64, 16, 0.22);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --space-section: clamp(80px, 13vw, 150px);
  --pad-x: clamp(20px, 5vw, 48px);
  --z-nav: 50;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: var(--espresso);
}

h1, h2, h3, p, ul, ol, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--bronze);
  text-decoration: none;
}

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

h1, h2, h3 {
  text-wrap: balance;
}

.accent {
  color: var(--bronze);
  font-style: italic;
}

.accent--light {
  color: var(--gold-bright);
}

/* Grain texture for dark bands */
.hero::after,
.legacy::after,
.reach::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */

.button {
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  border-radius: 0;
  font: 600 12.5px/1.2 var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--gold {
  background: var(--gold);
  color: var(--espresso);
}

.button--gold:hover {
  background: var(--gold-bright);
  color: var(--espresso);
  box-shadow: 0 12px 32px -8px rgba(192, 138, 82, 0.55);
}

.button--ghost {
  border: 1px solid rgba(255, 246, 236, 0.4);
  color: var(--cream);
}

.button--ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.button--bronze {
  background: var(--bronze);
  color: var(--paper);
}

.button--bronze:hover {
  background: var(--bronze-light);
  color: var(--paper);
  box-shadow: 0 12px 32px -8px rgba(112, 64, 16, 0.4);
}

.button--outline {
  border: 1px solid var(--bronze);
  color: var(--bronze);
}

.button--outline:hover {
  background: var(--bronze);
  color: var(--paper);
}

.button--closing {
  padding: 22px 48px;
  background: var(--bronze);
  color: var(--paper);
  font-size: 13px;
}

.button--closing:hover {
  background: var(--bronze-light);
  color: var(--paper);
  box-shadow: 0 14px 36px -8px rgba(112, 64, 16, 0.45);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: clamp(8px, 1vw, 14px);
  right: clamp(8px, 1.8vw, 32px);
  left: clamp(8px, 1.8vw, 32px);
  z-index: var(--z-nav);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: top 0.35s var(--ease-out), right 0.35s var(--ease-out), left 0.35s var(--ease-out), background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), border-radius 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header--scrolled,
.nav-open .site-header {
  top: 0;
  right: 0;
  left: 0;
  background: rgba(27, 16, 7, 0.94);
  border-color: rgba(192, 138, 82, 0.22);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 28px);
  width: min(100%, 1320px);
  min-height: 50px;
  margin: 0 auto;
  padding: 4px clamp(14px, 1.6vw, 24px);
}

.site-header--scrolled .site-header__inner,
.nav-open .site-header__inner {
  padding: 7px clamp(16px, 3vw, 40px);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: clamp(206px, 17vw, 262px);
}

.brand__logo {
  width: clamp(220px, 20vw, 300px);
  height: auto;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.32));
}

.site-header--scrolled .brand__logo,
.nav-open .brand__logo {
  width: clamp(190px, 17vw, 260px);
  max-height: 72px;
}

.brand__name {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.45vw, 23px);
  font: 650 11.8px/1 var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav__item,
.nav__cta {
  white-space: nowrap;
}

.nav__item {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 246, 236, 0.78);
  transition: color 0.25s var(--ease-out);
}

.nav__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-expo);
}

.nav__item:hover {
  color: var(--gold-bright);
}

.nav__item:hover::after,
.nav__item--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__item--active {
  color: var(--cream);
}

.nav__cta {
  padding: 15px 26px;
  border: 1px solid rgba(255, 246, 236, 0.14);
  border-radius: 4px;
  background: var(--gold);
  color: var(--espresso);
  font-weight: 700;
  transition: background-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.nav__cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 24px -6px rgba(192, 138, 82, 0.5);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 246, 236, 0.16);
  border-radius: 8px;
  background: rgba(255, 246, 236, 0.08);
  cursor: pointer;
}

.nav-toggle__bar {
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 100svh, 920px);
  background: #140b05;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  filter: brightness(0.9) contrast(1.1) saturate(1.08);
  will-change: transform, opacity;
}

@keyframes hero-media {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 0.96;
    transform: scale(1);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035) translate3d(-0.8%, -0.4%, 0);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(217, 169, 110, 0.16) 0%, rgba(217, 169, 110, 0.02) 21%, transparent 42%),
    linear-gradient(90deg, rgba(27, 16, 7, 0.92) 0%, rgba(27, 16, 7, 0.78) 30%, rgba(27, 16, 7, 0.3) 58%, rgba(27, 16, 7, 0.06) 82%, rgba(27, 16, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(27, 16, 7, 0.82) 0%, rgba(27, 16, 7, 0.18) 29%, rgba(27, 16, 7, 0) 50%),
    linear-gradient(180deg, rgba(27, 16, 7, 0.34) 0%, rgba(27, 16, 7, 0) 24%);
}

.hero__scrim::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  background: linear-gradient(106deg, transparent 0%, transparent 42%, rgba(255, 229, 188, 0.15) 50%, rgba(217, 169, 110, 0.08) 56%, transparent 66%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translateX(-7%);
  animation: hero-sheen 9s ease-in-out 1.2s infinite alternate;
}

.hero__scrim::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(192, 138, 82, 0.08) 45%, rgba(27, 16, 7, 0.68) 100%);
}

@keyframes hero-sheen {
  from {
    opacity: 0.36;
    transform: translateX(-8%);
  }
  to {
    opacity: 0.62;
    transform: translateX(5%);
  }
}

/* ---------- Hero premium details ---------- */

/* Ken Burns pan/zoom on hero background */
.hero__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__stage .hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform-origin: center center;
  animation:
    heroMediaFadeIn 2.4s var(--ease-expo) 0.2s forwards,
    heroKenBurns 28s ease-in-out 2.6s infinite alternate;
}

@keyframes heroMediaFadeIn {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 0.92; transform: scale(1.02); }
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

/* Film grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.65  0 0 0 0 0.35  0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: heroGrainShift 6s steps(4) infinite;
}

@keyframes heroGrainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* Vignette breathing */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 20%, transparent 65%, rgba(0,0,0,0.35) 100%);
  animation: heroVignetteBreath 12s ease-in-out infinite;
}

@keyframes heroVignetteBreath {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* Cursor-follow spotlight */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    360px 360px at var(--hero-mx, 50%) var(--hero-my, 40%),
    rgba(255, 220, 160, 0.14),
    rgba(255, 220, 160, 0.06) 40%,
    transparent 70%
  );
  transition: background 0.4s ease-out;
  mix-blend-mode: screen;
  opacity: 0;
  animation: heroSpotlightIn 1.6s var(--ease-expo) 1.8s forwards;
}

@keyframes heroSpotlightIn {
  to { opacity: 1; }
}

/* Handwritten signature at the bottom-left */
.hero__signature {
  position: absolute;
  bottom: clamp(56px, 6vw, 84px);
  left: clamp(56px, 5vw, 84px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--gold-bright);
  opacity: 0;
  animation: heroSignatureIn 1.6s var(--ease-expo) 2.4s forwards;
  pointer-events: none;
}

.hero__signature svg {
  width: clamp(120px, 12vw, 180px);
  height: auto;
}

.hero__signature svg path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: heroSignatureDraw 3.2s var(--ease-expo) 2.6s forwards;
  filter: drop-shadow(0 0 8px rgba(217, 169, 110, 0.35));
}

.hero__signature svg path:nth-child(2) {
  animation-delay: 3.4s;
}

.hero__signature-tag {
  padding-left: 4px;
  color: rgba(217, 169, 110, 0.72);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroCaretIn 0.6s var(--ease-expo) 5.6s forwards;
}

@keyframes heroSignatureIn {
  to { opacity: 1; }
}

@keyframes heroSignatureDraw {
  to { stroke-dashoffset: 0; }
}

/* Signature stroke under italic line */
.hero__line--italic {
  position: relative;
}

.hero__line--italic > span {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.hero__stroke {
  position: absolute;
  left: 0;
  right: 8%;
  bottom: -0.05em;
  width: 92%;
  height: 0.22em;
  color: var(--gold-bright);
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: heroStrokeDraw 1.8s var(--ease-expo) 1.7s forwards;
  filter: drop-shadow(0 1px 4px rgba(217, 169, 110, 0.35));
  pointer-events: none;
}

@keyframes heroStrokeDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Cursor after italic line */
.hero__caret {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  margin-left: 0.12em;
  background: var(--gold-bright);
  vertical-align: baseline;
  opacity: 0;
  animation:
    heroCaretIn 0.4s var(--ease-expo) 3s forwards,
    heroCaretBlink 1.1s steps(1, end) 3.4s infinite;
  box-shadow: 0 0 12px rgba(217, 169, 110, 0.55);
}

@keyframes heroCaretIn {
  to {
    opacity: 0.9;
  }
}

@keyframes heroCaretBlink {
  0%, 50% { opacity: 0.9; }
  51%, 100% { opacity: 0; }
}

/* Editorial rotating seal */
.hero__seal {
  position: absolute;
  bottom: clamp(120px, 12vw, 160px);
  right: clamp(90px, 8vw, 140px);
  width: clamp(110px, 11vw, 150px);
  height: clamp(110px, 11vw, 150px);
  z-index: 3;
  opacity: 0;
  color: var(--gold-bright);
  animation: heroSealIn 1.4s var(--ease-expo) 2.2s forwards;
  pointer-events: none;
}

.hero__seal-svg {
  width: 100%;
  height: 100%;
  animation: heroSealSpin 32s linear infinite;
}

.hero__seal-text {
  font: 700 8px/1 var(--font-body);
  letter-spacing: 0.32em;
  fill: currentColor;
  text-transform: uppercase;
}

.hero__seal-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  opacity: 0.75;
}

@keyframes heroSealIn {
  to {
    opacity: 0.55;
  }
}

@keyframes heroSealSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Light beam sweep across hero */
.hero__beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 25%;
  z-index: 1;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(217, 169, 110, 0.08) 40%,
    rgba(255, 220, 160, 0.16) 50%,
    rgba(217, 169, 110, 0.08) 60%,
    transparent 100%);
  filter: blur(30px);
  animation: heroBeamSweep 14s linear 2.6s infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes heroBeamSweep {
  0% {
    transform: translateX(0) skewX(-8deg);
  }
  100% {
    transform: translateX(600%) skewX(-8deg);
  }
}

.hero__corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--gold-bright);
  border-style: solid;
  border-width: 0;
  opacity: 0;
  z-index: 3;
  animation: heroCornerIn 1.4s var(--ease-expo) 1.2s forwards;
  pointer-events: none;
}

.hero__corner--tl {
  top: clamp(28px, 3.5vw, 46px);
  left: clamp(28px, 3.5vw, 46px);
  border-top-width: 1px;
  border-left-width: 1px;
}

.hero__corner--tr {
  top: clamp(28px, 3.5vw, 46px);
  right: clamp(28px, 3.5vw, 46px);
  border-top-width: 1px;
  border-right-width: 1px;
}

.hero__corner--bl {
  bottom: clamp(28px, 3.5vw, 46px);
  left: clamp(28px, 3.5vw, 46px);
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.hero__corner--br {
  bottom: clamp(28px, 3.5vw, 46px);
  right: clamp(28px, 3.5vw, 46px);
  border-bottom-width: 1px;
  border-right-width: 1px;
}

@keyframes heroCornerIn {
  to {
    opacity: 0.55;
  }
}

.hero__side {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  color: var(--gold-bright);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroSideIn 1.4s var(--ease-expo) 1.5s forwards;
  pointer-events: none;
}

.hero__side--left {
  left: clamp(24px, 2.8vw, 38px);
  transform: translateY(-50%) rotate(180deg);
}

.hero__side--right {
  right: clamp(24px, 2.8vw, 38px);
}

.hero__side-dot {
  writing-mode: horizontal-tb;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__side-sep {
  width: 24px;
  height: 1px;
  background: rgba(217, 169, 110, 0.4);
  transform: rotate(90deg);
}

@keyframes heroSideIn {
  to {
    opacity: 0.7;
  }
}

.hero__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0;
  z-index: 2;
  animation:
    heroOrnamentIn 1.2s var(--ease-expo) 1.8s forwards,
    heroOrnamentFloat 9s ease-in-out 3s infinite;
  pointer-events: none;
}

.hero__ornament--1 {
  top: 18%;
  left: 12%;
  font-size: 1.5rem;
  --heroFinalOpacity: 0.45;
}

.hero__ornament--2 {
  top: 30%;
  right: 14%;
  font-size: 1.2rem;
  animation-delay: 2.1s, 4s;
  --heroFinalOpacity: 0.35;
}

.hero__ornament--3 {
  bottom: 24%;
  right: 12%;
  font-size: 2.4rem;
  color: var(--gold-bright);
  animation-delay: 2.4s, 5s;
  --heroFinalOpacity: 0.35;
}

@keyframes heroOrnamentIn {
  to {
    opacity: var(--heroFinalOpacity, 0.45);
  }
}

@keyframes heroOrnamentFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -8px); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: heroParticleRise 12s linear infinite;
  box-shadow: 0 0 8px rgba(217, 169, 110, 0.6);
}

.hero__particles span:nth-child(1)  { left: 8%;  animation-delay: 0s;   animation-duration: 14s; }
.hero__particles span:nth-child(2)  { left: 18%; animation-delay: 3s;   animation-duration: 11s; }
.hero__particles span:nth-child(3)  { left: 26%; animation-delay: 6s;   animation-duration: 15s; }
.hero__particles span:nth-child(4)  { left: 38%; animation-delay: 1s;   animation-duration: 13s; }
.hero__particles span:nth-child(5)  { left: 46%; animation-delay: 4s;   animation-duration: 12s; }
.hero__particles span:nth-child(6)  { left: 58%; animation-delay: 7s;   animation-duration: 16s; }
.hero__particles span:nth-child(7)  { left: 68%; animation-delay: 2s;   animation-duration: 13s; }
.hero__particles span:nth-child(8)  { left: 78%; animation-delay: 5s;   animation-duration: 14s; }
.hero__particles span:nth-child(9)  { left: 86%; animation-delay: 8s;   animation-duration: 11s; }
.hero__particles span:nth-child(10) { left: 92%; animation-delay: 3.5s; animation-duration: 15s; }

@keyframes heroParticleRise {
  0% {
    bottom: -20px;
    opacity: 0;
    transform: translateX(0);
  }
  15% {
    opacity: 0.55;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(20px);
  }
}

.hero__flourish {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 0;
  max-width: 260px;
  opacity: 0;
  animation: rise 1s var(--ease-expo) 0.75s forwards;
}

.hero__flourish-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(217, 169, 110, 0.55), transparent);
}

.hero__flourish-line:last-child {
  background: linear-gradient(90deg, transparent, rgba(217, 169, 110, 0.55));
}

.hero__flourish-mark {
  color: var(--gold-bright);
  font-size: 0.95rem;
  line-height: 1;
}

.hero__marks {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(217, 169, 110, 0.28);
  max-width: 620px;
  opacity: 0;
  animation: rise 1s var(--ease-expo) 1.15s forwards;
}

.hero__mark {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__mark-num {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__mark-label {
  color: rgba(255, 246, 236, 0.94);
  font: 600 0.82rem/1.4 var(--font-body);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero__mark-sep {
  width: 1px;
  background: rgba(217, 169, 110, 0.22);
}

@media (max-width: 620px) {
  .hero__marks {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero__mark-sep {
    display: none;
  }

  .hero__side {
    display: none;
  }

  .hero__corner {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 720px) {
  .hero__signature {
    display: none;
  }

  .hero__seal {
    display: none;
  }

  .hero__grain {
    opacity: 0.08;
  }

  /* Ajusta enquadramento pra mostrar o homem na foto no mobile */
  .hero__stage .hero__media {
    object-position: 60% center !important;
    object-fit: cover !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__corner,
  .hero__side,
  .hero__ornament,
  .hero__flourish,
  .hero__marks,
  .hero__seal,
  .hero__signature {
    animation: none;
    opacity: 0.55;
  }

  .hero__marks,
  .hero__flourish {
    opacity: 1;
  }

  .hero__particles,
  .hero__beam,
  .hero__spotlight,
  .hero__grain {
    display: none;
  }

  .hero__stroke,
  .hero__signature svg path {
    stroke-dashoffset: 0;
  }

  .hero__caret {
    display: none;
  }

  .hero__seal-svg,
  .hero__stage .hero__media {
    animation: none;
    opacity: 0.92;
  }

  .hero__vignette {
    animation: none;
    opacity: 0.85;
  }
}

.hero__scroll {
  position: absolute;
  right: clamp(34px, 4vw, 56px);
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: rise 1s var(--ease-expo) 1.3s forwards;
}

.hero__scroll-label {
  color: var(--gold-bright);
  font: 600 10.5px var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(192, 138, 82, 0) 100%);
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--cream);
  animation: scroll-drip 2.4s var(--ease-out) 1.8s infinite;
}

@keyframes scroll-drip {
  to {
    top: 110%;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 32px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(120px, 16vw, 160px) var(--pad-x) clamp(90px, 12vw, 120px);
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-bright);
  font: 600 12px var(--font-body);
  letter-spacing: 0;
  opacity: 0;
  animation: rise 1s var(--ease-expo) 0.5s forwards;
}

.hero__kicker-line {
  flex-shrink: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 340;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero__line > span {
  display: block;
  transform: translateY(110%);
  animation: line-up 1.1s var(--ease-expo) forwards;
}

.hero__line:nth-child(1) > span { animation-delay: 0.35s; }
.hero__line:nth-child(2) > span { animation-delay: 0.47s; }
.hero__line:nth-child(3) > span { animation-delay: 0.59s; }

@keyframes line-up {
  to {
    transform: translateY(0);
  }
}

.hero__title em {
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(217, 169, 110, 0.22);
}

.hero__lead {
  max-width: 34rem;
  color: rgba(255, 246, 236, 0.9);
  font-size: 1.16rem;
  line-height: 1.75;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  opacity: 0;
  animation: rise 1s var(--ease-expo) 0.85s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  opacity: 0;
  animation: rise 1s var(--ease-expo) 1s forwards;
}

.hero__actions .button {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero .button--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

.hero .button--ghost {
  border-color: rgba(255, 246, 236, 0.42);
  background: rgba(255, 246, 236, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Book Page Flip ---------- */

.book-scroll {
  --book-intro-offset: 35vh;
  position: relative;
  height: 330vh;
  background: var(--paper);
  color: var(--ink);
  overflow: clip;
}

/* ---- Background decorative layer ---- */
.book-scroll__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Watermark letter (huge italic A) */
.book-scroll__watermark {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  color: rgba(192, 138, 82, 0.05);
  font-family: var(--font-display);
  font-size: min(56rem, 68vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.08em;
  user-select: none;
}

/* Subtle grid overlay */
.book-scroll__grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(112, 64, 16, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(112, 64, 16, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

/* Corner glows */
.book-scroll__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

.book-scroll__glow--tl {
  top: -14vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(192, 138, 82, 0.28), transparent 65%);
}

.book-scroll__glow--br {
  bottom: -14vw;
  right: -14vw;
  background: radial-gradient(circle, rgba(112, 64, 16, 0.22), transparent 65%);
}

/* Floating ornaments */
.book-scroll__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.28;
  animation: bookOrnamentFloat 8s ease-in-out infinite;
}

.book-scroll__ornament--1 {
  top: 12%;
  left: 8%;
  font-size: 1.8rem;
}

.book-scroll__ornament--2 {
  top: 22%;
  right: 12%;
  font-size: 1.2rem;
  animation-delay: -2s;
  animation-duration: 10s;
}

.book-scroll__ornament--3 {
  bottom: 18%;
  left: 15%;
  font-size: 1.5rem;
  animation-delay: -4s;
  animation-duration: 9s;
}

.book-scroll__ornament--4 {
  bottom: 28%;
  right: 8%;
  font-size: 2rem;
  animation-delay: -1s;
  animation-duration: 11s;
  color: var(--bronze);
  opacity: 0.35;
}

.book-scroll__ornament--5 {
  top: 40%;
  left: 6%;
  font-size: 3rem;
  color: var(--bronze);
  opacity: 0.5;
}

.book-scroll__ornament--6 {
  top: 55%;
  right: 6%;
  font-size: 3rem;
  color: var(--bronze);
  opacity: 0.5;
  animation-delay: -3s;
}

@keyframes bookOrnamentFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(4px, -12px) rotate(6deg);
  }
}

/* Decorative quotation marks */
.book-scroll__quote {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 22rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.7;
  opacity: 0.05;
  letter-spacing: -0.05em;
  user-select: none;
}

.book-scroll__quote--left {
  top: 6%;
  left: 2%;
}

.book-scroll__quote--right {
  bottom: 6%;
  right: 3%;
}

/* Horizontal rules top/bottom */
.book-scroll__rule {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 138, 82, 0.3) 20%, rgba(192, 138, 82, 0.3) 80%, transparent);
}

.book-scroll__rule--top {
  top: 8vh;
}

.book-scroll__rule--bottom {
  bottom: 8vh;
}

/* Ensure book-stage stays above bg */
.book-stage {
  position: sticky;
  z-index: 1;
}

.book-stage {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100vh;
  padding: clamp(180px, 22vh, 240px) var(--pad-x) clamp(40px, 6vh, 70px);
  perspective: 1800px;
}

.book-stage__title {
  position: absolute;
  top: clamp(72px, 10vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  pointer-events: none;
}

.book-stage__eyebrow {
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.book-stage__title h2 {
  max-width: 18ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.book-stage__title h2 em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
}

.book-stage__title p {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 400;
}

.book-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 239, 230, 0.42), rgba(247, 239, 230, 0) 42%, rgba(247, 239, 230, 0.42)),
    radial-gradient(circle at 50% 70%, rgba(112, 64, 16, 0.04), transparent 40%);
}

.book-stage__copy {
  display: none;
}

.book-stage__copy span {
  display: block;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-stage__copy p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.book {
  position: relative;
  z-index: 2;
  width: min(530px, calc(100vw - 80px));
  height: min(540px, calc(100vh - 280px));
  min-height: 440px;
  transform-style: preserve-3d;
  transform: none;
}

.book::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -12px;
  z-index: 5;
  width: 12px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, var(--espresso), var(--gold) 55%, var(--bronze));
  box-shadow: -6px 0 16px rgba(0, 0, 0, 0.28);
}

.book-base,
.page {
  position: absolute;
  inset: 0;
  border-radius: 2px 4px 4px 2px;
  transform-style: preserve-3d;
}

.book-base {
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 236, 0.18);
  background:
    linear-gradient(135deg, rgba(27, 16, 7, 0.94), rgba(94, 58, 29, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 246, 236, 0.06) 0 1px, transparent 1px 10px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.book-base::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(217, 169, 110, 0.12);
  pointer-events: none;
}

.book-base__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 48px;
  text-align: center;
}

.book-base__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(217, 169, 110, 0.4);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-base h2 {
  margin-top: 24px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.book-base h2 em {
  display: block;
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 320;
}

.book-base p {
  margin: 22px auto 32px;
  max-width: 46rem;
  color: rgba(255, 246, 236, 0.78);
  line-height: 1.8;
}

.book-base__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.book-base__line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.book-base__star {
  color: var(--gold-bright);
  font-size: 1rem;
}

.page {
  transform-origin: left center;
  transform: rotateY(0deg);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.25);
  will-change: transform;
}

.page-1 { z-index: 4; }
.page-2 { z-index: 3; }
.page-3 { z-index: 2; }

.page__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 56px;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 20, 0.16);
  border-radius: 4px 10px 10px 4px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background:
    linear-gradient(90deg, rgba(91, 71, 50, 0.22), rgba(91, 71, 50, 0.04) 14%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 80% 12%, rgba(192, 138, 82, 0.14), transparent 36%),
    radial-gradient(circle at 20% 88%, rgba(192, 138, 82, 0.09), transparent 40%),
    var(--cream);
  color: var(--ink);
}

.page__face::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(112, 64, 16, 0.15);
  pointer-events: none;
}

.page__face::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  background: linear-gradient(90deg, rgba(112, 64, 16, 0.24), transparent);
  pointer-events: none;
}

.page__face.back {
  transform: rotateY(180deg);
  background:
    linear-gradient(90deg, rgba(112, 64, 16, 0.14), rgba(112, 64, 16, 0.04) 16%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 22% 18%, rgba(192, 138, 82, 0.14), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(192, 138, 82, 0.1), transparent 38%),
    var(--paper-warm);
}

/* Page structure: header, body, footer */
.page__header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(112, 64, 16, 0.2);
}

.page__chapter {
  color: var(--bronze);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page__number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
}

.page__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  margin: auto 0;
  min-height: 0;
}

.page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--bronze);
  border: 1px solid rgba(112, 64, 16, 0.28);
  background:
    radial-gradient(circle at 30% 30%, rgba(192, 138, 82, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 8px rgba(112, 64, 16, 0.08);
  flex-shrink: 0;
}

.page__icon svg {
  width: 22px;
  height: 22px;
}

.page__face p {
  position: relative;
  z-index: 1;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page__face p em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
}

.page__caption {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(112, 64, 16, 0.15);
  color: var(--gold);
  font: 700 0.62rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page__folio {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

.page__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.page__face.back p {
  max-width: 100%;
}

/* Verso (contra-página) — interlúdio editorial */
.page__face--verso {
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.page__verso {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 26ch;
  padding: 40px 20px;
  text-align: center;
}

.page__verso::before,
.page__verso::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page__verso-mark {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.page__verso-text {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 340;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.page__verso-text em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
}

.page__verso-attr {
  color: var(--gold);
  font: 700 0.62rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.book-scroll.is-complete .book-stage__copy p {
  color: var(--ink);
}


/* ---------- Book Flip Cover ---------- */

.page-cover .cover-front {
  justify-content: space-between;
  align-items: stretch;
  isolation: isolate;
  padding: 52px 54px;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(240, 200, 140, 0.28), transparent 42%),
    radial-gradient(ellipse at 22% 88%, rgba(120, 60, 20, 0.35), transparent 48%),
    linear-gradient(155deg, #0f0904 0%, #2a1608 28%, #6b4020 55%, #2a1608 82%, #0f0904 100%);
  color: var(--cream);
  border-color: rgba(217, 169, 110, 0.6);
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.5),
    inset 0 0 120px rgba(217, 169, 110, 0.08);
}

.page-cover .cover-front::before {
  inset: 20px;
  border: 1px solid rgba(217, 169, 110, 0.55);
  box-shadow: inset 0 0 0 1px rgba(217, 169, 110, 0.15);
}

.page-cover .cover-front::after {
  width: 26px;
  background: linear-gradient(90deg, rgba(217, 169, 110, 0.5), rgba(217, 169, 110, 0.12) 40%, rgba(217, 169, 110, 0));
}

/* Ornamental corner brackets */
.page-cover .cover-front .cover-front__grain {
  position: absolute;
  inset: 28px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px),
    linear-gradient(to bottom, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px),
    linear-gradient(to left, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px),
    linear-gradient(to top, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px);
  background-position: top left, top left, top right, top right;
  background-size: 1px 22px, 22px 1px, 1px 22px, 22px 1px;
  background-repeat: no-repeat;
}

.page-cover .cover-front .cover-front__grain::before,
.page-cover .cover-front .cover-front__grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px),
    linear-gradient(to bottom, rgba(217, 169, 110, 0.75) 0, rgba(217, 169, 110, 0.75) 22px, transparent 22px);
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-cover .cover-front .cover-front__grain::before {
  background-position: bottom left, bottom left;
  background-size: 1px 22px, 22px 1px;
}

.page-cover .cover-front .cover-front__grain::after {
  background-position: bottom right, bottom right;
  background-size: 1px 22px, 22px 1px;
  transform: scaleX(-1);
}

/* Diagonal gold sheen */
.cover-front__sheen {
  position: absolute;
  inset: 22px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255, 220, 160, 0.06) 45%,
    rgba(255, 220, 160, 0.12) 50%,
    rgba(255, 220, 160, 0.06) 55%,
    transparent 70%);
  mix-blend-mode: screen;
}

.cover-front__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 4px 20px;
  border-bottom: 1px solid rgba(217, 169, 110, 0.28);
}

.cover-front__brand,
.cover-front__seal,
.cover-front__year,
.cover-front__vol {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cover-front__year,
.cover-front__vol {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(217, 169, 110, 0.85);
}

.cover-front__mark {
  position: absolute;
  right: 30px;
  bottom: 16px;
  z-index: 0;
  color: rgba(217, 169, 110, 0.09);
  font-family: var(--font-display);
  font-size: min(22rem, 48vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  pointer-events: none;
  text-shadow:
    0 0 40px rgba(217, 169, 110, 0.15),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-cover .cover-front__headline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 15ch;
  margin: auto 0;
  padding: 8px 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.cover-front__line {
  position: relative;
  z-index: 1;
  display: block;
}

.cover-front__line--gold {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 320;
  font-size: 0.78em;
  letter-spacing: 0;
}

.cover-front__line--gold em {
  font-style: italic;
  background: linear-gradient(180deg, #f5d5a0 0%, #d9a96e 45%, #b0803d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.cover-front__divider {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0.22em 0;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.cover-front__line--small {
  color: rgba(255, 246, 236, 0.7);
  font-size: 0.6em;
  font-weight: 400;
  font-style: italic;
}

.cover-front__line--histories {
  font-weight: 460;
  letter-spacing: -0.015em;
}

.cover-front__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px 6px;
  border-top: 1px solid rgba(217, 169, 110, 0.28);
}

.cover-front__seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.cover-front__seal-star {
  font-size: 0.9rem;
  color: var(--gold);
}

@media (max-width: 900px) {
  .page-cover .cover-front {
    padding: 42px 36px;
  }

  .page-cover .cover-front__headline {
    max-width: 14ch;
    font-size: clamp(2.1rem, 6.5vw, 2.85rem);
  }
}

@media (max-width: 560px) {
  .page-cover .cover-front {
    padding: 36px 26px;
  }

  .page-cover .cover-front__headline {
    max-width: 12ch;
    font-size: 2rem;
  }

  .cover-front__mark {
    right: 20px;
    bottom: 14px;
    opacity: 0.7;
  }

  .cover-front__top,
  .cover-front__bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .book-scroll {
    display: none;
  }

  .book-stage {
    padding-top: 104px;
  }

  .book-stage__copy {
    top: 82px;
  }

  .book {
    width: min(500px, calc(100vw - 56px));
    height: min(540px, calc(100vh - 164px));
    min-height: 390px;
  }

  .page__face {
    padding: 48px 42px;
  }

  .page__face p {
    font-size: 1.75rem;
  }

  .book-base h2 {
    font-size: 2.4rem;
  }

  .book-base__content {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .book-scroll {
    --book-intro-offset: 25vh;
  }

  .book-stage {
    padding: 100px 18px 42px;
  }

  .book-stage__copy {
    left: 18px;
    max-width: 180px;
  }

  .book {
    width: calc(100vw - 64px);
    height: 430px;
    min-height: 430px;
    transform: none;
  }

  .book::before {
    left: -12px;
    width: 14px;
  }

  .page__face {
    padding: 42px 30px;
  }

  .page__face p {
    max-width: 100%;
    font-size: 1.4rem;
  }

  .book-base p {
    font-size: 0.94rem;
  }
}

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


  .book-scroll {
    height: auto;
  }

  .book-stage {
    position: relative;
    height: auto;
  }

  .page {
    display: none;
  }

  .book-scroll__ornament {
    animation: none;
  }
}
/* ---------- Manifesto ---------- */

.manifesto {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 12% 20%, rgba(192, 138, 82, 0.06), transparent 60%),
    radial-gradient(50% 40% at 88% 80%, rgba(112, 64, 16, 0.05), transparent 60%);
}

.manifesto__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) var(--pad-x) clamp(48px, 6vw, 80px);
}

/* Coluna esquerda */
.manifesto__left {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 42px);
}

.manifesto__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.manifesto__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.manifesto__eyebrow-sep {
  color: var(--gold);
  letter-spacing: 0;
}

.manifesto__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 360;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

.manifesto__title em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 340;
}

.manifesto__body-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 56ch;
}

.manifesto__body-text p {
  color: var(--ink-body);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.manifesto__dropcap {
  float: left;
  margin: 0.06em 0.12em 0 0;
  padding-right: 4px;
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 3.6em;
  font-weight: 420;
  font-style: italic;
  line-height: 0.82;
}

.manifesto__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.manifesto__pillar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num icon"
    "num title"
    "num sub";
  align-items: center;
  gap: 6px 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow: hidden;
}

.manifesto__pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.manifesto__pillar:hover {
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.6), rgba(255, 255, 255, 0.9));
}

.manifesto__pillar:hover::before {
  transform: scaleX(1);
}

.manifesto__pillar-num {
  grid-area: num;
  align-self: start;
  padding-right: 14px;
  border-right: 1px solid rgba(112, 64, 16, 0.14);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.manifesto__pillar-icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  color: var(--bronze);
  opacity: 0.85;
}

.manifesto__pillar strong {
  grid-area: title;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.2;
}

.manifesto__pillar-sub {
  grid-area: sub;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Coluna direita */
.manifesto__right {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
}

.manifesto__figure {
  position: relative;
  margin: 0;
  padding: clamp(14px, 1.5vw, 20px);
  background: rgba(255, 255, 255, 0.4);
}

.manifesto__figure-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  opacity: 0.85;
}

.manifesto__figure-corner--tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.manifesto__figure-corner--tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.manifesto__figure-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.manifesto__figure-corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.manifesto__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(36, 23, 8, 0.16);
}

.manifesto__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-expo);
}

.manifesto__figure:hover .manifesto__image {
  transform: scale(1.03);
}

.manifesto__figure-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 0 4px;
  color: var(--ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.manifesto__figure-tag {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.manifesto__quote {
  position: relative;
  padding: 4px 0 4px 32px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 340;
  line-height: 1.55;
}

.manifesto__quote-mark {
  position: absolute;
  top: -0.35em;
  left: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
}

.manifesto__quote p {
  text-wrap: pretty;
}

.manifesto__signoff {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.manifesto__signoff-line {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.manifesto__closing {
  flex: 1;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 480;
  line-height: 1.35;
}

.manifesto__closing em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
}

.manifesto__signoff-star {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .manifesto__inner {
    grid-template-columns: 1fr;
  }

  .manifesto__image-wrap {
    aspect-ratio: 16 / 10;
  }

  .manifesto__pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- Legacy (dark band) ---------- */

.legacy {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--espresso-soft) 0%, var(--espresso) 70%);
  color: var(--cream);
  overflow: hidden;
}

.legacy__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(44px, 6vw, 64px);
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
  text-align: center;
}

.legacy__inner {
  display: none;
}

.legacy__split {
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  align-items: stretch;
  min-height: clamp(500px, 62vh, 720px);
}

.legacy__hero-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(400px, 55vh, 640px);
}

.legacy__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.05) saturate(1.05);
}

.legacy__hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(27, 16, 7, 0) 55%, rgba(27, 16, 7, 0.45) 78%, var(--espresso) 100%),
    linear-gradient(115deg, rgba(27, 16, 7, 0.15) 0%, rgba(27, 16, 7, 0) 40%);
  pointer-events: none;
}

.legacy__hero-tag {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 3vw, 44px);
  left: clamp(28px, 3vw, 44px);
  padding: 8px 14px;
  color: var(--cream);
  font: 600 0.72rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 246, 236, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.legacy__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 3.5vw, 44px);
  padding: clamp(64px, 8vw, 120px) clamp(28px, 5vw, 88px);
}

.legacy__title {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  font-weight: 340;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: balance;
}

.legacy__title em {
  display: block;
  margin-top: 0.1em;
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 300;
}

.legacy__meta {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 20px;
  max-width: 42rem;
}

.legacy__rule {
  height: 1px;
  margin-top: 0.7em;
  background: var(--gold);
  opacity: 0.7;
}

.legacy__copy {
  color: rgba(255, 246, 236, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.legacy .button {
  align-self: flex-start;
}

.legacy .marquee {
  border-top-color: rgba(192, 138, 82, 0.28);
  border-bottom: none;
}

@media (max-width: 900px) {
  .legacy__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .legacy__hero-img {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .legacy__hero-img img {
    object-position: center center;
  }

  .legacy__hero-img::before {
    background:
      linear-gradient(180deg, rgba(27, 16, 7, 0) 55%, rgba(27, 16, 7, 0.45) 80%, var(--espresso) 100%);
  }

  .legacy__body {
    align-items: center;
    padding: clamp(48px, 7vw, 72px) var(--pad-x);
    text-align: center;
  }

  .legacy__meta {
    display: block;
    max-width: min(100%, 27rem);
    margin-inline: auto;
  }

  .legacy__rule {
    display: none;
  }

  .legacy__copy {
    text-align: center;
  }

  .legacy .button {
    align-self: center;
  }

  .legacy__title {
    max-width: none;
    text-align: center;
  }
}

.marquee {
  width: 100vw;
  max-width: 100%;
  padding: clamp(26px, 3.5vw, 38px) 0;
  border-top: 1px solid rgba(192, 138, 82, 0.4);
  border-bottom: 1px solid rgba(192, 138, 82, 0.4);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  padding: 0 clamp(22px, 3vw, 40px);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 320;
  white-space: nowrap;
}

.marquee__sep {
  color: rgba(192, 138, 82, 0.55);
  font-size: 1rem;
}


/* ---------- Legacy CSS gradient blend ---------- */

.legacy__split {
  position: relative;
  isolation: isolate;
}

.legacy__hero-img {
  z-index: 1;
}

.legacy__body {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(80% 80% at 0% 45%, rgba(192, 138, 82, 0.1), transparent 58%),
    linear-gradient(90deg, rgba(27, 16, 7, 0.92), var(--espresso) 28%);
}

.legacy__hero-img::before {
  background:
    linear-gradient(115deg, rgba(27, 16, 7, 0.12) 0%, rgba(27, 16, 7, 0) 40%);
}

.legacy__hero-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 2;
  width: 48%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(27, 16, 7, 0) 0%,
    rgba(27, 16, 7, 0.32) 42%,
    rgba(27, 16, 7, 0.74) 70%,
    var(--espresso) 100%
  );
}

@media (max-width: 900px) {
  .legacy__body {
    background: var(--espresso);
  }
}
/* ---------- Services ---------- */

.services__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--pad-x) clamp(48px, 6vw, 80px);
}

.services__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  text-align: center;
}

.services__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.services__eyebrow-sep {
  color: var(--gold);
  letter-spacing: 0;
}

.services__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.services__intro {
  max-width: 44rem;
  margin: 6px auto 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.services__toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--bronze);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services__toc-count {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-muted);
}

.services__list {
  border-bottom: 1px solid var(--line);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 80px 56px 1fr 1.4fr auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
  padding: clamp(22px, 2.6vw, 32px) 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease-out), padding-left 0.4s var(--ease-out);
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(192, 138, 82, 0.08), transparent);
  transition: width 0.5s var(--ease-out);
  pointer-events: none;
}

.service:hover {
  padding-left: clamp(16px, 2vw, 28px);
}

.service:hover::before {
  width: 100%;
}

.service--last {
  border-bottom: none;
}

.service__number {
  align-self: center;
  color: rgba(192, 138, 82, 0.45);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  transition: color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.service:hover .service__number {
  color: var(--gold);
  transform: translateX(4px);
}

.service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(112, 64, 16, 0.18);
  border-radius: 50%;
  color: var(--bronze);
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.service:hover .service__icon {
  border-color: var(--gold);
  background: var(--paper-warm);
  color: var(--bronze-light);
}

.service__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.3s var(--ease-out);
}

.service:hover .service__title {
  color: var(--bronze);
}

.service__copy {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-wrap: pretty;
  max-width: 44ch;
}

.service__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--bronze);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.service:hover .service__arrow {
  opacity: 1;
  transform: translateX(0);
}

.services__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 56px);
}

/* ---------- Differential (wine band) ---------- */

.differential {
  position: relative;
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(27, 16, 7, 0.4), transparent 70%),
    linear-gradient(160deg, #6b3f22 0%, var(--wine) 40%, #3d2410 100%);
  color: var(--cream);
  overflow: hidden;
}

/* ---- Background decorative layer ---- */
.differential__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.differential__watermark {
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  color: rgba(255, 246, 236, 0.04);
  font-family: var(--font-display);
  font-size: min(28rem, 34vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.05em;
  user-select: none;
}

.differential__grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(to right, rgba(217, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

.differential__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.differential__glow--tl {
  top: -14vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(217, 169, 110, 0.28), transparent 65%);
}

.differential__glow--br {
  bottom: -14vw;
  right: -14vw;
  background: radial-gradient(circle, rgba(94, 58, 29, 0.55), transparent 65%);
}

.differential__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.35;
  animation: differentialFloat 9s ease-in-out infinite;
}

.differential__ornament--1 {
  top: 14%;
  left: 8%;
  font-size: 1.6rem;
}

.differential__ornament--2 {
  top: 30%;
  right: 6%;
  font-size: 1.2rem;
  animation-delay: -3s;
  animation-duration: 11s;
}

.differential__ornament--3 {
  bottom: 20%;
  left: 12%;
  font-size: 3rem;
  color: var(--gold-bright);
  opacity: 0.4;
  animation-delay: -5s;
  animation-duration: 10s;
}

@keyframes differentialFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(4px, -10px) rotate(6deg);
  }
}

.differential__rule {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 169, 110, 0.28) 20%, rgba(217, 169, 110, 0.28) 80%, transparent);
}

.differential__rule--top {
  top: 8vh;
}

.differential__rule--bottom {
  bottom: 8vh;
}

/* ---- Content ---- */
.differential__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
}

.differential__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--gold-bright);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.differential__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.differential__eyebrow-sep {
  color: var(--gold);
}

.differential__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 246, 236, 0.7);
}

.differential__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 340;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: balance;
}

.differential__title em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 320;
}

.differential__copy {
  margin-top: 24px;
  max-width: 44ch;
  color: rgba(255, 246, 236, 0.75);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.differential__signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  max-width: 320px;
}

.differential__signature-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 169, 110, 0.6));
}

.differential__signature-line:last-child {
  background: linear-gradient(90deg, rgba(217, 169, 110, 0.6), transparent);
}

.differential__signature-mark {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

/* Quotes */
.differential__quotes {
  position: relative;
  padding: clamp(28px, 3vw, 44px) 0;
  border: none;
}

.differential__quote-mark {
  position: absolute;
  top: -0.4em;
  left: -0.15em;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(8rem, 14vw, 14rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.6;
  opacity: 0.14;
  user-select: none;
  z-index: 0;
}

.differential__quote-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 246, 236, 0.14);
}

.differential__quote-item--last {
  border-bottom: none;
  padding-bottom: 0;
}

.differential__quote-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  opacity: 0.85;
}

.differential__quote {
  padding: 0;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 320;
  line-height: 1.4;
  text-wrap: balance;
}

.differential__quote em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 380;
}

.differential__note {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 169, 110, 0.36);
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: fit-content;
}

.differential__note-star {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .differential__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .differential__signature {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .differential__ornament {
    animation: none;
  }
}

/* ---------- Audience ---------- */

.audience {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.audience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.audience__watermark {
  position: absolute;
  right: -2vw;
  bottom: -6vw;
  color: rgba(192, 138, 82, 0.05);
  font-family: var(--font-display);
  font-size: min(22rem, 26vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}

.audience__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) var(--pad-x) clamp(48px, 6vw, 76px);
}

.audience__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.audience__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.audience__eyebrow-sep {
  color: var(--gold);
}

.audience__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.audience__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.audience__title em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 340;
}

.audience__copy {
  margin-top: 18px;
  max-width: 44ch;
  color: var(--ink-body);
  font-size: 0.98rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.audience__figure {
  position: relative;
  margin: 32px 0 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.audience__figure-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  opacity: 0.85;
}

.audience__figure-corner--tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.audience__figure-corner--tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.audience__figure-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.audience__figure-corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.audience__image {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(240px, 26vw, 320px);
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(36, 23, 8, 0.14);
  transition: transform 1.2s var(--ease-expo);
}

.audience__figure:hover .audience__image {
  transform: scale(1.03);
}

.audience__figure-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 0 4px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.audience__figure-tag {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.audience__list {
  align-self: start;
}

/* List header */
.audience__list-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.audience__list-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(112, 64, 16, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.5);
}

.audience__list-eyebrow {
  color: var(--bronze);
  font: 700 0.68rem/1.2 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.audience__list-title {
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 420;
  line-height: 1.2;
}

.audience__list-title em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 380;
}

/* List items */
.audience__items {
  display: flex;
  flex-direction: column;
}

.audience__item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(36, 23, 8, 0.08);
  color: var(--ink-body);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: padding-left 0.4s var(--ease-out), background 0.4s var(--ease-out);
  overflow: hidden;
}

.audience__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.audience__item:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(192, 138, 82, 0.06), transparent);
}

.audience__item:hover::before {
  transform: scaleX(1);
}

.audience__item-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 380;
  line-height: 1;
  transition: color 0.35s var(--ease-out);
}

.audience__item:hover .audience__item-num {
  color: var(--bronze);
}

.audience__item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.audience__item-content p {
  color: var(--ink-body);
  margin: 0;
}

.audience__item-tag {
  color: var(--bronze);
  font: 700 0.62rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.35s var(--ease-out);
}

.audience__item:hover .audience__item-tag {
  opacity: 1;
}

.audience__item-arrow {
  color: var(--bronze);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.audience__item:hover .audience__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.audience__item:last-child {
  border-bottom: 0;
}

/* CTA row */
.audience__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.audience__cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 380;
  line-height: 1.3;
  max-width: 24ch;
}

.audience__cta-note-star {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .audience__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ---------- Process ---------- */

.process {
  position: relative;
  background: var(--paper-warm);
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.process__watermark {
  position: absolute;
  left: -2vw;
  bottom: -5vw;
  color: rgba(112, 64, 16, 0.05);
  font-family: var(--font-display);
  font-size: min(22rem, 26vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.03em;
  user-select: none;
  white-space: nowrap;
}

.process__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(112, 64, 16, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(112, 64, 16, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

.process__glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.process__glow--tl {
  top: -12vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(192, 138, 82, 0.16), transparent 65%);
}

.process__glow--br {
  bottom: -12vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(112, 64, 16, 0.1), transparent 65%);
}

.process__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.3;
  animation: processFloat 10s ease-in-out infinite;
}

.process__ornament--1 {
  top: 15%;
  right: 8%;
  font-size: 1.4rem;
}

.process__ornament--2 {
  bottom: 20%;
  left: 8%;
  font-size: 2.6rem;
  color: var(--bronze);
  opacity: 0.4;
  animation-delay: -4s;
}

@keyframes processFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, -8px);
  }
}

.process__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--pad-x);
}

.process__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
}

.process__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.process__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.process__eyebrow-sep {
  color: var(--gold);
}

.process__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.process__intro {
  margin: 4px 0 0;
  max-width: 40rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.process__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid rgba(112, 64, 16, 0.2);
}

.process__stat-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.process__stat-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.process__stat-label {
  color: var(--bronze);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(112, 64, 16, 0.14);
  border: 1px solid rgba(112, 64, 16, 0.14);
}

@media (max-width: 900px) {
  .process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--paper-warm);
  border-top: none;
  transition: background 0.4s var(--ease-out);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

/* Connection line to next step */
.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
  background: var(--paper-warm);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.process-step:hover::after {
  opacity: 0.75;
}

/* No arrow on end-of-row and last step */
.process-step:nth-child(4n)::after,
.process-step:last-child::after {
  display: none;
}

.process-step:hover {
  background: #fff8ee;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(112, 64, 16, 0.12);
}

.process-step__number {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  transition: color 0.35s var(--ease-out);
}

.process-step:hover .process-step__number {
  color: var(--gold);
}

.process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(112, 64, 16, 0.18);
  border-radius: 50%;
  color: var(--bronze);
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.process-step:hover .process-step__icon {
  border-color: var(--gold);
  color: var(--bronze-light);
  background: rgba(255, 255, 255, 0.9);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.35s var(--ease-out);
}

.process-step:hover .process-step__title {
  color: var(--bronze);
}

.process-step--highlight {
  background:
    linear-gradient(180deg, rgba(217, 169, 110, 0.14), rgba(217, 169, 110, 0.04));
}

.process-step--highlight::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), transparent);
  height: 3px;
}

.process-step--highlight .process-step__title,
.process-step--highlight .process-step__number {
  color: var(--bronze);
}

.process-step--highlight .process-step__icon {
  border-color: var(--gold);
  color: var(--bronze-light);
  background: rgba(255, 255, 255, 0.9);
}

/* Small ✦ badge on the highlighted card */
.process-step--highlight .process-step__head::after {
  content: "✦";
  position: absolute;
  top: -4px;
  right: -4px;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.6;
}

.process-step--highlight .process-step__head {
  position: relative;
}

.process-step__copy {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  .process__ornament {
    animation: none;
  }
}

/* ---------- Reach (image band) ---------- */

.reach {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 78vh, 700px);
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}

.reach__media {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  opacity: 0.32;
}

.reach__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27, 16, 7, 0.3) 0%, rgba(27, 16, 7, 0.88) 100%);
}

.reach__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}

.reach__places {
  color: var(--gold-bright);
  font: 600 12.5px var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
}

.reach__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 360;
  line-height: 1.14;
}

.reach__title em {
  color: var(--gold-bright);
}

.reach__copy {
  max-width: 40rem;
  color: rgba(255, 246, 236, 0.82);
  line-height: 1.8;
}

.reach__quote {
  margin-top: 18px;
  padding: 30px clamp(18px, 4vw, 48px);
  border-top: 1px solid rgba(192, 138, 82, 0.55);
  border-bottom: 1px solid rgba(192, 138, 82, 0.55);
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-style: italic;
  font-weight: 320;
  line-height: 1.55;
}

.reach__quote em {
  color: var(--gold-bright);
}

/* ---------- Closing ---------- */

.closing {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 246, 0.96) 45%, rgba(247, 239, 230, 0.92) 100%),
    radial-gradient(70% 100% at 78% 48%, rgba(192, 138, 82, 0.18), transparent 62%);
}

.closing::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -6%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(112, 64, 16, 0.16);
  transform: rotate(-8deg);
  opacity: 0.7;
}

.closing::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -18%;
  width: min(36vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 138, 82, 0.16), transparent 68%);
  pointer-events: none;
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(76px, 8vw, 112px) var(--pad-x);
}

.closing__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.closing__mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(112, 64, 16, 0.25);
}

.closing__title {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.05rem);
  font-weight: 400;
  line-height: 1.03;
}

.closing__copy {
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.closing__visual {
  position: relative;
  min-height: clamp(300px, 34vw, 455px);
  margin: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.closing__visual::before {
  content: "";
  position: absolute;
  inset: 11% 4% 8% 9%;
  border: 1px solid rgba(112, 64, 16, 0.18);
  background: rgba(255, 246, 236, 0.42);
  transform: rotate(5deg);
  z-index: -2;
}

.closing__visual::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 9%;
  left: 13%;
  height: 23%;
  border-radius: 50%;
  background: rgba(27, 16, 7, 0.22);
  filter: blur(28px);
  transform: rotate(-4deg);
  z-index: -1;
}

.closing__visual img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 10px;
  transform: rotate(2.5deg);
  box-shadow: 0 26px 70px rgba(27, 16, 7, 0.18);
}

.closing__note {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(112, 64, 16, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--bronze);
  font: 700 10px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(27, 16, 7, 0.1);
}

.closing__note--one {
  top: 14%;
  left: 0;
}

.closing__note--two {
  right: 2%;
  top: 34%;
}

.closing__note--three {
  left: 10%;
  bottom: 13%;
}

@media (max-width: 920px) {
  .closing__inner {
    grid-template-columns: 1fr;
    padding-block: clamp(64px, 10vw, 92px);
  }

  .closing__content {
    align-items: center;
    text-align: center;
  }

  .closing__visual {
    min-height: 0;
    width: min(100%, 560px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .closing__inner {
    padding-block: 58px 68px;
  }

  .closing__mark {
    width: 58px;
    height: 58px;
  }

  .closing__visual img {
    border-radius: 8px;
  }

  .closing__note {
    display: none;
  }
}
/* ---------- Footer ---------- */

.site-footer {
  background: var(--espresso);
  color: var(--cream);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 60px) var(--pad-x);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__logo {
  width: clamp(180px, 16vw, 220px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.site-footer__name {
  display: none;
}

.site-footer__tagline {
  color: rgba(255, 246, 236, 0.6);
  font-size: 0.78rem;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: 0.88rem;
}

.site-footer__link {
  color: rgba(255, 246, 236, 0.78);
  transition: color 0.25s var(--ease-out);
}

.site-footer__link:hover {
  color: var(--gold-bright);
}

.site-footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__phone svg {
  fill: var(--gold);
}

.site-footer__addresses {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 246, 236, 0.65);
  font-style: normal;
}

.site-footer__address-title {
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
  display: block;
}

.site-footer__social-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

/* ---------- Briefing sections ---------- */

html {
  scroll-padding-top: 24px;
}

body * {
  letter-spacing: 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--bronze);
  font: 700 0.76rem/1.2 var(--font-body);
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-label--light {
  color: var(--gold-bright);
}

.section-title,
.publish-showcase__content h3,
.coauthor__title,
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.7rem, 2.7rem);
  font-weight: 410;
  line-height: 1.12;
}

.section-intro {
  max-width: 45rem;
  margin: 18px auto 0;
  color: var(--ink-muted);
  line-height: 1.8;
}

.publish-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  margin-bottom: clamp(44px, 6vw, 70px);
  padding: clamp(32px, 5vw, 64px);
  border: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 230, 0.72)),
    radial-gradient(70% 60% at 8% 8%, rgba(192, 138, 82, 0.14), transparent 55%),
    radial-gradient(60% 60% at 92% 92%, rgba(112, 64, 16, 0.08), transparent 55%);
  box-shadow:
    0 40px 80px -30px rgba(36, 23, 8, 0.15),
    0 0 0 1px rgba(112, 64, 16, 0.14);
}

.publish-showcase__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 3;
}

.publish-showcase__corner--tl {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.publish-showcase__corner--tr {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.publish-showcase__corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.publish-showcase__corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.publish-showcase__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(27, 16, 7, 0.86);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.publish-showcase__badge-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.publish-showcase__badge-label {
  padding-left: 10px;
  border-left: 1px solid rgba(217, 169, 110, 0.4);
}

.book-mockup {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.book-mockup__cover {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(260px, 78vw);
  aspect-ratio: 0.68;
  padding: 30px 26px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(45, 24, 12, 0.95), rgba(27, 16, 7, 0.96)),
    radial-gradient(circle at 70% 22%, rgba(217, 169, 110, 0.36), transparent 35%);
  box-shadow: 28px 26px 42px rgba(36, 23, 8, 0.24);
  transform: rotateY(-10deg) rotateZ(-2deg);
}

.book-mockup__cover::before,
.book-mockup__cover::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 169, 110, 0.42);
  pointer-events: none;
}

.book-mockup__cover::after {
  inset: auto 32px 86px;
  height: 1px;
  background: rgba(217, 169, 110, 0.65);
}

.book-mockup__seal,
.book-mockup__author {
  color: var(--gold-bright);
  font: 700 0.74rem/1.2 var(--font-body);
  text-transform: uppercase;
}

.book-mockup__cover strong {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 430;
  line-height: 0.96;
}

.book-mockup__cover em {
  max-width: 17ch;
  color: rgba(255, 246, 236, 0.76);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.35;
}

.book-mockup__pages {
  position: absolute;
  width: min(250px, 76vw);
  aspect-ratio: 0.68;
  transform: translate(28px, 18px) rotateY(-10deg) rotateZ(-2deg);
  background: repeating-linear-gradient(90deg, #f7efe6 0 5px, #e4d6c6 5px 6px);
  box-shadow: 16px 18px 28px rgba(36, 23, 8, 0.16);
}

.publish-showcase__content {
  max-width: 650px;
}

.publish-showcase__content h3 em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 380;
}

.publish-showcase__content p {
  margin-top: 20px;
  color: var(--ink-body);
  line-height: 1.82;
  max-width: 44ch;
}

.publish-showcase__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(112, 64, 16, 0.16);
  border-bottom: 1px solid rgba(112, 64, 16, 0.16);
  list-style: none;
}

.publish-showcase__facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
}

.publish-showcase__facts svg {
  flex-shrink: 0;
  color: var(--gold);
  stroke-width: 2;
}

.publish-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.publish-showcase__stamp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(112, 64, 16, 0.2);
  color: var(--bronze);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.publish-showcase__stamp-num {
  padding-left: 10px;
  border-left: 1px solid rgba(112, 64, 16, 0.2);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--bronze);
}

.section-label--gold {
  color: var(--bronze);
  font-family: var(--font-body);
}

.section-label__mark {
  color: var(--gold);
  font-size: 0.95rem;
}

.section-label--gold::before {
  display: none;
}

.programs {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.ecosystem {
  background: var(--paper);
}

/* Background decorative layer */
.programs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.programs__watermark {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  color: rgba(192, 138, 82, 0.05);
  font-family: var(--font-display);
  font-size: min(24rem, 28vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}

.programs__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(112, 64, 16, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(112, 64, 16, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

.programs__glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.programs__glow--tl {
  top: -12vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(192, 138, 82, 0.16), transparent 65%);
}

.programs__glow--br {
  bottom: -12vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(112, 64, 16, 0.1), transparent 65%);
}

.programs__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.3;
  animation: programsFloat 10s ease-in-out infinite;
}

.programs__ornament--1 {
  top: 14%;
  right: 8%;
  font-size: 1.5rem;
}

.programs__ornament--2 {
  bottom: 20%;
  left: 6%;
  font-size: 2.8rem;
  color: var(--bronze);
  opacity: 0.4;
  animation-delay: -4s;
}

@keyframes programsFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, -10px);
  }
}

.programs__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--pad-x);
}

.ecosystem__inner,
.contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}

/* Header */
.programs__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.programs__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.programs__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.programs__eyebrow-sep {
  color: var(--gold);
}

.programs__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.programs__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.programs__title em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 340;
}

.programs__intro {
  margin: 4px 0 0;
  max-width: 44rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Media / figure */
.programs__media {
  position: relative;
  margin: 0 0 clamp(36px, 5vw, 56px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  box-shadow: 0 30px 70px rgba(36, 23, 8, 0.14);
  overflow: visible;
}

.programs__media-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 2;
}

.programs__media-corner--tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.programs__media-corner--tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.programs__media-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.programs__media-corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.programs__media-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(27, 16, 7, 0.86);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.programs__media-tag-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.programs__media-tag-label {
  padding-left: 10px;
  border-left: 1px solid rgba(217, 169, 110, 0.4);
}

.programs__media-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 0 4px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.programs__media-caption-tag {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

/* TOC divider */
.programs__toc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--bronze);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.programs__toc-count {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold);
}

/* Program cards */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(112, 64, 16, 0.14);
  background: linear-gradient(180deg, #fff, rgba(247, 239, 230, 0.6));
  transition: border-color 0.35s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.program-card:hover {
  border-color: rgba(192, 138, 82, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(36, 23, 8, 0.18);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card--warm {
  background:
    linear-gradient(180deg, rgba(247, 239, 230, 0.9), #fff),
    radial-gradient(80% 80% at 100% 0%, rgba(192, 138, 82, 0.16), transparent 65%);
}

.program-card__head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(112, 64, 16, 0.14);
}

.program-card__num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.program-card__eyebrow,
.ecosystem-card__label,
.contact__form-title {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.program-card__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  font-weight: 420;
  line-height: 1.22;
  color: var(--ink);
}

.program-card__list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  color: var(--ink-body);
  font-size: 0.94rem;
}

.program-card__list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.program-card__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.program-card__list li::after {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 4px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.program-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(112, 64, 16, 0.14);
}

.program-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-card__price-label {
  color: var(--bronze);
  font: 700 0.62rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.program-card__price {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.program-card__price em {
  color: var(--gold);
  font-style: italic;
  font-size: 0.7em;
  font-weight: 300;
  margin-left: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .programs__ornament {
    animation: none;
  }
}

.coauthor {
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(45, 24, 12, 0.97), rgba(27, 16, 7, 0.99)),
    url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
}

/* Background editorial layer */
.coauthor__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.coauthor__watermark {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  color: rgba(217, 169, 110, 0.05);
  font-family: var(--font-display);
  font-size: min(24rem, 28vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}

.coauthor__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(to right, rgba(217, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

.coauthor__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.coauthor__glow--tl {
  top: -14vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(217, 169, 110, 0.28), transparent 65%);
}

.coauthor__glow--br {
  bottom: -14vw;
  right: -14vw;
  background: radial-gradient(circle, rgba(94, 58, 29, 0.4), transparent 65%);
}

.coauthor__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.35;
  animation: coauthorFloat 10s ease-in-out infinite;
}

.coauthor__ornament--1 {
  top: 16%;
  right: 10%;
  font-size: 1.6rem;
}

.coauthor__ornament--2 {
  bottom: 22%;
  left: 8%;
  font-size: 3rem;
  color: var(--gold-bright);
  opacity: 0.4;
  animation-delay: -4s;
}

@keyframes coauthorFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, -10px);
  }
}

.coauthor__quote-left {
  position: absolute;
  top: 8%;
  left: 3%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 22rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.7;
  opacity: 0.05;
  letter-spacing: -0.05em;
  user-select: none;
}

.coauthor__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) var(--pad-x);
}

/* Content column */
.coauthor__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.coauthor__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.coauthor__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.coauthor__eyebrow-sep {
  color: var(--gold);
}

.coauthor__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 246, 236, 0.7);
}

.coauthor__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-wrap: balance;
}

.coauthor__title em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 340;
}

.coauthor__copy {
  margin: 20px 0 32px;
  max-width: 44ch;
  color: rgba(255, 246, 236, 0.72);
  font-size: 0.98rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.coauthor__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.coauthor__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 169, 110, 0.3);
  color: var(--gold-bright);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.coauthor__meta-star {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0;
}

/* Points column */
.coauthor__points {
  display: grid;
  gap: 14px;
}

.coauthor__points-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  color: var(--gold-bright);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.coauthor__points-line {
  flex: 1;
  height: 1px;
  background: rgba(217, 169, 110, 0.28);
}

.coauthor__point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(217, 169, 110, 0.2);
  background: rgba(255, 246, 236, 0.03);
  backdrop-filter: blur(10px);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  overflow: hidden;
  position: relative;
}

.coauthor__point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.coauthor__point:hover {
  border-color: rgba(217, 169, 110, 0.5);
  background: rgba(255, 246, 236, 0.06);
  transform: translateX(4px);
}

.coauthor__point:hover::before {
  transform: scaleX(1);
}

.coauthor__point span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.coauthor__point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
}

.coauthor__point p {
  color: rgba(255, 246, 236, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .coauthor__ornament {
    animation: none;
  }
}

.ecosystem {
  position: relative;
  background: linear-gradient(180deg, var(--paper-warm), #fff);
  overflow: hidden;
}

/* Background editorial layer */
.ecosystem__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ecosystem__watermark {
  position: absolute;
  left: -3vw;
  bottom: -6vw;
  color: rgba(192, 138, 82, 0.05);
  font-family: var(--font-display);
  font-size: min(22rem, 26vw);
  font-style: italic;
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}

.ecosystem__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(112, 64, 16, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(112, 64, 16, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 30%, transparent 90%);
}

.ecosystem__glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.ecosystem__glow--tl {
  top: -12vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(192, 138, 82, 0.14), transparent 65%);
}

.ecosystem__glow--br {
  bottom: -12vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(112, 64, 16, 0.09), transparent 65%);
}

.ecosystem__ornament {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.3;
  animation: ecosystemFloat 10s ease-in-out infinite;
}

.ecosystem__ornament--1 {
  top: 14%;
  right: 8%;
  font-size: 1.5rem;
}

.ecosystem__ornament--2 {
  bottom: 22%;
  left: 6%;
  font-size: 2.8rem;
  color: var(--bronze);
  opacity: 0.4;
  animation-delay: -4s;
}

@keyframes ecosystemFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, -10px);
  }
}

/* Inner override */
.ecosystem__inner {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4.5vw, 60px) var(--pad-x) clamp(48px, 6vw, 76px);
}

/* Heading */
.ecosystem__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.ecosystem__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bronze);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ecosystem__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.ecosystem__eyebrow-sep {
  color: var(--gold);
}

.ecosystem__eyebrow-italic {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-muted);
}

.ecosystem__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 380;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.ecosystem__title em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 340;
}

.ecosystem__intro {
  margin: 4px 0 0;
  max-width: 44rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Media / figure */
.ecosystem__media {
  position: relative;
  margin: 0 0 clamp(28px, 4vw, 44px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  box-shadow: 0 30px 70px rgba(36, 23, 8, 0.14);
  overflow: visible;
}

.ecosystem__media-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 2;
}

.ecosystem__media-corner--tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.ecosystem__media-corner--tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.ecosystem__media-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.ecosystem__media-corner--br {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.ecosystem__media-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(27, 16, 7, 0.86);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ecosystem__media-tag-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.ecosystem__media-tag-label {
  padding-left: 10px;
  border-left: 1px solid rgba(217, 169, 110, 0.4);
}

.ecosystem__media-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 0 4px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.ecosystem__media-caption-tag {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

/* TOC divider */
.ecosystem__toc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--bronze);
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ecosystem__toc-count {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold);
}

/* Cards */
.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ecosystem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(112, 64, 16, 0.14);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  overflow: hidden;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.ecosystem-card:hover {
  border-color: rgba(192, 138, 82, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(36, 23, 8, 0.14);
}

.ecosystem-card:hover::before {
  transform: scaleX(1);
}

.ecosystem-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(112, 64, 16, 0.12);
}

.ecosystem-card__num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  transition: color 0.35s var(--ease-out);
}

.ecosystem-card:hover .ecosystem-card__num {
  color: var(--bronze);
}

.ecosystem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(112, 64, 16, 0.18);
  border-radius: 50%;
  color: var(--bronze);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.ecosystem-card:hover .ecosystem-card__icon {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.95);
}

.ecosystem-card__label {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ecosystem-card__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 480;
  line-height: 1.22;
  color: var(--ink);
  transition: color 0.35s var(--ease-out);
}

.ecosystem-card:hover .ecosystem-card__title {
  color: var(--bronze);
}

.ecosystem-card__copy {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ecosystem-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--bronze);
  font-size: 1.3rem;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.ecosystem-card:hover .ecosystem-card__arrow {
  opacity: 1;
  transform: translateX(6px);
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem__ornament {
    animation: none;
  }
}

.contact {
  background:
    radial-gradient(80% 110% at 0% 10%, rgba(192, 138, 82, 0.14), transparent 58%),
    var(--paper);
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}

.contact__copy {
  margin-top: 22px;
  color: var(--ink-body);
  line-height: 1.8;
}

.contact__channels {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact__channel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(112, 64, 16, 0.18);
  color: var(--ink);
  font-weight: 700;
}

.contact__channel span {
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(112, 64, 16, 0.18);
  background: #fff;
  box-shadow: 0 24px 60px rgba(36, 23, 8, 0.08);
}

.contact__form-title,
.field--full,
.contact__submit {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(112, 64, 16, 0.2);
  border-radius: 0;
  background: var(--paper-warm);
  color: var(--ink);
  font: 500 0.95rem/1.4 var(--font-body);
  padding: 12px 14px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(192, 138, 82, 0.5);
  outline-offset: 2px;
  background: #fff;
}

.contact__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .publish-showcase,
  .programs__grid,
  .coauthor__inner,
  .ecosystem__grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .book-mockup {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .section-heading {
    text-align: left;
  }

  .section-title,
  .publish-showcase__content h3,
  .coauthor__title,
  .contact__title {
    font-size: 2rem;
  }

  .publish-showcase,
  .program-card,
  .ecosystem-card,
  .contact__form {
    padding: 24px;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .coauthor__point {
    grid-template-columns: 1fr;
  }

  .contact__channel {
    flex-direction: column;
    gap: 4px;
  }
}

/* ---------- Generated image layout pass ---------- */

.hero__media {
  object-position: center center;
}

.publish-showcase {
  grid-template-columns: minmax(380px, 1.05fr) minmax(320px, 0.95fr);
  overflow: visible;
}

.publish-showcase__visual {
  position: relative;
  min-height: clamp(420px, 45vw, 560px);
}

.publish-showcase__image,
.programs__media img,
.ecosystem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.publish-showcase__image {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(112, 64, 16, 0.16);
  box-shadow: 0 28px 70px rgba(36, 23, 8, 0.14);
}

.publish-showcase__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(27, 16, 7, 0.18));
  pointer-events: none;
}

.publish-showcase__visual .book-mockup {
  position: absolute;
  right: clamp(-28px, -2vw, -12px);
  bottom: clamp(-36px, -3vw, -18px);
  z-index: 2;
  width: 210px;
  min-height: 300px;
  filter: drop-shadow(0 22px 34px rgba(27, 16, 7, 0.28));
}

.publish-showcase__visual .book-mockup__cover {
  width: 190px;
  padding: 24px 21px;
  box-shadow: none;
}

.publish-showcase__visual .book-mockup__cover strong {
  font-size: 1.9rem;
}

.publish-showcase__visual .book-mockup__cover em {
  font-size: 0.9rem;
}

.publish-showcase__visual .book-mockup__pages {
  width: 182px;
}

.programs__media,
.ecosystem__media {
  margin: 0 0 clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(112, 64, 16, 0.18);
  box-shadow: 0 26px 66px rgba(36, 23, 8, 0.1);
}

.programs__media {
  height: clamp(330px, 40vw, 520px);
}

.ecosystem__media {
  height: clamp(320px, 38vw, 500px);
}

.programs__media img {
  object-position: center center;
}

.ecosystem__media img {
  object-position: center center;
}

.programs__grid,
.ecosystem__grid {
  position: relative;
  z-index: 1;
}

.program-card,
.ecosystem-card {
  box-shadow: 0 18px 50px rgba(36, 23, 8, 0.07);
}

.ecosystem-card {
  min-height: 280px;
}

@media (max-width: 980px) {
  .publish-showcase {
    grid-template-columns: 1fr;
  }

  .publish-showcase__visual {
    min-height: 430px;
  }

  .publish-showcase__visual .book-mockup {
    right: 18px;
    bottom: -34px;
  }

  .publish-showcase__content {
    padding-top: 20px;
  }
}

@media (max-width: 620px) {
  .publish-showcase__visual {
    min-height: 340px;
  }

  .publish-showcase__visual .book-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -84px 0 0 auto;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .programs__media,
  .ecosystem__media {
    height: 280px;
  }
}
/* ---------- Reveal motion ---------- */

.reveal--armed {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal--armed.reveal--late {
  transition-delay: 0.15s;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__media,
  .hero__kicker,
  .hero__lead,
  .hero__actions,
  .hero__scroll {
    animation: none;
    opacity: 1;
  }

  .hero__media {
    opacity: 0.96;
  }

  .hero__scrim::before {
    animation: none;
    opacity: 0.42;
  }

  .hero__line > span {
    animation: none;
    transform: none;
  }

  .hero__scroll-line::after {
    animation: none;
    opacity: 0;
  }

  .marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .marquee__group:last-child {
    display: none;
  }

  .button,
  .button:hover,
  .button:active {
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
  }

  .site-header__inner {
    width: 100%;
    min-height: 48px;
    padding: 4px 12px;
  }

  .site-header--scrolled .site-header__inner,
  .nav-open .site-header__inner {
    padding: 7px var(--pad-x);
  }

  .nav-open .site-header {
    top: 0;
    right: 0;
    left: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo,
  .site-header--scrolled .brand__logo,
  .nav-open .brand__logo {
    width: clamp(155px, 44vw, 200px);
    max-height: 56px;
  }

  .nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    z-index: var(--z-nav);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--pad-x) 28px;
    background: rgba(27, 16, 7, 0.98);
    border-top: 1px solid rgba(255, 246, 236, 0.08);
    border-bottom: 1px solid rgba(192, 138, 82, 0.25);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-open .nav {
    display: flex;
  }

  .nav__item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 246, 236, 0.1);
    font-size: 15.5px;
  }

  .nav__item::after {
    content: none;
  }

  .nav__cta {
    margin-top: 18px;
    padding: 17px 22px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .differential__inner,
  .audience__inner {
    grid-template-columns: 1fr;
  }

  .differential__quotes {
    padding-left: 26px;
  }

  .audience__list {
    align-self: start;
  }

  .service {
    grid-template-columns: 60px 48px 1fr;
    row-gap: 6px;
  }

  .service__copy {
    grid-column: 2 / -1;
  }

  .service__arrow {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero__scroll {
    display: none;
  }

}

@media (max-width: 480px) {
  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
    padding: 18px 24px;
    text-align: center;
  }

  .brand__logo {
    width: clamp(175px, 65vw, 215px);
  }

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

  .service__copy {
    grid-column: 1;
  }
}


/* ---------- Stable type scale ---------- */

@media (max-width: 900px) {
  .hero__title {
    font-size: 3.25rem;
  }

  .legacy__title,
  .services__title,
  .differential__title,
  .audience__title,
  .process__title,
  .reach__title,
  .closing__title {
    font-size: 2.45rem;
  }

  .service__number {
    font-size: 2.8rem;
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .hero__lead,
  .reach__quote {
    font-size: 1.05rem;
  }

  .legacy__title,
  .services__title,
  .differential__title,
  .audience__title,
  .process__title,
  .reach__title,
  .closing__title {
    font-size: 2.05rem;
  }

  .marquee__item {
    font-size: 1.35rem;
  }
}
































