@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope Fallback';
  src: local('Arial');
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 26%;
  line-gap-override: 0%;
}

:root {
  --ink: #1a1814;
  --ink-mid: #1a1814;
  --ink-light: #1a1814;
  --ink-faint: #1a1814;
  --paper: #f5b7ac;
  --paper-warm: #efaa9f;
  --paper-card: #ffffff;
  --accent: #b83a24;
  --serif: Georgia, serif;
  --sans: 'Manrope', 'Manrope Fallback', system-ui, sans-serif;
  --max: 780px;
  --rule: 1px solid #1a1814;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,183,172,0.94); backdrop-filter: blur(14px);
  border-bottom: var(--rule); padding: 0 2rem; height: 54px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-back { font-size: 12px; color: var(--ink); text-decoration: none; letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px; }
.nav-back::before { content: "←"; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.on { color: var(--accent); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

.hero { position: relative; padding: 8rem 0 4rem; border-bottom: var(--rule); overflow: hidden; }
.hero.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img); background-size: cover; background-position: center;
  opacity: 1;
}
.hero.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,24,20,0.45) 0%, rgba(26,24,20,0.78) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero.hero-bg .hero-kicker,
.hero.hero-bg .hero-title,
.hero.hero-bg .hero-sub { color: #fff; }
.hero.hero-bg .hero-tag { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.45); }
.hero-kicker { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--sans); font-size: clamp(32px, 5.5vw, 52px); font-weight: 500; line-height: 1.12; color: var(--ink); margin-bottom: 1.25rem; letter-spacing: -0.015em; }
.hero-sub { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.65; max-width: 620px; margin-bottom: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 2.5rem; }
.hero-tag { font-size: 12px; color: var(--ink); background: var(--paper-warm); border: 1px solid #1a1814; border-radius: 2px; padding: 4px 12px; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: #1a1814; border: 1px solid #1a1814; border-radius: 4px; overflow: hidden; }
.stat { background: var(--paper); padding: 1.25rem 1rem; text-align: center; }
.stat-n { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.15; color: var(--ink); display: block; }
.stat-l { font-size: 11px; color: var(--ink); margin-top: 4px; line-height: 1; }

.body-section { padding: 4rem 0; border-bottom: var(--rule); }
.body-section.no-rule { border-bottom: none; padding-bottom: 1rem; }
.body-section.tight-top { padding-top: 1.25rem; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.sec-title { font-family: var(--serif); font-size: clamp(20px, 3vw, 26px); font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: 1.1rem; }
.body-p { font-size: 16px; color: var(--ink); line-height: 1.85; margin-bottom: 1rem; }
.body-p em { font-style: italic; font-family: var(--serif); color: var(--ink); }
.pull { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.6; border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: 1.25rem 0; }
.card { background: var(--paper-card); border: 1px solid #1a1814; border-radius: 4px; padding: 1rem; }
.card-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.card-note { font-size: 11px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.card-body { font-size: 13px; color: var(--ink); line-height: 1.35; }
.card-body em { font-style: italic; font-family: var(--serif); color: var(--ink); }

.bullets { display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.bullet { font-size: 15px; color: var(--ink); line-height: 1.72; padding-left: 20px; position: relative; }
.bullet::before { content: "—"; position: absolute; left: 0; color: var(--ink); }
.bullet em { font-style: italic; font-family: var(--serif); color: var(--ink); }

.aw-list { display: flex; flex-direction: column; gap: 5px; margin-top: 1.25rem; }
.aw { font-size: 13px; color: var(--ink); padding-left: 14px; position: relative; line-height: 1.5; }
.aw::before { content: "·"; position: absolute; left: 0; }

.cs-close { background: var(--paper-warm); border-radius: 6px; padding: 1.75rem 2rem; margin-top: 2rem; border: 1px solid #1a1814; }
.cs-close p { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.75; }

.media-hero { aspect-ratio: 16/9; overflow: hidden; border: 1px solid #1a1814; border-radius: 4px; margin: 1.75rem 0; }
.media-hero img, .media-hero video { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-single { aspect-ratio: 16/9; overflow: hidden; border: 1px solid #1a1814; border-radius: 4px; margin: 1.25rem 0; }
.media-single img, .media-single video { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.25rem 0; }
.media-pair > div { aspect-ratio: 4/5; overflow: hidden; border: 1px solid #1a1814; border-radius: 4px; }
.media-pair img, .media-pair video { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-pair-native { display: flex; justify-content: center; align-items: flex-end; gap: 14px; margin: 1.25rem 0; }
.media-pair-native > div { height: 280px; border: 1px solid #1a1814; border-radius: 4px; background: var(--paper-card); padding: 10px; display: flex; align-items: center; justify-content: center; }
.media-pair-native img { max-height: 100%; max-width: 100%; width: auto; height: auto; display: block; image-rendering: auto; }

.cs-video-block { margin: 2rem 0; }
.cs-video-label { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; }
.cs-video { aspect-ratio: 16/9; overflow: hidden; border: 1px solid #1a1814; border-radius: 4px; }
.cs-video video, .cs-video iframe { width: 100%; height: 100%; display: block; border: 0; }

.media-caption { font-size: 12px; color: var(--ink); margin-top: 0.5rem; letter-spacing: 0.02em; }
.media-label { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink); margin: 1.5rem 0 0.6rem; }

.overlay-card { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid #1a1814; border-radius: 4px; margin: 1rem 0; }
.overlay-card img, .overlay-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.overlay-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.5rem 1.25rem; background: linear-gradient(180deg, transparent 0%, rgba(26,24,20,0.92) 70%); color: #fff; }
.overlay-text .card-note { color: #fff; opacity: 0.85; font-size: 11px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.overlay-text .card-name { color: #fff; font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.2; margin-bottom: 6px; }
.overlay-text .card-body { color: #fff; font-size: 13.5px; line-height: 1.35; }
.overlay-text em { font-style: italic; font-family: var(--serif); }

footer { border-top: var(--rule); padding: 1rem 2rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
footer p { font-size: 12px; color: var(--ink-faint); }
.foot-logo { justify-self: center; line-height: 0; }
.foot-logo img { width: 24px; height: 24px; object-fit: cover; border-radius: 5px; display: block; }
.foot-mid { display: flex; align-items: center; gap: 1.25rem; justify-self: end; }
.foot-mid a { font-size: 13px; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; transition: opacity 0.2s; }
.foot-mid a:hover { opacity: 0.6; }
.foot-mid svg { width: 16px; height: 16px; display: block; }

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  nav { padding: 0 1.25rem; }
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 11px; }
}
