/* ==========================================================================
   Athens Building Company — Editorial Portfolio
   ========================================================================== */

:root {
  /* Colors */
  --bg: #F4EFE7;
  --surface: #FBF8F2;
  --surface-stone: #E8E0D2;
  --ink: #1B1714;
  --ink-muted: #615A52;
  --ink-soft: #A39B90;
  --accent: #B98B47;
  --accent-deep: #8E6A36;
  --accent-bright: #D4A569;
  --deep: #2A332E;
  --deep-muted: #475048;
  --rule: rgba(27, 23, 20, 0.12);
  --rule-strong: rgba(27, 23, 20, 0.28);
  --rule-light: rgba(245, 240, 232, 0.18);

  /* Type */
  --font-display: "Prata", Georgia, "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --type-hero: clamp(3.25rem, 7.25vw, 6.25rem);
  --type-display: clamp(2.5rem, 5vw, 4.25rem);
  --type-h2: clamp(1.875rem, 3.2vw, 2.75rem);
  --type-h3: clamp(1.375rem, 2vw, 1.75rem);
  --type-h4: 1.125rem;
  --type-eyebrow: 0.75rem;
  --type-lead: clamp(1.0625rem, 1.4vw, 1.25rem);
  --type-body: 1rem;
  --type-small: 0.875rem;
  --type-tiny: 0.75rem;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 10rem;

  /* Layout */
  --max-w: 1440px;
  --max-text: 65ch;
  --container-x: clamp(1.25rem, 5vw, 4rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(27, 23, 20, 0.04), 0 8px 24px rgba(27, 23, 20, 0.06);
  --shadow-lift: 0 1px 2px rgba(27, 23, 20, 0.05), 0 16px 40px rgba(27, 23, 20, 0.10);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--surface); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-in-out); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}

/* Prata ships no italic — never faux-slant emphasized words in display headings */
h1 em, h2 em, h3 em, h4 em,
h1 i,  h2 i,  h3 i,  h4 i { font-style: normal; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ==========================================================================
   Layout Primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-x);
  padding-right: var(--container-x);
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-left: var(--container-x);
  padding-right: var(--container-x);
}

.section { padding-top: var(--s-10); padding-bottom: var(--s-10); }
.section--tight { padding-top: var(--s-8); padding-bottom: var(--s-8); }
.section--bleed { padding-top: 0; padding-bottom: 0; }

.bg-stone { background: var(--surface-stone); }
.bg-white { background: var(--surface); }
.bg-deep { background: var(--deep); color: var(--surface); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: var(--surface); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-muted);
}

.bg-deep .eyebrow { color: var(--surface-stone); }
.bg-deep .eyebrow::before { background: var(--surface-stone); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

/* Full dark-green top bar, echoing the footer */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--deep);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease-in-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--rule-light);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-6);
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--surface);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
}

.brand__mark {
  font-weight: 600;
}

.brand__logo {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 880px) {
  .brand__logo { height: 36px; }
}

.brand__sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-primary {
  justify-self: center;
  display: flex;
  gap: var(--s-7);
}

.nav-primary a {
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  color: var(--surface);
  letter-spacing: 0;
  position: relative;
  padding: 4px 0;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out-expo);
}

.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after { transform: scaleX(1); }

.nav-end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: var(--s-5);
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  padding-right: var(--s-5);
  border-right: 1px solid var(--rule-light);
}

.nav-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 248, 242, 0.72);
  transition: color var(--t-fast) var(--ease-in-out);
}

.nav-social__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.nav-social__link:hover {
  color: var(--surface);
}

.nav-tel {
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  color: var(--surface);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.nav-tel:hover { color: var(--accent-bright); }

.nav-tel__icon {
  display: inline-flex;
  width: 20px; height: 20px;
  color: var(--accent);
  transform-origin: 50% 50%;
}

.nav-tel:hover .nav-tel__icon {
  animation: phone-jiggle 0.7s var(--ease-out-expo);
}

@keyframes phone-jiggle {
  0%   { transform: rotate(0); }
  10%  { transform: rotate(-18deg); }
  20%  { transform: rotate(16deg); }
  30%  { transform: rotate(-14deg); }
  40%  { transform: rotate(12deg); }
  50%  { transform: rotate(-10deg); }
  60%  { transform: rotate(8deg); }
  70%  { transform: rotate(-6deg); }
  80%  { transform: rotate(4deg); }
  90%  { transform: rotate(-2deg); }
  100% { transform: rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-tel:hover .nav-tel__icon { animation: none; }
}

/* Compact phone-call button — mobile only, sits next to the hamburger */
.nav-call {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--surface);
}
.nav-call svg { width: 22px; height: 22px; }
.nav-call:hover { color: var(--accent-bright); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar { display: block; width: 22px; height: 1.5px; background: var(--surface); position: relative; transition: transform var(--t-fast); }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; width: 100%; height: 100%; background: var(--surface); transition: transform var(--t-fast); }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

@media (max-width: 880px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: var(--s-2);
  }
  .nav-primary, .nav-tel, .nav-social { display: none; }
  .nav-end { display: none; }
  .nav-call { display: inline-flex; }
  .nav-toggle { display: inline-flex; }

  /* ---------- Full-screen mobile menu (open state) ---------- */
  .site-header.is-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--deep);
    overflow-y: auto;
  }
  .site-header.is-open .site-header__inner {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-8);
    padding-top: var(--s-4);
    padding-bottom: var(--s-9);
  }
  .site-header.is-open .nav-call { display: none; }

  /* Large editorial link list, vertically centered */
  .site-header.is-open .nav-primary {
    display: flex;
    flex-direction: column;
    gap: var(--s-1);
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
  }
  .site-header.is-open .nav-primary a {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--surface);
    padding: var(--s-2) 0;
  }
  .site-header.is-open .nav-primary a::after { display: none; }

  /* Socials + phone pinned to the bottom */
  .site-header.is-open .nav-end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-5);
    width: 100%;
    padding-top: var(--s-6);
    border-top: 1px solid var(--rule-light);
  }
  .site-header.is-open .nav-social { display: flex; gap: var(--s-6); padding-right: 0; border-right: none; }
  .site-header.is-open .nav-social__link { width: 28px; height: 28px; }
  .site-header.is-open .nav-tel {
    display: inline-flex;
    margin: 0;
    font-size: var(--type-small);
  }

  /* Hamburger morphs into an X, pinned top-right */
  .site-header.is-open .nav-toggle {
    position: absolute;
    top: var(--s-4);
    right: var(--container-x);
    z-index: 1;
  }
  .site-header.is-open .nav-toggle__bar { background: transparent; }
  .site-header.is-open .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
  .site-header.is-open .nav-toggle__bar::after  { top: 0; transform: rotate(-45deg); }
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: var(--type-small);
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Hero — Editorial cover
   ========================================================================== */

.hero {
  padding-top: var(--s-9);
  padding-bottom: var(--s-7);
}

.hero__eyebrow {
  margin-bottom: var(--s-6);
}

.hero__title {
  font-size: var(--type-hero);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: var(--s-7);
  max-width: 22ch;
}

.hero__title em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__meta {
  display: flex;
  align-items: baseline;
  gap: var(--s-7);
  flex-wrap: wrap;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}

.hero__meta-item {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
}

.hero__meta-item strong {
  color: var(--ink);
  font-weight: 500;
}

.hero__cta {
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.hero__cta:hover { color: var(--accent-deep); border-color: var(--accent); }
.hero__cta-arrow { transition: transform var(--t-med) var(--ease-out-expo); }
.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }

.hero__figure {
  margin-top: var(--s-8);
}

.hero__stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-stone);
  overflow: hidden;
}

.hero__caption-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__caption-sep { color: var(--ink-soft); }

.hero__caption-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--type-tiny);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.hero__caption-link svg { transition: transform var(--t-med) var(--ease-out-expo); }

.hero__caption-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}

.hero__caption-link:hover svg { transform: translateX(3px); }

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s var(--ease-in-out);
  will-change: opacity, transform;
}

.hero__image.is-active {
  animation: hero-kenburns 24s linear forwards;
}

@keyframes hero-kenburns {
  from { opacity: 0; transform: scale(1.03) translate3d(0, 0, 0); }
  6%   { opacity: 1; }
  to   { opacity: 1; transform: scale(1.12) translate3d(-1.6%, -0.9%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__image.is-active { animation: none; opacity: 1; transform: none; }
}

.hero__caption {
  margin-top: var(--s-4);
  padding-bottom: var(--s-7);
  font-size: var(--type-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}

@media (max-width: 720px) {
  .hero__caption { flex-direction: column; align-items: flex-start; gap: var(--s-2); }
}

/* ==========================================================================
   Press Strip
   ========================================================================== */

.press {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid #cfc8bb;
  border-bottom: 1px solid #cfc8bb;
}

.press__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1518px;
  margin: 0 auto;
  padding: 0 40px;
}

.press__label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.press__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px 128px;
  width: 100%;
}

.press__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.press__item-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.press__item-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  color: var(--ink-muted);
  opacity: 0.9;
  transition: opacity var(--t-fast);
}

/* Per-publication sizing — 75% of the Figma reference values, then scaled down 25% */
.press__item-logo--gng        { height: 25px;  width: 204px; }
.press__item-logo--veranda    { height: 38px;  width: 164px; }
.press__item-logo--atl-homes  { height: 54px;  width: 147px; }
.press__item-logo--hgtv       { height: 48px;  width:  94px; }
.press__item-logo--country    { height: 31px;  width: 179px; }
.press__item-logo--southern   { height: 37px;  width: 173px; }
.press__item-logo--bhg        { height: 44px;  width: 170px; }
.press__item-logo--trad-home  { height: 44px;  width: 125px; }
.press__item-logo--ga-design  { height: 18px;  width: 197px; }

.press__item:hover .press__item-logo,
.press__item:hover .press__item-text { opacity: 1; }

/* Scale all logos down proportionally on smaller screens */
@media (max-width: 1280px) {
  .press__list { gap: 40px 64px; }
  .press__item-logo--gng        { height: 21px;  width: 176px; }
  .press__item-logo--veranda    { height: 33px;  width: 141px; }
  .press__item-logo--atl-homes  { height: 45px;  width: 126px; }
  .press__item-logo--hgtv       { height: 41px;  width:  81px; }
  .press__item-logo--country    { height: 27px;  width: 155px; }
  .press__item-logo--southern   { height: 32px;  width: 149px; }
  .press__item-logo--bhg        { height: 37px;  width: 143px; }
  .press__item-logo--trad-home  { height: 37px;  width: 105px; }
  .press__item-logo--ga-design  { height: 15px;  width: 165px; }
}

@media (max-width: 880px) {
  .press__inner { gap: 32px; padding: 0 24px; }
  .press__list { gap: 28px 44px; }
  .press__item-logo--gng        { height: 17px;  width: 140px; }
  .press__item-logo--veranda    { height: 26px;  width: 113px; }
  .press__item-logo--atl-homes  { height: 36px;  width:  98px; }
  .press__item-logo--hgtv       { height: 32px;  width:  63px; }
  .press__item-logo--country    { height: 21px;  width: 123px; }
  .press__item-logo--southern   { height: 24px;  width: 117px; }
  .press__item-logo--bhg        { height: 30px;  width: 116px; }
  .press__item-logo--trad-home  { height: 30px;  width:  85px; }
  .press__item-logo--ga-design  { height: 12px;  width: 132px; }
}

@media (max-width: 480px) {
  .press__list { gap: 24px 32px; }
  .press__item-logo--gng        { height: 14px;  width: 107px; }
  .press__item-logo--veranda    { height: 20px;  width:  84px; }
  .press__item-logo--atl-homes  { height: 27px;  width:  74px; }
  .press__item-logo--hgtv       { height: 24px;  width:  47px; }
  .press__item-logo--country    { height: 17px;  width:  93px; }
  .press__item-logo--southern   { height: 18px;  width:  87px; }
  .press__item-logo--bhg        { height: 25px;  width:  96px; }
  .press__item-logo--trad-home  { height: 25px;  width:  71px; }
  .press__item-logo--ga-design  { height: 10px;  width: 110px; }
}

/* ==========================================================================
   Approach (about preview / values)
   ========================================================================== */

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-10);
  align-items: start;
}

.approach__head {
  position: relative;
  padding-bottom: 296px;
  z-index: 0;
}

.approach__head::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: 0;
  width: 140%;
  height: 500px;
  background-image: url("../images/illustrations/house-sketch.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.approach__head > * { position: relative; z-index: 1; }

@media (max-width: 880px) {
  .approach__head { padding-bottom: 256px; }
  /* Keep the bottom-left sketch from bleeding past the right edge (caused ~20px
     of horizontal scroll on mobile); the trimmed right side is empty canvas. */
  .approach__head::after { left: -6%; width: 104%; height: 360px; }
}

.approach__heading {
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  font-weight: 300;
}

.approach__lead {
  font-size: var(--type-lead);
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: var(--s-5);
}

.approach__byline {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
}

.approach__byline strong {
  color: var(--ink);
  font-weight: 500;
}

.tenets {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.tenet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-7);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
}

.tenet__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
  padding-top: 0.4em;
}

.tenet__title {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: 400;
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.tenet__text {
  font-size: var(--type-body);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 52ch;
}

@media (max-width: 880px) {
  .approach__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .tenet { grid-template-columns: 1fr; gap: var(--s-3); }
  .tenet__num { padding-top: 0; }
}

/* ==========================================================================
   Collaborators — grouped roster / credits (About page)
   ========================================================================== */

.collab__head {
  margin: 0 0 var(--s-9);
}

.collab__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.06;
  margin: 0;
}

.collab__lead {
  max-width: 60ch;
  margin: var(--s-4) 0 0;
  font-size: var(--type-lead);
  color: var(--ink-muted);
  line-height: 1.55;
  text-wrap: pretty;
}

.collab__groups {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-6), 4vw, var(--s-8));
}

.collab__discipline {
  margin-bottom: var(--s-4);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.collab__names { margin: 0; }

/* 47 partners — set in the body face at reading size and flowed into columns so the
   roster stays scannable instead of becoming a wall of display serif. */
.collab__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 3;
  column-gap: var(--s-7);
}

.collab__list li {
  break-inside: avoid;
  margin-bottom: var(--s-3);
}

.collab__name {
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
}

a.collab__name {
  transition: color var(--t-fast);
}

a.collab__name:hover,
a.collab__name:focus-visible {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 880px) {
  .collab__list { columns: 2; column-gap: var(--s-6); }
}

@media (max-width: 600px) {
  .collab__list { columns: 1; }
}

/* ==========================================================================
   Selected Work — editorial portfolio index
   ========================================================================== */

.work__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
}

.work__title {
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  max-width: 18ch;
}

.work__title em { font-style: normal; }

.work__sub {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
  max-width: 36ch;
  text-align: right;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-6) var(--s-6);
}

.project {
  display: block;
  position: relative;
  cursor: pointer;
}

.project__media {
  position: relative;
  overflow: hidden;
  background: var(--surface-stone);
  margin-bottom: var(--s-4);
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo), filter var(--t-med) var(--ease-in-out);
  will-change: transform;
}

.project:hover .project__media img {
  transform: scale(1.04);
}

.project__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 23, 20, 0);
  color: rgba(251, 248, 242, 0);
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  transition: background var(--t-med) var(--ease-in-out), color var(--t-med) var(--ease-in-out);
}

.project:hover .project__overlay {
  background: rgba(27, 23, 20, 0.42);
  color: rgba(251, 248, 242, 1);
}

.project__index {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-variation-settings: "opsz" 14;
  display: inline-block;
  margin-right: var(--s-3);
}

.project__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-2);
  font-variation-settings: "opsz" 144;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.project:hover .project__name { color: var(--accent-deep); }

.project__meta {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
}

.project__meta-sep {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--ink-soft);
  vertical-align: middle;
  margin: 0 var(--s-3);
}

/* Editorial layout — alternating widths */
.project--lg { grid-column: span 12; }
.project--lg .project__media { aspect-ratio: 21 / 9; }

.project--md { grid-column: span 7; }
.project--md .project__media { aspect-ratio: 4 / 3; }

.project--sm { grid-column: span 5; }
.project--sm .project__media { aspect-ratio: 4 / 3; }

.project--half { grid-column: span 6; }
.project--half .project__media { aspect-ratio: 3 / 2; }

@media (max-width: 880px) {
  .work__grid { gap: var(--s-7) 0; }
  .project--lg, .project--md, .project--sm, .project--half {
    grid-column: span 12;
  }
  .project--lg .project__media { aspect-ratio: 16 / 10; }
  .work__sub { text-align: left; }
  .work__head { flex-direction: column; gap: var(--s-4); }
}

.work__more {
  margin-top: var(--s-9);
  text-align: center;
  padding-top: var(--s-7);
  border-top: 1px solid var(--rule);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.btn-link:hover { color: var(--accent-deep); border-color: var(--accent); }
.btn-link svg { transition: transform var(--t-med) var(--ease-out-expo); }
.btn-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Recognition (press detail)
   ========================================================================== */

.recognition__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-9);
  align-items: start;
}

.recognition__head .eyebrow { margin-bottom: var(--s-5); }

.recognition__title {
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: var(--s-5);
}

.recognition__title em { font-style: normal; }

.recognition__lead {
  color: var(--ink-muted);
  font-size: var(--type-lead);
  line-height: 1.55;
  max-width: 38ch;
}

.recognition__cta {
  margin-top: var(--s-6);
}

.features {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.feature {
  border-bottom: 1px solid var(--rule);
}

.feature__link {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr 0.5fr 14px;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-5) 0;
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-in-out);
}

.feature__link:hover .feature__pub,
.feature__link:hover .feature__article { color: var(--accent-deep); }
.feature__link:hover .feature__date,
.feature__link:hover .feature__arrow { color: var(--accent); }
.feature__link:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

.feature__arrow {
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform var(--t-med) var(--ease-out-expo), color var(--t-fast) var(--ease-in-out);
  align-self: center;
}

.feature__link:hover .feature__arrow { transform: translateX(3px); }
.feature__link:hover .feature__arrow--external { transform: translate(3px, -3px); }

.feature__pub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.005em;
}

.feature__article {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--ink);
  font-weight: 400;
}

.feature__date {
  font-family: var(--font-body);
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
  text-align: right;
}

@media (max-width: 720px) {
  .recognition__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .feature__link {
    grid-template-columns: 1fr 14px;
    gap: var(--s-1) var(--s-4);
  }
  .feature__pub,
  .feature__article,
  .feature__date { grid-column: 1; }
  .feature__arrow {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }
  .feature__date { text-align: left; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-7);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin: 0;
}

.quote__media {
  display: block;
  overflow: hidden;
  background: var(--surface-stone);
  margin-bottom: var(--s-1);
  aspect-ratio: 4 / 3;
}

.quote__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
  will-change: transform;
}

.quote__media:hover img { transform: scale(1.04); }

.quote__body { margin: 0; }

.quote__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 400;
  height: 0.4em;
  display: block;
  margin-bottom: var(--s-3);
}

.quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 1.4375rem;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.quote__source {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}
.quote__source strong { color: var(--ink); font-weight: 500; font-style: normal; }

.quote__project {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--type-tiny);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-style: normal;
  transition: color var(--t-fast);
}

.quote__project svg { transition: transform var(--t-med) var(--ease-out-expo); }

.quote__project:hover {
  color: var(--accent-deep);
}

.quote__project:hover svg { transform: translateX(3px); }

@media (max-width: 880px) {
  .testimonials__inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */

.cta {
  padding-top: var(--s-10);
  padding-bottom: var(--s-10);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: end;
}

.cta__title {
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--surface);
}

.cta__title em { font-style: normal; color: var(--accent); }

.cta__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.cta__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-5);
  align-items: baseline;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule-light);
}

.cta__label {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--surface-stone);
  font-weight: 500;
}

.cta__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: -0.005em;
}

.cta__value a { color: inherit; transition: color var(--t-fast); }
.cta__value a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .cta__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .cta__row { grid-template-columns: 1fr; gap: var(--s-1); }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--deep);
  color: var(--surface-stone);
  padding-top: var(--s-9);
  padding-bottom: var(--s-6);
  border-top: 1px solid var(--deep-muted);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--rule-light);
}

.foot-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}

.foot-brand-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: var(--s-4);
}

.foot-tagline {
  font-size: var(--type-small);
  color: var(--surface-stone);
  letter-spacing: 0;
  max-width: 38ch;
  line-height: 1.55;
}

.foot-col__label {
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

.foot-col ul li {
  padding: 3px 0;
  font-size: var(--type-small);
  line-height: 1.5;
  color: var(--surface-stone);
}

/* Slightly more breathing room around clickable items so they feel tappable */
.foot-col ul li:has(a) { padding: 6px 0; }

.foot-col a:hover { color: var(--accent); }

.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-5);
  font-size: var(--type-tiny);
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.foot-meta a { color: var(--ink-soft); }
.foot-meta a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .site-footer__inner > :first-child { grid-column: span 2; }
}

/* ==========================================================================
   Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d-1 { transition-delay: 100ms; }
.reveal-d-2 { transition-delay: 200ms; }
.reveal-d-3 { transition-delay: 300ms; }

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

.hero__eyebrow { animation: hero-rise 900ms var(--ease-out-expo) both; }
.hero__meta { animation: hero-rise 1100ms var(--ease-out-expo) 250ms both; }
.hero__figure { animation: hero-rise 1400ms var(--ease-out-expo) 350ms both; }

/* Split-text on the hero H1 — JS wraps each word in a span pair */
/* Hide the raw H1 until the split-text JS runs, so characters don't flash
   before they animate in. The per-word spans re-show as they slide up. */
.js .hero__title { visibility: hidden; }
.js .hero__title .split-word { visibility: visible; }

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding: 0 0.15em 0.2em 0.15em;
  margin: 0 -0.15em -0.2em -0.15em;
}

.split-word__inner {
  display: inline-block;
  /* 130% (not 110%) so the glyph tops clear the .split-word padding-bottom
     at rest — otherwise a sliver peeks below the clip edge before revealing */
  transform: translateY(130%);
  transition: transform 1100ms var(--ease-out-expo);
  will-change: transform;
}

.split-word.is-revealed .split-word__inner { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .split-word__inner { transform: none; transition: none; }
  /* Reduced motion skips the JS split, so keep the H1 visible */
  .js .hero__title { visibility: visible; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Page Hero (interior pages)
   ========================================================================== */

.page-hero {
  padding-top: var(--s-9);
  padding-bottom: var(--s-7);
}

/* Tighten the gap between a page hero and the first section that follows it
   (the About page otherwise stacks hero padding-bottom + section padding-top,
   leaving a large empty band near the top). */
.page-hero + .section { padding-top: var(--s-3); }

.page-hero__title {
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: var(--s-5) 0 var(--s-5);
  max-width: 22ch;
}

.page-hero__title em { font-style: normal; }

/* About page hero — a single statement line with no lead paragraph under it.
   Sits lower on the page and closes the gap the missing lead would otherwise leave. */
.page-hero--about {
  padding-top: var(--s-10);
  padding-bottom: var(--s-6);
}

.page-hero--about .page-hero__title {
  max-width: 30ch;
  margin-bottom: 0;
  text-wrap: balance;
}

.page-hero__lead {
  font-size: var(--type-lead);
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 60ch;
}

/* ==========================================================================
   Work Index Grid
   ========================================================================== */

.work-index { padding-top: var(--s-9); padding-bottom: var(--s-10); }

.work-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-9) var(--s-7);
}

.work-card {
  display: block;
  cursor: pointer;
}

.work-card__media {
  margin: 0 0 var(--s-5);
  overflow: hidden;
  background: var(--surface-stone);
  aspect-ratio: 4 / 3;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo);
  will-change: transform;
}

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

.work-card__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-variation-settings: "opsz" 14;
  display: inline-block;
  margin-bottom: var(--s-2);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-2);
  font-variation-settings: "opsz" 144;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.work-card:hover .work-card__title { color: var(--accent-deep); }

.work-card__meta {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .work-index__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ==========================================================================
   Project Page
   ========================================================================== */

.project-hero {
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
  text-align: center;
}

.project-hero__crumb {
  font-size: var(--type-small);
  letter-spacing: 0;
  color: var(--ink-muted);
  margin: 0 0 var(--s-7);
  text-align: left;
}

.project-hero__crumb a:hover { color: var(--accent-deep); }

.project-hero .eyebrow {
  margin-bottom: var(--s-5);
  display: inline-flex;
}

.project-hero .eyebrow::before { display: none; }

.project-hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0 0 var(--s-5);
}

.project-hero__meta {
  font-size: var(--type-small);
  color: var(--ink-muted);
  letter-spacing: 0;
}

.project-feature { padding: 0; }
.project-feature__img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  background: var(--surface-stone);
}

.project-gallery {
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.g-item {
  display: block;
  padding: 0;
  margin: 0;
  background: var(--surface-stone);
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}

.g-item:hover img { transform: scale(1.04); }
.g-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 880px) {
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .project-gallery { grid-template-columns: 1fr; gap: var(--s-3); }
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-7);
  align-items: center;
  padding-top: var(--s-8);
  padding-bottom: var(--s-9);
  border-top: 1px solid var(--rule);
}

.project-nav__prev, .project-nav__next {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-family: var(--font-display);
  color: var(--ink);
  transition: color var(--t-fast);
}

.project-nav__next { text-align: right; }
.project-nav__prev:hover, .project-nav__next:hover { color: var(--accent-deep); }

.project-nav__label {
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.project-nav__name {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144;
}

.project-nav__center {
  font-family: var(--font-body);
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-soft);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.project-nav__center:hover { color: var(--accent-deep); border-color: var(--accent); }

@media (max-width: 720px) {
  .project-nav { grid-template-columns: 1fr; gap: var(--s-5); text-align: center; }
  .project-nav__next { text-align: center; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: start;
}

.about-text { padding-top: var(--s-3); }

/* The opening paragraph used to run in Prata; the client asked for one font
   throughout the About body, so it now just inherits .about-text p. */

.about-text p {
  font-size: var(--type-lead);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: var(--s-5);
}

.about-text p strong { color: var(--ink); font-weight: 500; }
.about-text p em { font-style: italic; color: var(--ink); }

.about-figure { margin: 0; }

.about-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 732 / 639;
  object-fit: cover;
  background: var(--surface-stone);
}

.about-figure figcaption {
  font-size: var(--type-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--s-3);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ==========================================================================
   Press article (internal feature view)
   ========================================================================== */

.article-hero {
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.article-hero__crumb {
  font-size: var(--type-small);
  color: var(--ink-muted);
  margin: 0 0 var(--s-7);
  text-align: left;
}

.article-hero__crumb a:hover { color: var(--accent-deep); }

.article-hero .eyebrow {
  margin-bottom: var(--s-5);
  display: inline-flex;
}
.article-hero .eyebrow::before { display: none; }

.article-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}

.article-hero__actions { margin: var(--s-6) 0 0; }

.article-pages {
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}

.article-page {
  margin: 0;
  cursor: zoom-in;
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.article-page:hover { transform: scale(1.005); }

.article-page img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface-stone);
  box-shadow: 0 6px 24px rgba(27, 23, 20, 0.08);
}

.article-nav {
  padding-top: var(--s-7);
  padding-bottom: var(--s-9);
  text-align: center;
  border-top: 1px solid var(--rule);
}

/* ==========================================================================
   Press page — Awards + featured covers grid
   ========================================================================== */

.awards-marquee {
  background: #fff;
  padding-top: var(--s-8);
  padding-bottom: var(--s-8);
  overflow: hidden;
  border-top: 1px solid var(--rule);
}

p.awards-marquee__eyebrow {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--s-6);
}

.awards-marquee__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.awards-marquee__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: max-content;
  gap: var(--s-9);
  align-items: end;
  animation: awards-marquee-scroll 60s linear infinite;
}

@keyframes awards-marquee-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

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

@media (prefers-reduced-motion: reduce) {
  .awards-marquee__track { animation: none; transform: none; }
  .awards-marquee__viewport {
    -webkit-mask-image: none;
            mask-image: none;
    overflow-x: auto;
  }
}

.awards-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-marquee__badge {
  width: 200px;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
}

/* Wordmark-shaped logos (roughly 2:1 or wider) letterbox to a sliver inside the
   square badge box, so give them a landscape box instead. */
.awards-marquee__badge--wide {
  width: 260px;
  height: 140px;
}

@media (max-width: 880px) {
  .awards-marquee__track { gap: var(--s-7); animation-duration: 45s; }
  .awards-marquee__badge { width: 150px; height: 150px; }
  .awards-marquee__badge--wide { width: 200px; height: 105px; }
}

@media (max-width: 480px) {
  .awards-marquee__track { gap: var(--s-6); animation-duration: 35s; }
  .awards-marquee__badge { width: 120px; height: 120px; }
  .awards-marquee__badge--wide { width: 165px; height: 85px; }
}

/* Features grid */
.features-grid__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
  text-align: center;
}

.features-grid__lead {
  font-size: var(--type-lead);
  color: var(--ink-muted);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--s-8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7) var(--s-6);
}

.features-grid--small {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6) var(--s-5);
}

.feature-card { display: flex; flex-direction: column; }

.feature-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-stone);
  margin-bottom: var(--s-4);
  transform: translateZ(0);
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 0 rgba(27, 23, 20, 0);
  will-change: transform;
}

.feature-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card__cover:hover {
  transform: scale(1.02);
  box-shadow:
    0 22px 38px -16px rgba(27, 23, 20, 0.22),
    0 8px 14px -8px rgba(27, 23, 20, 0.12);
}

.feature-card__cover--static { cursor: default; }
.feature-card__cover--static:hover {
  transform: none;
  box-shadow: 0 0 0 rgba(27, 23, 20, 0);
}

.feature-card__corner { display: none; }

.feature-card__pub {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-bottom: var(--s-2);
  display: block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.375rem, 1.6vw, 1.625rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  font-variation-settings: "opsz" 144;
  line-height: 1.25;
}

.feature-card__date {
  font-family: var(--font-body);
  font-size: var(--type-small);
  color: var(--ink-muted);
  display: block;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid--small { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .features-grid, .features-grid--small { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); }
}

@media (max-width: 480px) {
  .features-grid, .features-grid--small { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ==========================================================================
   Press page — full features list + secondary blocks
   ========================================================================== */

.press-list { max-width: 1080px; margin: 0 auto; }

.press-list__heading {
  font-size: var(--type-h2);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-7);
  text-align: center;
}

.features--full .feature {
  grid-template-columns: 0.85fr 1.4fr 0.5fr;
}

.press-secondary {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-9);
  align-items: start;
}

.press-block__heading {
  font-size: var(--type-h3);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 880px) {
  .press-secondary { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact { padding-top: var(--s-9); padding-bottom: var(--s-10); }

.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--s-10);
  align-items: start;
}

.contact-info { }

.contact-info__heading {
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.contact-info__heading em { font-style: normal; }

.contact-info__lead {
  font-size: var(--type-lead);
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: var(--s-7);
  max-width: 36ch;
}

.contact-info__rows { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }

.contact-info__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--rule);
}

.contact-info__label {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.contact-info__value a:hover { color: var(--accent-deep); }

/* Form */
.contact-form { background: var(--surface); padding: var(--s-7) var(--s-7); border: 1px solid var(--rule); }

.contact-form__heading {
  font-size: var(--type-h3);
  font-weight: 400;
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}

.field { display: flex; flex-direction: column; margin-bottom: var(--s-5); }

.field__label {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: var(--s-2);
}

.field__input,
.field__textarea {
  font: 400 1rem/1.5 var(--font-body);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.field__textarea { resize: vertical; min-height: 140px; }

.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }

.contact-form__submit {
  font: 500 var(--type-small)/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--ink);
  padding: 16px 28px;
  border: 0;
  cursor: pointer;
  transition: background var(--t-fast);
  margin-top: var(--s-3);
}

.contact-form__submit:hover { background: var(--accent-deep); }

.contact-form__hint {
  font-size: var(--type-tiny);
  color: var(--ink-muted);
  margin-top: var(--s-3);
}

@media (max-width: 880px) {
  .contact__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .field__row { grid-template-columns: 1fr; }
  .contact-info__row { grid-template-columns: 1fr; gap: var(--s-1); }
}

.contact-map {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  background: var(--surface-stone);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 13, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  opacity: 0;
  transition: opacity 0.3s var(--ease-in-out);
}

.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  position: relative;
  max-width: min(90vw, 1600px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  background: var(--deep);
  display: block;
}

.lightbox__caption {
  margin-top: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: var(--type-small);
  color: var(--surface-stone);
  letter-spacing: 0;
  gap: var(--s-5);
}

.lightbox__caption-name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.lightbox__counter {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--type-tiny);
  color: var(--ink-soft);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-stone);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--surface);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}
