/* ─────────────────────────────────────────
   CONTINO NEW YORK — screen.css v4.0.0
   ───────────────────────────────────────── */

@font-face {
  font-family: 'ArizonaFlare';
  src: url('../fonts/ArizonaFlare.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeneralGrotesque';
  src: url('../fonts/GeneralGrotesque.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream:  #F9F5F2;
  --ink:    #1B231B;
  --beige:  #CDCCC6;
  --flare:  'ArizonaFlare', Georgia, serif;
  --body:   'GeneralGrotesque', Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ─────────────────────────────────────────
   PAGE TRANSITION
   ───────────────────────────────────────── */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-transition.active { opacity: 1; pointer-events: all; }

/* ─────────────────────────────────────────
   HOME SPLASH
   ───────────────────────────────────────── */

.home-splash {
  position: fixed;
  inset: 0;
  cursor: pointer;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-bg {
  position: absolute;
  inset: 0;
}

.splash-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.splash-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: splashFade 1.2s ease 0.4s forwards;
}

.splash-logo svg {
  width: 80px;
  height: 90px;
}

@keyframes splashFade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─────────────────────────────────────────
   TOP NAV
   ───────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  transition: color 0.3s ease;
  pointer-events: all;
}

.site-nav-left {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.nav-copyright {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: inherit;
}

.site-nav-menu-btn {
  display: none; /* shown only on mobile via media query */
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

/* Work index nav — ink */
.site-nav:not(.site-nav--post) .nav-link,
.site-nav:not(.site-nav--post) .site-nav-right {
  color: var(--ink);
}

/* Nav color states — universal */
.site-nav--cream,
.site-nav--cream .nav-link,
.site-nav--cream .site-nav-right,
.site-nav--cream .nav-copyright {
  color: var(--cream) !important;
}

.site-nav--ink,
.site-nav--ink .nav-link,
.site-nav--ink .site-nav-right,
.site-nav--ink .nav-copyright {
  color: var(--ink) !important;
}



.nav-link {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: opacity 0.2s;
}

/* Hover underline on nav links */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.site-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 28px;
  flex-shrink: 0;
}

.site-nav-logo svg { width: 28px; height: 32px; }

/* Logo color states */
.nav-logo-beige { display: none !important; }
.nav-logo-ink   { display: block !important; }

/* Cream state: swap to cream logo */
.site-nav--cream .nav-logo-beige { display: block !important; }
.site-nav--cream .nav-logo-ink   { display: none !important; }

.site-nav-right {
  display: flex;
  justify-content: flex-end;
}

/* Nav entrance animation for work page */
.site-nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.site-nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* ─────────────────────────────────────────
   MENU OVERLAY
   ───────────────────────────────────────── */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-scrim {
  position: absolute;
  inset: 0;
  background: rgba(27,35,27,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.menu-overlay.open .menu-scrim { opacity: 1; }

.menu-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: min(740px, 92vw);
  min-height: 620px;
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(14px) scale(0.975);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.open .menu-box { transform: translateY(0) scale(1); }

.menu-box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-tagline { font-size: 12px; letter-spacing: 0.1em; opacity: 0.38; }

.menu-close {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.menu-close:hover { opacity: 1; }

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.menu-nav-item { overflow: hidden; line-height: 1; }

.menu-nav a {
  font-family: var(--flare);
  font-weight: 200;
  font-variation-settings: 'wght' 200;
  font-size: clamp(60px, 11vw, 108px);
  line-height: 1.02;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  display: block;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-nav a.entered { opacity: 1; transform: translateY(0); }
.menu-nav.hovering a          { opacity: 0.15; transition: opacity 0.2s ease; }
.menu-nav.hovering a:hover    { opacity: 1;    transition: opacity 0.2s ease; }

.menu-box-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-contact {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.55;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.menu-contact:hover { opacity: 1; }

.menu-socials { display: flex; gap: 18px; }
.menu-socials a {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.38;
  transition: opacity 0.2s;
}
.menu-socials a:hover { opacity: 1; }

/* ─────────────────────────────────────────
   SUBSCRIBE OVERLAY
   ───────────────────────────────────────── */

.subscribe-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.subscribe-overlay.open { opacity: 1; pointer-events: all; }

.subscribe-scrim {
  position: absolute;
  inset: 0;
  background: rgba(27,35,27,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
}

.subscribe-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: min(520px, 90vw);
  padding: 36px 44px 40px;
  transform: translateY(14px) scale(0.975);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.subscribe-overlay.open .subscribe-box { transform: translateY(0) scale(1); }

.subscribe-box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.subscribe-heading {
  font-family: var(--flare);
  font-weight: 200;
  font-variation-settings: 'wght' 200;
  font-size: 32px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.subscribe-sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin-bottom: 28px;
  text-transform: none;
}

.subscribe-form { display: flex; flex-direction: column; gap: 12px; }

.subscribe-input {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(27,35,27,0.2);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.subscribe-input::placeholder { opacity: 0.35; }
.subscribe-input:focus { border-bottom-color: var(--ink); }

.subscribe-submit {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 14px 0;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.subscribe-submit:hover { opacity: 0.75; }

/* ─────────────────────────────────────────
   WORK INDEX
   ───────────────────────────────────────── */

.work-index {
  padding-top: 80px; /* clear top nav */
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 100px;
  padding: 48px 160px 80px;
}

.work-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}

/* 3:4 thumbnail */
.work-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 16px;
}

.work-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card-bg--empty { background: var(--ink); }

.work-card:hover .work-card-bg { transform: scale(1.04); }

.work-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Meta below thumb */
.work-card-meta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
  margin-top: 14px;
}

.work-card-title {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.work-card-category {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beige);
  white-space: nowrap;
}

/* Inline wrapper — underline only tracks the text width */
.work-card-text {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
}

.work-card-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.work-card:hover .work-card-text::after { transform: scaleX(1); }

/* ─────────────────────────────────────────
   WORK FOOTER (newsletter)
   ───────────────────────────────────────── */

.work-footer {
  border-top: 1px solid rgba(27,35,27,0.1);
  padding: 0;
  display: block;
  height: auto;
  background: var(--cream);
  color: var(--ink);
}

.footer-newsletter {
  padding: 120px 48px 100px;
  text-align: center;
}

.footer-newsletter-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.55;
  text-transform: none;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.footer-newsletter-input {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(27,35,27,0.25);
  padding: 10px 12px 10px 0;
  color: var(--ink);
  outline: none;
  flex: 1;
  min-width: 0;
}

.footer-newsletter-input::placeholder { opacity: 0.35; }

.footer-newsletter-btn {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-newsletter-btn:hover { opacity: 0.7; }

.footer-bottom {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-bottom-links a:hover { opacity: 1; }
.footer-bottom-links a:hover::after { transform: scaleX(1); }

/* ─────────────────────────────────────────
   PROJECT PAGE
   ───────────────────────────────────────── */

/* Sticky label */
.cs-sticky-label {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.cs-sticky-label.visible { opacity: 1; pointer-events: all; }

.cs-sticky-title,
.cs-sticky-category {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream) !important;
}
.cs-sticky-category { opacity: 0.55; }

/* Header overlay */
.cs-header-overlay-scrim {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(27,35,27,0);
  pointer-events: none;
  transition: background 0.35s ease;
}

.cs-header-overlay-scrim.open {
  background: rgba(27,35,27,0.25);
  pointer-events: all;
  cursor: pointer;
}

.cs-header-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 49;
  background: var(--cream);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cs-header-overlay.open { transform: translateY(0); pointer-events: all; }
.cs-header-overlay-inner { padding: 80px 48px 52px; }

/* Case study header */
.cs-header {
  background: var(--cream);
  padding: 80px 48px 40px;
  position: relative;
  z-index: 10;
}

.cs-title-wrap { overflow: hidden; width: 100%; margin-bottom: 48px; }

.cs-title {
  font-family: var(--flare);
  font-weight: 100;
  font-variation-settings: 'wght' 100;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
  display: block;
  width: 100%;
  white-space: nowrap;
  font-size: 10vw;
}

.cs-meta {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.cs-meta-left {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.cs-meta-right {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cs-meta-col { display: flex; flex-direction: column; gap: 8px; }
.cs-meta-label { font-size: 12px; letter-spacing: 0.15em; opacity: 0.38; }
.cs-meta-value {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 420px;
  text-transform: none;
  white-space: pre-line;
}

/* Content — full bleed images */
.cs-content { width: 100%; line-height: 0; }

.cs-content img,
.cs-content figure {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  display: block;
  margin: 0 !important;
}

.cs-content figcaption { display: none; }
.cs-content video { width: 100%; display: block; }

.cs-content .kg-width-wide,
.cs-content .kg-width-full {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Credits */
.cs-credits {
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  background: var(--cream);
  line-height: normal;
}

.cs-credit-label { font-size: 12px; letter-spacing: 0.15em; opacity: 0.38; margin-bottom: 8px; display: block; }
.cs-credit-value { font-size: 12px; letter-spacing: 0.04em; line-height: 1.75; text-transform: none; }
.cs-tag-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(27,35,27,0.2); transition: border-color 0.2s; }
.cs-tag-link:hover { border-color: var(--ink); }

/* ── Next project — full-width fluid title row ── */
.cs-next {
  position: relative;
  display: block;
  padding: 32px 48px;
  text-decoration: none;
  background: var(--cream);
  line-height: 1;
  transition: background 0.3s ease;
}

.cs-next:hover { background: var(--beige); }

.cs-next-bg { display: none; }
.cs-next-overlay { display: none; }

/* The text row — one line, fluid */
.cs-next-row {
  position: relative;
  z-index: 2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.cs-next-label {
  font-family: var(--flare);
  font-weight: 100;
  font-variation-settings: 'wght' 100;
  font-size: 10vw;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--beige);
}

.cs-next-title {
  font-family: var(--flare);
  font-weight: 100;
  font-variation-settings: 'wght' 100;
  font-size: 10vw;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 0.35s ease;
  margin-left: 0.25em;
}

.cs-next:hover .cs-next-title { opacity: 1; }
.cs-next:hover .cs-next-label { color: var(--cream); }

/* Remove any stray arrow styles */
.cs-next-arrow { display: none; }

/* ─────────────────────────────────────────
   STANDARD FOOTER (project pages)
   ───────────────────────────────────────── */

.site-footer {
  height: 56px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--cream);
  color: var(--ink);
}


.footer-left,
.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-right { justify-content: flex-end; }

.footer-link {
  color: var(--ink);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-link:hover { opacity: 1; }
.footer-link:hover::after { transform: scaleX(1); }

.footer-copy {
  color: var(--ink);
  opacity: 1;
  text-align: center;
}

/* ─────────────────────────────────────────
   STATIC PAGES
   ───────────────────────────────────────── */

.static-page .cs-header { padding-top: 80px; }
.static-page .cs-title-wrap { margin-bottom: 16px; }

.page-tagline {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.65;
  text-transform: none;
  color: var(--ink);
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.page-content {
  padding: 0 0 120px;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-transform: none;
}

.page-content p,
.page-content h2,
.page-content h3,
.page-content ul,
.page-content ol {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
  margin-bottom: 28px;
}

.page-content .kg-image-card {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.page-content .kg-image-card.kg-width-full,
.page-content .kg-image-card.kg-width-wide { padding: 0; max-width: 100%; }

.page-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: none;
}

.page-content .kg-embed-card {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.page-content img { width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   TAG ARCHIVE
   ───────────────────────────────────────── */

.tag-header {
  padding: 80px 48px 56px;
  background: var(--cream);
  border-bottom: 1px solid rgba(27,35,27,0.08);
}

.tag-header-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.38;
  display: block;
  margin-bottom: 12px;
}

.tag-header-title {
  font-family: var(--flare);
  font-weight: 100;
  font-variation-settings: 'wght' 100;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

/* ─────────────────────────────────────────
   TABLET
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    padding: 32px 40px 60px;
  }
}

/* ─────────────────────────────────────────
   MOBILE
   ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .site-nav {
    padding: 16px 20px;
    justify-content: space-between;
  }

  /* Mobile nav: hide all links, show Menu button and ©2026 only */
  .site-nav-left .nav-link { display: none; }
  .site-nav-right .nav-link { display: none; }
  .site-nav-right .nav-copyright { display: block; }
  .site-nav-menu-btn { display: block; }

  .site-nav-logo { margin: 0 16px; }
  .site-nav-logo svg { width: 24px; height: 27px; }

  /* ── Work index ── */
  .work-index { padding-top: 64px; }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 24px 20px 60px;
  }

  .work-card-text { flex-direction: column; gap: 2px; }

  /* ── Project header ── */
  .cs-header {
    padding: 72px 20px 32px;
  }

  .cs-title-wrap { margin-bottom: 28px; }

  /* Meta stacks vertically on mobile */
  .cs-meta {
    flex-direction: column;
    gap: 24px;
  }

  .cs-meta-left,
  .cs-meta-right {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }

  .cs-meta-value { max-width: 100%; }

  /* ── Project content ── */
  .cs-next { padding: 20px 20px; }
  .cs-next-label { font-size: 12px; }
  .cs-next-title { font-size: clamp(24px, 8vw, 40px); }

  /* ── Newsletter ── */
  .footer-newsletter { padding: 48px 20px; }
  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .footer-newsletter-input { text-align: left; padding: 12px 0; }
  .footer-newsletter-btn { padding: 14px; }

  /* ── Footer ── */
  .site-footer {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 14px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  /* ── Menu overlay ── */
  .menu-box {
    width: 94vw;
    min-height: 70vh;
    padding: 24px 20px 28px;
  }

  .menu-nav a { font-size: clamp(36px, 12vw, 64px); }

  /* ── Static pages ── */
  .static-page .cs-header { padding: 72px 20px 32px; }

  .page-content p,
  .page-content h2,
  .page-content h3,
  .page-content ul { padding: 0 20px; }

  .page-content .kg-image-card { padding: 0 20px; }
  .page-content .kg-embed-card { padding: 0 20px; }

  /* ── Project meta block ── */
  .cs-content .project-meta-block {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 40px;
  }
}

/* ─────────────────────────────────────────
   SMALL MOBILE
   ───────────────────────────────────────── */
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 20px 60px;
  }

  .site-nav-logo { margin: 0 12px; }
}

/* ── Hide newsletter/footer on home splash ── */
.home-template .footer-newsletter,
.home-template .site-footer {
  display: none;
}

/* ── Remove legacy v3 sticky elements ── */
.cs-sticky-label,
.cs-header-overlay,
.cs-header-overlay-scrim { display: none !important; }

/* ── Project meta HTML card block ── */
/* Rendered as first block in cs-content, styled to extend cs-header */
.cs-content .project-meta-block {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 48px 56px;
  background: var(--cream);
  line-height: normal;
}

/* kg-html-card wrapper that Ghost adds around HTML cards */
.cs-content .kg-html-card:first-child {
  line-height: normal;
  background: var(--cream);
}

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

.pmb-label {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.38;
}

.pmb-value {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-transform: none;
  color: var(--ink);
  white-space: pre-line;
}
