:root {
  --ink:       #12100C;
  --ink-2:     #2A241C;
  --muted:     #7A6E5E;
  --line:      #D6CFC2;
  --paper:     #F5EFE6;
  --paper-2:   #EDE4D3;
  --clay:      #C2410C;
  --clay-2:    #9A3412;
  --ochre:     #C89B3C;
  --ease:      cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in:   cubic-bezier(0.55, 0, 1, 0.45);

  --serif:      'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif-it:   italic 400 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:       'Space Grotesk', 'Inter', system-ui, sans-serif;
  --mono:       'JetBrains Mono', ui-monospace, Menlo, monospace;

  --container:  94vw;
  --container-max: 1760px;
  --header-h:  96px;
  --gutter:    32px;
  --hair:      1px solid var(--line);
  --hair-ink:  1px solid var(--ink);
}
@media (max-width: 1024px) {
  :root { --gutter: 20px; --header-h: 80px; }
}
@media (max-width: 720px)  {
  :root { --gutter: 16px; --header-h: 72px; }
}
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: auto; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(194, 65, 12, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(200, 155, 60, 0.05) 0%, transparent 55%);
  z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: transparent; cursor: pointer; }
::selection { background: var(--clay); color: var(--paper); }

/* ============================================================
   12-COL SWISS GRID (14 total = 2 meta cols + 12 content)
   ============================================================ */
.container { width: var(--container); max-width: var(--container-max); margin: 0 auto; }
.grid-14 {
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  gap: var(--gutter);
}
@media (max-width: 1024px) {
  .grid-14 { grid-template-columns: 28px repeat(12, 1fr) 28px; gap: 16px; }
}
@media (max-width: 720px) {
  .grid-14 { grid-template-columns: 20px repeat(12, 1fr) 20px; gap: 12px; }
}

/* Grid span utility classes */
.gc-2-5  { grid-column: 2 / 5; }
.gc-2-6  { grid-column: 2 / 6; }
.gc-2-8  { grid-column: 2 / 8; }
.gc-2-9  { grid-column: 2 / 9; }
.gc-2-10 { grid-column: 2 / 10; }
.gc-2-14 { grid-column: 2 / 14; }
.gc-5-14 { grid-column: 5 / 14; }
.gc-6-14 { grid-column: 6 / 14; }
.gc-8-14 { grid-column: 8 / 14; }
.gc-9-14 { grid-column: 9 / 14; }
.gc-1-2  { grid-column: 1 / 2; }
.gc-14-15 { grid-column: 14 / 15; }
.gc-3-13 { grid-column: 3 / 13; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: var(--header-h);
  background: transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid rgba(18,16,12,0.08);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease), transform 0.45s var(--ease), color 0.35s var(--ease);
  color: var(--ink);
}
html:has(.hero-bg) .site-header:not(.is-scrolled) {
  border-bottom-color: rgba(245,239,230,0.14);
  color: var(--paper);
}
.site-header.is-light {
  border-bottom-color: rgba(245,239,230,0.14);
  color: var(--paper) !important;
}
.site-header.is-light .menu-btn { color: var(--paper) !important; }
.site-header.is-light .menu-btn span { background: currentColor !important; }
.site-header.is-scrolled .menu-btn { color: var(--ink) !important; }
.site-header.is-scrolled .menu-btn span { background: currentColor !important; }
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .site-header {
  background: var(--ink);
  border-bottom-color: rgba(245, 239, 230, 0.14);
  color: var(--paper) !important;
}
body.menu-open .site-header .menu-btn { color: var(--paper) !important; }
body.menu-open .site-header .menu-btn span { background: currentColor !important; }
body.menu-open .site-header .brand-mark .logo-white { display: block; }
body.menu-open .site-header .brand-mark .logo-dark { display: none; }
.site-header.is-scrolled {
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top-color: var(--ink);
  border-bottom-color: var(--ink);
  color: var(--ink);
}
.brand-mark .logo-white { display: block; }
.brand-mark .logo-dark { display: none; }
.site-header.is-scrolled .brand-mark .logo-white { display: none; }
.site-header.is-scrolled .brand-mark .logo-dark { display: block; }
html:has(.hero-bg) .site-header:not(.is-scrolled) .brand-mark .logo-white { display: block; }
html:has(.hero-bg) .site-header:not(.is-scrolled) .brand-mark .logo-dark { display: none; }
.site-header .mb-label {
  color: inherit;
  opacity: 0.9;
  transition: color 0.35s var(--ease);
}
.site-header .menu-btn {
  color: inherit;
}
.site-header.is-scrolled .locale,
.site-header.is-scrolled .mb-label {
  color: var(--muted);
}

.brand-mark {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.brand-mark sup {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: 2px;
  opacity: 0.7;
  vertical-align: super;
  line-height: 0;
}
.brand-mark .brand-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--clay);
}

.top-nav {
  display: none !important;
}
.top-nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.top-nav a:hover::after {
  width: 100%;
}


.top-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-meta .locale {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Burger — flat 3 lines, no circle */
.menu-btn {
  width: 32px;
  height: 32px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0;
  z-index: 10000;
  pointer-events: auto !important;
  box-shadow: none !important;
}
.menu-btn .bar,
.menu-btn .mb-1,
.menu-btn .mb-2,
.menu-btn .mb-3 {
  display: block;
  background: currentColor;
  transition: transform 0.45s var(--ease), width 0.3s var(--ease), opacity 0.3s var(--ease), background 0.35s var(--ease);
  transform-origin: center center;
}
.menu-btn .bar-1 { width: 16px; height: 2px; }
.menu-btn .bar-2 { width: 8px; height: 2px; align-self: center; }
.menu-btn .mb-1 { width: 22px; height: 1.5px; }
.menu-btn .mb-2 { width: 22px; height: 1.5px; }
.menu-btn .mb-3 { width: 22px; height: 1.5px; }
.menu-btn.is-open .bar-1 { transform: rotate(45deg) translate(3px, 3px); width: 18px; }
.menu-btn.is-open .bar-2 { transform: rotate(-45deg) translate(3px, -3px); width: 18px; }
.menu-btn.is-open .mb-1 { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.is-open .mb-2 { opacity: 0; transform: scaleX(0); }
.menu-btn.is-open .mb-3 { transform: rotate(-45deg) translate(4px, -4px); }
.menu-btn.is-open .mb-label { opacity: 0; }

/* ============================================================
   MEGA MENU (full-screen slide-in from RIGHT)
   ============================================================ */
.mega-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.9s var(--ease);
  display: grid;
  grid-template-rows: 96px 1fr auto;
}
.mega-menu.is-open {
  transform: translateX(0);
}

.mega-menu .mm-head {
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  gap: var(--gutter);
  align-items: center;
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
}
.mega-menu .mm-head .mm-brand {
  grid-column: 2 / 8;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.mega-menu .mm-head .mm-brand .brand-dot {
  width: 14px;
  height: 14px;
  background: var(--clay);
}
.mega-menu .mm-head .mm-close {
  grid-column: 13 / 15;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.mega-menu .mm-head .mm-close .x-mark {
  width: 32px;
  height: 32px;
  position: relative;
  display: inline-block;
}
.mega-menu .mm-head .mm-close .x-mark::before,
.mega-menu .mm-head .mm-close .x-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--paper);
}
.mega-menu .mm-head .mm-close .x-mark::before {
  transform: rotate(45deg);
}
.mega-menu .mm-head .mm-close .x-mark::after {
  transform: rotate(-45deg);
}

.mega-menu .mm-body {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px repeat(12, 1fr) 48px;
  gap: var(--gutter);
  align-content: center;
}
.mega-menu .mm-markers {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
}
.mega-menu .mm-markers span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 230, 0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.mega-menu .mm-nav {
  grid-column: 2 / 9;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mega-menu .mm-nav li {
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}
.mega-menu .mm-nav li:last-child {
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
}
.mega-menu .mm-nav a {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 22px 0;
  transition: color 0.3s var(--ease);
}
.mega-menu .mm-nav a:hover {
  color: var(--clay);
}
.mega-menu .mm-nav a:hover .m-num {
  transform: skew(-4deg);
  color: var(--clay);
}
.mega-menu .mm-nav .m-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  font-weight: 400;
  color: rgba(245, 239, 230, 0.25);
  transition: transform 0.5s var(--ease), color 0.3s var(--ease);
  letter-spacing: -0.03em;
}
.mega-menu .mm-nav .m-label {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.mega-menu .mm-foot {
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.mega-menu .mm-foot h6 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 14px;
  font-weight: 400;
}
.mega-menu .mm-foot p,
.mega-menu .mm-foot li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--paper);
}
.mega-menu .mm-foot ul {
  list-style: none;
}
.mega-menu .mm-foot ul li {
  padding: 3px 0;
}
.mega-menu .mm-foot a {
  border-bottom: 1px solid rgba(245, 239, 230, 0.2);
  padding-bottom: 1px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.mega-menu .mm-foot a:hover {
  border-color: var(--clay);
  color: var(--clay);
}

@media (max-width: 720px) {
  .mega-menu { grid-template-rows: 80px 1fr auto; }
  .mega-menu .mm-markers { display: none; }
  .mega-menu .mm-nav { grid-column: 2 / 14; }
  .mega-menu .mm-nav a { gap: 16px; padding: 16px 0; }
  .mega-menu .mm-foot { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   HERO STACK (home page H1, asymmetric stacked)
   ============================================================ */
.hero-stack {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 6vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  will-change: transform, opacity;
  display: block;
}
.hero-bg .hero-slide.is-active {
  opacity: 1 !important;
}
/* Slides own their motion — no entrance wipe may ever seal them shut */
.hero-bg .hero-slide {
  clip-path: none !important;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.16) 0%, rgba(18,16,12,0.08) 40%, rgba(18,16,12,0.42) 100%);
  z-index: 1;
}
/* Fade the deco grid when a photo slideshow sits behind it */
.hero-stack:has(.hero-bg)::before {
  opacity: 0.22;
}
.hero-stack .container,
.hero-stack .hero-grid,
.hero-meta {
  position: relative;
  z-index: 2;
}
/* White Desert · hero as dark full-bleed behind transparent header */
.hero-stack--dark {
  background: var(--ink);
  color: var(--paper);
}
.hero-stack:has(.hero-bg) h1,
.hero-stack--dark h1,
.hero-stack:has(.hero-bg) .hero-headline h1,
.hero-stack--dark .hero-headline h1 {
  color: var(--paper);
}
.hero-stack:has(.hero-bg) .sec-marker,
.hero-stack:has(.hero-bg) .hero-meta .hm-left,
.hero-stack--dark .hero-meta .hm-left {
  color: rgba(245,239,230,0.85);
}
.hero-stack:has(.hero-bg) .meta-box {
  background: rgba(245,239,230,0.08);
  backdrop-filter: blur(8px);
  border-color: rgba(245,239,230,0.14);
  color: var(--paper);
}
.hero-stack:has(.hero-bg) .meta-box div div:last-child {
  color: var(--paper);
}
.hero-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40vmax;
  height: 40vmax;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 31px, var(--line) 31px 32px),
    repeating-linear-gradient(0deg, transparent 0 31px, var(--line) 31px 32px);
  opacity: 0.7;
  pointer-events: none;
}
.hero-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(194, 65, 12, 0.12) 0%, transparent 70%),
    radial-gradient(55% 55% at 5% 95%, rgba(200, 155, 60, 0.1) 0%, transparent 70%);
}

.hero-stack .hero-grid {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(60px, 10vw, 140px);
}
.hero-stack .page-marker {
  grid-column: 1 / 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-top: 20px;
  align-self: start;
}
.hero-stack .hero-headline {
  grid-column: 2 / 10;
  display: flex;
  flex-direction: column;
}
.hero-stack .hero-headline h1 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-size: clamp(3.5rem, 13vw, 15rem);
  margin: 0;
  color: var(--ink);
}
.hero-stack .hero-headline h1.line-3 {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 4px;
  text-underline-offset: 14px;
  text-decoration-skip-ink: none;
}

.hero-meta {
  position: relative;
  z-index: 2;
  margin: clamp(24px, 4vw, 56px) 0;
}
.hero-meta .hm-left {
  grid-column: 2 / 8;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}
.hero-meta .hm-right {
  grid-column: 9 / 14;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--hair);
  background: var(--paper);
}
.hero-meta .hm-tile {
  padding: 20px;
  border-right: var(--hair);
}
.hero-meta .hm-tile:last-child {
  border-right: 0;
}
.hero-meta .hm-tile .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.hero-meta .hm-tile .value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
@media (max-width: 720px) {
  .hero-meta .hm-left { grid-column: 2 / 14; margin-bottom: 20px; }
  .hero-meta .hm-right { grid-column: 2 / 14; }
}

/* Image cluster below hero */
.hero-cluster {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 8vw, 120px);
  padding-bottom: clamp(40px, 8vw, 120px);
}
.hero-cluster .hc-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-2);
}
.hero-cluster .hc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cluster .hc-img-1 {
  grid-column: 2 / 7;
  aspect-ratio: 4 / 5;
}
.hero-cluster .hc-img-2 {
  grid-column: 6 / 10;
  aspect-ratio: 3 / 4;
  transform: translateY(-15%);
  z-index: 3;
  border-color: var(--clay);
  border-width: 2px;
}
.hero-cluster .hc-img-3 {
  grid-column: 9 / 14;
  aspect-ratio: 1 / 1;
  transform: translateY(-30%);
  z-index: 4;
}
@media (max-width: 720px) {
  .hero-cluster .hc-img-1 { grid-column: 2 / 14; transform: none; }
  .hero-cluster .hc-img-2 { grid-column: 2 / 14; transform: translateY(-8%); margin-top: -8%; }
  .hero-cluster .hc-img-3 { grid-column: 2 / 14; transform: translateY(-16%); margin-top: -16%; }
}

/* ============================================================
   SECTION NUMBER MARKERS
   ============================================================ */
.section {
  padding: clamp(56px, 7vw, 112px) 0;
  border-top: var(--hair);
  position: relative;
}
.hero-stack.section {
  padding: clamp(96px, 12vw, 160px) 0 clamp(48px, 6vw, 80px);
}
.section#meta-strip {
  padding: clamp(32px, 5vw, 56px) 0;
}
.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 48px;
  border-right: var(--hair);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .section::before { width: 28px; }
}
@media (max-width: 720px) {
  .section::before { width: 20px; }
}

.sec-marker {
  grid-column: 1 / 2;
  position: sticky;
  top: var(--header-h);
  align-self: start;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  white-space: nowrap;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}

/* ============================================================
   EDITORIAL SPLIT (asymmetric H3/H4)
   ============================================================ */
.editorial-split .es-left {
  grid-column: 2 / 7;
}
.editorial-split .es-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
}
.editorial-split .es-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.editorial-split .es-left p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 52ch;
  font-family: var(--sans);
  font-weight: 300;
}

.editorial-split .es-right {
  grid-column: 8 / 14;
  aspect-ratio: 16 / 10;
  border: var(--hair-ink);
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.editorial-split .es-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-split .es-right .clay-tab {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-split .es-right .clay-tab::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--paper);
}

@media (max-width: 1024px) {
  .editorial-split .es-left { grid-column: 2 / 14; margin-bottom: 40px; }
  .editorial-split .es-right { grid-column: 2 / 14; }
}

/* ============================================================
   COLUMN GRID (services — 4 disciplines)
   ============================================================ */
.services-grid .sg-inner {
  grid-column: 2 / 14;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .services-grid .sg-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 720px) {
  .services-grid .sg-inner { grid-template-columns: 1fr; gap: 0; }
}

.col-cell {
  padding: 28px 0;
  border-top: var(--hair);
  position: relative;
}
@media (max-width: 720px) {
  .col-cell { padding: 24px 0; }
}
.col-cell .cell-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.col-cell .cell-pill {
  display: inline-block;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.col-cell h4 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.col-cell p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 300;
}

/* ============================================================
   TILE FLIP GRID (portfolio — 12 works)
   ============================================================ */
.tile-grid .tg-inner {
  grid-column: 2 / 14;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 1024px) {
  .tile-grid .tg-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .tile-grid .tg-inner { grid-template-columns: 1fr; }
}

.tile {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  background-color: var(--paper-2);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(18, 16, 12, 0.72) 100%);
  z-index: 1;
  transition: opacity 0.4s var(--ease);
}
.tile .tile-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: var(--clay);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.tile:hover {
  transform: scale(1.03);
}
.tile:hover .tile-circle {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.tile:hover img {
  transform: scale(1.08);
}

.tile .tile-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: var(--paper);
  z-index: 3;
  transition: color 0.4s var(--ease);
}
.tile:hover .tile-info {
  color: var(--paper);
}
.tile .tile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 8px;
  transition: color 0.4s var(--ease);
}
.tile:hover .tile-tag {
  color: var(--paper);
  opacity: 0.8;
}
.tile .tile-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   NUMBER-MARKER ROSTER (clients/pillars)
   ============================================================ */
.roster .roster-inner {
  grid-column: 2 / 14;
}
.roster-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: var(--gutter);
  align-items: baseline;
  padding: 24px 0;
  border-top: var(--hair);
  transition: background 0.3s var(--ease), padding 0.4s var(--ease);
}
.roster-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.roster-row:hover {
  background: var(--paper-2);
  padding-left: 16px;
  padding-right: 16px;
}
.roster-row .r-idx {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.roster-row .r-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.roster-row .r-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--clay);
  font-weight: 400;
}
.roster-row .r-status {
  justify-self: end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.roster-row .r-status.is-active {
  border-color: var(--clay);
  color: var(--clay);
}

@media (max-width: 1024px) {
  .roster-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
  }
  .roster-row .r-title { grid-column: 2 / 3; }
  .roster-row .r-tagline { grid-column: 2 / 3; }
  .roster-row .r-status { grid-column: 2 / 3; justify-self: start; }
}

/* ============================================================
   PRESS / LOGOS STRIP
   ============================================================ */
.logos-strip .logos-inner {
  grid-column: 2 / 14;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.logo-cell {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: var(--hair);
  opacity: 0.5;
  mix-blend-mode: multiply;
  transition: opacity 0.3s var(--ease);
}
.logo-cell:last-child {
  border-right: 0;
}
.logo-cell:hover {
  opacity: 1;
}
.logo-cell span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .logos-strip .logos-inner { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(3n) { border-right: 0; }
  .logo-cell:nth-child(4), .logo-cell:nth-child(5), .logo-cell:nth-child(6) {
    border-top: var(--hair);
  }
}
@media (max-width: 720px) {
  .logos-strip .logos-inner { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(3n) { border-right: var(--hair); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:nth-child(3), .logo-cell:nth-child(4), .logo-cell:nth-child(5), .logo-cell:nth-child(6) {
    border-top: var(--hair);
  }
}

/* ============================================================
   INLINE QUOTE / FOUNDER
   ============================================================ */
.quote-block .qb-inner {
  grid-column: 3 / 13;
  position: relative;
  padding-left: 72px;
}
.quote-block .qb-bullet {
  position: absolute;
  left: 0;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clay);
}
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 20ch;
}
.quote-block .qb-attrib {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(30px, 5vw, 60px);
}
.quote-block .qb-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.quote-block .qb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-block .qb-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  letter-spacing: -0.01em;
}
.quote-block .qb-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
@media (max-width: 720px) {
  .quote-block .qb-inner { grid-column: 2 / 14; padding-left: 56px; }
  .quote-block .qb-bullet { width: 32px; height: 32px; top: 12px; }
}

/* ============================================================
   JOURNAL STORIES (×3)
   ============================================================ */
.journal-grid .jg-inner {
  grid-column: 2 / 14;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 1024px) {
  .journal-grid .jg-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .journal-grid .jg-inner { grid-template-columns: 1fr; }
}

.story .story-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: var(--hair-ink);
  margin-bottom: 20px;
  background: var(--paper-2);
}
.story .story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.story:hover .story-img img {
  transform: scale(1.04);
}
.story .story-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.story .story-meta .sep {
  opacity: 0.4;
}
.story h4 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.story p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 18px;
}
.story .story-read {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 2px;
}
.story .story-read::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.story .story-read:hover::after {
  transform: translateX(4px);
}
.story .story-read {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.35s var(--ease), color 0.3s var(--ease);
}
.story .story-read:hover {
  color: var(--clay);
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 100% 1px;
}

/* ============================================================
   FAQ COLLAPSE (accordion list)
   ============================================================ */
.faq .faq-inner {
  grid-column: 2 / 14;
}
.faq-row {
  border-top: var(--hair);
}
.faq-row:first-child {
  border-top: 0;
}
.faq-row .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}
.faq-row .faq-q:hover {
  padding-left: 16px;
}
.faq-row .faq-q-left {
  display: flex;
  align-items: baseline;
  gap: 40px;
}
.faq-row .faq-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  min-width: 32px;
}
.faq-row .faq-q-text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-row .faq-chevron {
  flex-shrink: 0;
}
.faq-row .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease);
  padding: 0 40px 0 80px;
}
.faq-row.is-open .faq-a {
  padding: 0 40px 32px 80px;
}
.faq-row .faq-a p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 400;
}

@media (max-width: 720px) {
  .faq-row .faq-q-left { gap: 16px; }
  .faq-row .faq-q-text { font-size: 20px; }
  .faq-row .faq-a, .faq-row.is-open .faq-a { padding: 0 0 24px 48px; }
}

/* ============================================================
   CONTACT / FOOTER CTA
   ============================================================ */
.contact-cta .cc-left {
  grid-column: 2 / 9;
}
.contact-cta .cc-left h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--ink);
}
.contact-cta .cc-left h2 .clay-word {
  position: relative;
  display: inline-block;
}
.contact-cta .cc-left h2 .clay-word::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -4%;
  width: 0.9em;
  height: 0.9em;
  background: var(--clay);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.9;
}

.contact-cta .cc-right {
  grid-column: 10 / 14;
  align-self: end;
  padding-bottom: 4vh;
}
.contact-cta .cc-email {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 48px;
  padding-bottom: 4px;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 0.4s var(--ease), color 0.3s var(--ease), background-image 0.3s var(--ease);
  width: fit-content;
}
.contact-cta .cc-email:hover {
  color: var(--clay);
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 0 1px;
  background-position: 100% 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form .field {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 26px 0 12px;
  transition: border-color 0.4s var(--ease);
}
.contact-form .field:focus-within {
  border-color: var(--clay);
  border-bottom-width: 2px;
}
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  padding: 4px 0;
  border: 0;
  outline: 0;
  background: transparent;
  resize: vertical;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.contact-form .field textarea {
  min-height: 120px;
  font-family: var(--serif);
}
.contact-form .field label {
  position: absolute;
  top: 28px;
  left: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), color 0.3s var(--ease);
  pointer-events: none;
}
.contact-form .field input:focus ~ label,
.contact-form .field textarea:focus ~ label,
.contact-form .field input:not(:placeholder-shown) ~ label,
.contact-form .field textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-24px);
  font-size: 9px;
  color: var(--clay);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
  color: transparent;
}
.contact-form .cf-submit {
  align-self: flex-start;
  margin-top: 36px;
  background: var(--clay);
  color: var(--paper);
  padding: 16px 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contact-form .cf-submit:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.contact-form .cf-submit::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
/* Horizontal slideshow — pinned, horizontal scroll then release */
.horizontal-slideshow {
  position: relative;
  background: var(--paper);
  border-top: var(--hair);
  border-bottom: var(--hair);
}
.horizontal-slideshow .hs-sticky {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.horizontal-slideshow .hs-track {
  cursor: grab;
  height: 100%;
}
.horizontal-slideshow .hs-track:active { cursor: grabbing; }
.horizontal-slideshow .hs-card { height: 100%; }
.horizontal-slideshow .hs-card img { transition: transform 1.2s var(--ease); height: 100%; }


/* Inner hero slideshow underneath index area */
.section:has(.hero-bg) { position:relative; overflow:hidden; }
.section:has(.hero-bg) .container { position:relative; z-index:1; }
.section:has(.hero-bg) h1 { color: var(--paper) !important; }
.section:has(.hero-bg) .sec-marker { color: rgba(255,255,255,0.65) !important; }
.section:has(.hero-bg) .meta-box { border-color: rgba(255,255,255,0.14) !important; }

/* Logo marquee — auto scroll — dark */
.logo-marquee { overflow:hidden; background:#0A0A0A; }
.logo-marquee-track { will-change: transform; }
.logo-marquee img { transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.logo-marquee img:hover { opacity:1; filter: brightness(0) invert(1) contrast(1.15); }

/* Roster horizontal — same pinned scroll as Frames in motion */
.roster-section { position: relative; background: var(--paper); }
.roster-section .roster-sticky { position: relative; height: 100vh; min-height: 520px; display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.roster-track { cursor: grab; }
.roster-track:active { cursor: grabbing; }
.roster-card { transition: transform 0.4s var(--ease), border-color 0.3s var(--ease); }
.roster-card:hover { transform: translateY(-4px); border-color: var(--ink); }
@media (max-width: 720px) { .roster-section .roster-sticky { height: auto; min-height: auto; } }

.horizontal-slideshow .hs-card:hover img { transform: scale(1.03); }
@media (max-width: 720px) {
  .horizontal-slideshow .hs-sticky { position: relative; height: 100vh; min-height: 560px; }
  .horizontal-slideshow .hs-card { flex-basis: 100vw !important; }
}

.contact-form .cf-submit:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .contact-cta .cc-left { grid-column: 2 / 14; margin-bottom: 40px; }
  .contact-cta .cc-right { grid-column: 2 / 14; padding-bottom: 0; }
}

/* ============================================================
   FOOTER GRID 14 asymmetric 4 cols
   ============================================================ */
.site-footer {
  padding: clamp(60px, 10vw, 140px) 0 0;
  border-top: var(--hair);
  position: relative;
}
.site-footer .f-col-studio { grid-column: 2 / 5; }
.site-footer .f-col-nav    { grid-column: 6 / 8; }
.site-footer .f-col-follow { grid-column: 9 / 11; }
.site-footer .f-col-legal  { grid-column: 12 / 14; }

.site-footer h6 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 400;
}
.site-footer .f-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  display: block;
}
.site-footer .f-brand sup {
  font-size: 8px;
  opacity: 0.6;
}
.site-footer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 6px;
}
.site-footer ul {
  list-style: none;
}
.site-footer ul li {
  padding: 5px 0;
}
.site-footer ul li a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 300;
  transition: color 0.3s var(--ease);
}
.site-footer ul li a:hover {
  color: var(--clay);
}

.footer-bar {
  width: 100%;
  border-top: var(--hair-ink);
  padding: 32px 0;
  margin-top: clamp(60px, 10vw, 140px);
  background: var(--paper);
}
.footer-bar .fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  max-width: var(--container-max);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer-bar .fb-sig {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.footer-bar .fb-copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .site-footer .f-col-studio { grid-column: 2 / 14; margin-bottom: 36px; }
  .site-footer .f-col-nav    { grid-column: 2 / 7; }
  .site-footer .f-col-follow { grid-column: 8 / 14; }
  .site-footer .f-col-legal  { grid-column: 2 / 14; margin-top: 36px; }
}
@media (max-width: 720px) {
  .site-footer .f-col-nav    { grid-column: 2 / 14; margin-bottom: 30px; }
  .site-footer .f-col-follow { grid-column: 2 / 14; margin-bottom: 30px; }
}

/* ============================================================
   PAGE PROGRESS (left vertical bar)
   ============================================================ */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(0deg, var(--clay) var(--prog, 0%), transparent var(--prog, 0%));
  z-index: 1000;
  pointer-events: none;
}

/* ============================================================
   MOTION / REVEAL CLASSES
   ============================================================ */
.reveal {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transform: translateY(30px);
  opacity: 0;
}
.reveal.is-in {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transform: translateY(0);
  opacity: 1;
  transition: all 1.1s var(--ease);
}

/* Cursor crosshair */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--paper);
  mix-blend-mode: difference;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1001;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-radius 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform, width, height;
}
.cursor.is-hover {
  width: 56px;
  height: 56px;
  background: rgba(245, 239, 230, 0.12);
}
@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.eyebrow-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.serif { font-family: var(--serif); }
.serif-it { font-family: var(--serif); font-style: italic; }
.mono { font-family: var(--mono); }

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

/* ============================================================
   POST BODY (rich HTML from blog_posts content)
   ============================================================ */
.post-body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--ink);
}
.post-body p {
  margin: 0 0 clamp(28px, 4vw, 44px) 0;
}
.post-body p:first-child::first-letter {
  font-size: 84px;
  line-height: 0.85;
  color: var(--clay);
  float: left;
  padding: 8px 14px 0 0;
}
.post-body h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: clamp(48px, 7vw, 80px) 0 clamp(20px, 3vw, 32px);
}
.post-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  margin: clamp(36px, 5vw, 56px) 0 clamp(14px, 2vw, 20px);
}
.post-body ul, .post-body ol {
  margin: 0 0 clamp(28px, 4vw, 44px) 0;
  padding-left: 1.4em;
}
.post-body li {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 0.6em;
}
.post-body blockquote {
  margin: clamp(40px, 7vw, 80px) 0;
  padding: clamp(32px, 6vw, 64px) clamp(24px, 5vw, 64px);
  background: rgba(200, 150, 120, 0.07);
  border-radius: 4px;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
}
.post-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: clamp(32px, 5vw, 56px) 0;
  border-radius: 4px;
}
.post-body a {
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 150, 120, 0.4);
}
