/* =========================================================
   STEVE MORGAN — stvmrgn.com
   Black & gold. Oswald slab display. Scarce gold.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Source+Serif+4:ital,wght@0,400;1,300;1,400&family=Dancing+Script:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-panel: #111111;
  --bg-panel-2: #161616;
  --bg-raise: #1a1a1a;

  --ink: #f3efe4;
  --ink-dim: rgba(243, 239, 228, 0.84);
  --ink-quiet: rgba(243, 239, 228, 0.56);
  --ink-whisper: rgba(243, 239, 228, 0.32);

  --gold: #d4a24a;
  --gold-bright: #e8b75a;
  --gold-deep: #8c6a2c;

  --rule: rgba(243, 239, 228, 0.12);
  --rule-soft: rgba(243, 239, 228, 0.07);
  --rule-gold: rgba(212, 162, 74, 0.45);

  --display: "Oswald", "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --script: "Dancing Script", "Brush Script MT", cursive;

  --max: 1280px;
  --narrow: 820px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

main, header, footer, section, nav { position: relative; z-index: 2; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(56px, 10vw, 156px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.002em;
}
h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
}
h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.serif-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
}

p  { margin: 0 0 1.05em; }

.label, .eyebrow, .meta, .mono {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.label   { color: var(--ink-quiet); }
.eyebrow { color: var(--gold); }
.meta    { color: var(--ink-whisper); }

.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
}

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

/* ---------- Containers ---------- */
.wrap    { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--n { width: 100%; max-width: var(--narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Gold rule (section opener) ---------- */
.gold-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0 0 clamp(28px, 4vh, 48px);
  text-align: center;
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-gold);
  max-width: 80px;
}
.gold-rule span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule--left { justify-content: flex-start; }
.gold-rule--left::before { display: none; }
.gold-rule--left::after { max-width: 120px; }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule--soft { background: var(--rule-soft); }
.rule--gold { background: var(--rule-gold); height: 1px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__mark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.nav__mark .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  margin: 0 8px 3px;
  vertical-align: middle;
}
.nav__mark em {
  font-family: var(--body);
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: clamp(14px, 3vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__links a {
  color: var(--ink-dim);
  transition: color 0.3s var(--ease);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

@media (max-width: 820px) {
  .nav { padding: 16px 0; }
  .nav__mark { font-size: 17px; letter-spacing: 0.06em; }
  .nav__mark em { font-size: 10px; }
  .nav__links { gap: 18px; font-size: 11px; letter-spacing: 0.14em; }
}
@media (max-width: 560px) {
  .nav__row { gap: 10px; }
  .nav__mark em, .nav__mark .sep { display: none; }
  .nav__links { gap: 14px; font-size: 10px; letter-spacing: 0.1em; }
}

/* ---------- Hero (home) ---------- */
.hero {
  padding: clamp(60px, 10vh, 130px) 0 clamp(80px, 12vh, 160px);
  position: relative;
}
.hero__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(54px, 10vw, 144px);
  line-height: 0.9;
  letter-spacing: 0.002em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}
.hero__title .gold { color: var(--gold); }
.hero__title .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero__tagline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 28px 0 0;
}
.hero__tagline .gold { color: var(--gold); }

.hero__deck {
  margin-top: 30px;
  max-width: 58ch;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  font-weight: 400;
}

.hero__meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 48px);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  border-top: 1px solid var(--rule-soft);
  padding-top: 28px;
}
.hero__meta > div { min-width: 0; }
.hero__meta b {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-family: var(--display);
}
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; margin-top: 36px; padding-top: 22px; }
  .hero__meta b { font-size: 12px; }
}

/* ---------- Section ---------- */
.section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}
.section--panel {
  background: var(--bg-panel);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 8vh, 96px);
}
@media (max-width: 820px) {
  .section__head { grid-template-columns: 1fr; }
}
.section__count {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section__count::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section__head p {
  color: var(--ink);
  max-width: 52ch;
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
}

/* ---------- Stats row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.stat {
  padding: clamp(30px, 5vh, 52px) clamp(16px, 3vw, 32px);
  text-align: center;
  border-right: 1px solid var(--rule-soft);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.002em;
}
.stat__label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1.3;
}
.stat__label--lg {
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 0;
}
.stat__sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-quiet);
  margin-top: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--rule-soft); min-height: 180px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Work list ---------- */
.works {
  border-top: 1px solid var(--rule-soft);
}
.work {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 200px auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vh, 48px) 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
}
.work--notext { /* fallback for rows without a thumbnail */
  grid-template-columns: 96px minmax(0, 1fr) auto;
}
.work::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  background: linear-gradient(90deg, rgba(212, 162, 74, 0.08), rgba(212, 162, 74, 0.02) 55%, transparent 75%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.work:hover { padding-left: 14px; }
.work:hover::before { opacity: 1; }
.work__no {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.work__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--rule-soft);
  position: relative;
  justify-self: stretch;
}
.work__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.85);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.work:hover .work__thumb img {
  filter: saturate(1) brightness(1);
  transform: scale(1.02);
}
.work__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.004em;
  text-transform: uppercase;
  color: var(--ink);
}
.work__title .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
  font-size: 0.88em;
}
.work__meta {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink-quiet);
  text-transform: uppercase;
  display: flex;
  gap: 14px;
  align-items: center;
  white-space: nowrap;
}
.work__meta .arrow {
  width: 28px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.work__meta .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.work:hover .work__meta { color: var(--gold); }
.work:hover .work__meta .arrow { width: 44px; }

@media (max-width: 960px) {
  .work { grid-template-columns: 70px minmax(0, 1fr) 150px auto; gap: 18px; }
  .work--notext { grid-template-columns: 70px minmax(0, 1fr) auto; }
}

@media (max-width: 720px) {
  .work {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0 30px;
  }
  .work--notext { grid-template-columns: 1fr; }
  .work__no { font-size: 10px; letter-spacing: 0.22em; order: 1; }
  .work__thumb { order: 2; }
  .work__title { font-size: clamp(26px, 7vw, 34px); order: 3; }
  .work__meta { order: 4; justify-self: start; padding-top: 2px; font-size: 10px; letter-spacing: 0.18em; }
}

/* ---------- Case hero ---------- */
.case-hero {
  padding: clamp(60px, 10vh, 120px) 0 clamp(36px, 5vh, 64px);
}
.case-hero__eyebrow {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.case-hero__eyebrow > * {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.case-hero__eyebrow .tag { color: var(--gold); }
.case-hero__eyebrow .sep { width: 20px; height: 1px; background: var(--ink-whisper); display: inline-block; }
.case-hero__eyebrow .year { color: var(--ink-quiet); }

.case-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(52px, 8.5vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  margin: 0;
}
.case-hero__title .gold { color: var(--gold); }
.case-hero__title .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.01em;
}

.case-hero__deck {
  margin-top: 28px;
  max-width: 62ch;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  font-weight: 400;
}
.case-hero__deck em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

@media (max-width: 640px) {
  .case-hero__eyebrow { gap: 10px 14px; }
  .case-hero__eyebrow .sep { display: none; }
  .case-hero__eyebrow > * { font-size: 10px; letter-spacing: 0.18em; }
}

/* ---------- Video frame ---------- */
.case-feature {
  margin: clamp(24px, 4vh, 48px) 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--rule-soft);
  position: relative;
}
.case-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.case-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 60%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

.film {
  margin: clamp(36px, 6vh, 72px) 0;
  background: #000;
  position: relative;
  border: 1px solid var(--rule-soft);
}
.film__inner {
  position: relative;
  padding-top: 56.25%;
}
.film--21x9 .film__inner { padding-top: 42.86%; }
.film__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.film__caption {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink-quiet);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Case body blocks ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 5vh, 56px) 0;
  border-top: 1px solid var(--rule-soft);
}
.case-grid:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.case-grid__label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 8px;
}
.case-grid__body {
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink);
}
.case-grid__body p:last-child { margin-bottom: 0; }
.case-grid__body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.case-grid__body strong { font-weight: 500; color: var(--ink); }
@media (max-width: 720px) {
  .case-grid { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .case-grid__label { padding-top: 0; }
}

/* Pullquote */
.pull {
  margin: clamp(40px, 6vh, 80px) 0;
  padding: clamp(40px, 6vh, 72px) 0;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
  text-align: left;
}
.pull p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 30ch;
  color: var(--ink);
  margin: 0;
}
.pull p::before {
  content: "\201C";
  color: var(--gold);
  margin-right: 6px;
  font-style: normal;
}
.pull p::after {
  content: "\201D";
  color: var(--gold);
  margin-left: 2px;
  font-style: normal;
}
.pull .attr {
  margin-top: 20px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-quiet);
  text-transform: uppercase;
  font-style: normal;
}

.script {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 26px;
  margin: 28px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}
.script p { margin-bottom: 0.7em; }

.stack {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 1px;
  background: var(--bg-panel);
}

/* Next project nav */
.next-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(60px, 8vh, 100px) 0 clamp(32px, 5vh, 50px);
  border-top: 1px solid var(--rule-soft);
}
.next-up a {
  display: block;
  transition: transform 0.4s var(--ease);
}
.next-up .l { text-align: left; }
.next-up .r { text-align: right; }
.next-up .label { display: block; margin-bottom: 10px; }
.next-up .title {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.next-up a:hover .title { color: var(--gold); }
.next-up .r a:hover { transform: translateX(6px); }
.next-up .l a:hover { transform: translateX(-6px); }
@media (max-width: 640px) { .next-up { grid-template-columns: 1fr; gap: 24px; } .next-up .r { text-align: left; } }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.service {
  background: var(--bg);
  padding: clamp(28px, 4vh, 42px) clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.service__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.service__desc {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}
@media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }

/* ---------- Recognition list ---------- */
.awards {
  display: grid;
  gap: 0;
}
.award {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.award:last-child { border-bottom: 1px solid var(--rule-soft); }
.award__count {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.award__body h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ink);
}
.award__body p {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-dim);
  margin: 0;
}

/* ---------- Experience timeline ---------- */
.exp__item {
  padding: 22px 0 22px 30px;
  border-top: 1px solid var(--rule-soft);
  position: relative;
}
.exp__item:last-child { border-bottom: 1px solid var(--rule-soft); }
.exp__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  background: var(--bg);
  border-radius: 50%;
}
.exp__role {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.exp__meta {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 10px;
  font-weight: 500;
}
.exp__desc {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  max-width: 66ch;
}

/* ---------- Clients logos row ---------- */
.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  margin-top: 28px;
}
.client {
  background: var(--bg);
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.client:hover { color: var(--gold); }
@media (max-width: 820px) { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Craft page ---------- */
.craft-project {
  padding: clamp(56px, 8vh, 100px) 0;
  border-top: 1px solid var(--rule-soft);
}
.craft-project:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.craft-project__row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 720px) { .craft-project__row { grid-template-columns: 1fr; gap: 14px; } }
.craft-project__no {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding-top: 10px;
}
.craft-project__feature {
  margin: 0 0 clamp(24px, 3vh, 40px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--rule-soft);
  max-width: 820px;
}
.craft-project__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.craft-project__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0.003em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.craft-project__title .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
}
.craft-project__tag {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 28px;
}
.craft-project__body {
  max-width: 70ch;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}
.craft-project__body h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 8px;
}
.craft-project__body h3:first-child { margin-top: 0; }
.craft-project__body em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.headlines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 720px) { .headlines { grid-template-columns: 1fr; } }
.headlines figure {
  margin: 0;
  padding: 28px 24px;
  border: 1px solid var(--rule-soft);
  background: var(--bg-panel);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.headlines figure::before {
  content: "[ HEADLINE ]";
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ink-whisper);
}
.headlines figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  margin-top: auto;
}
.headlines figure .tag {
  font-family: var(--body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  padding: clamp(40px, 6vh, 80px) 0 clamp(50px, 8vh, 96px);
}
.about-hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--rule-soft);
}
.about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.94) contrast(1.02);
}
.about-hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 45%);
  pointer-events: none;
}
.about-hero__text { min-width: 0; }
@media (max-width: 820px) {
  .about-hero { grid-template-columns: 1fr; gap: 28px; padding: 24px 0 40px; }
  .about-hero__portrait { max-width: 320px; }
}

.about-lede {
  max-width: 24ch;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.003em;
  text-transform: uppercase;
  margin: 0 0 44px;
}
.about-lede .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold);
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.35fr;
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(36px, 6vh, 72px) 0;
  border-top: 1px solid var(--rule-soft);
}
@media (max-width: 820px) { .about-body { grid-template-columns: 1fr; gap: 18px; } }
.about-body__left h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.about-body__right {
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 64ch;
}
.about-body__right em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink); }

.currently {
  padding: clamp(28px, 4vh, 44px);
  border: 1px solid var(--rule-gold);
  background: rgba(212, 162, 74, 0.04);
  margin: 40px 0;
}
.currently .label { color: var(--gold); margin-bottom: 14px; display: block; }
.currently p {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
}
.currently a { color: var(--gold); border-bottom: 1px dotted var(--gold-deep); padding-bottom: 2px; transition: color 0.3s var(--ease); }
.currently a:hover { color: var(--gold-bright); }

.kv {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
}
.kv:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.kv dt {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  padding-top: 3px;
}
.kv dd { margin: 0; color: var(--ink); }
.kv dd strong { font-family: var(--display); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 14px; display: block; margin-bottom: 3px; }
@media (max-width: 640px) { .kv { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Contact ---------- */
.contact-hero {
  padding: clamp(70px, 14vh, 160px) 0 clamp(40px, 8vh, 90px);
  text-align: left;
}
.contact-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(72px, 14vw, 220px);
  letter-spacing: 0.002em;
  line-height: 0.9;
  text-transform: uppercase;
}
.contact-hero h1 .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

.contact-block {
  padding: clamp(32px, 5vh, 56px) 0;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.contact-block:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.contact-block h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.contact-block__body {
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink);
}
.contact-block__body a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-block__body a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-block__body .big {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.008em;
  text-transform: none;
  display: inline-block;
  color: var(--ink);
  border: none;
  padding: 0 0 6px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.35s var(--ease), background-size 0.4s var(--ease);
}
.contact-block__body .big:hover {
  color: var(--gold);
  background-size: 100% 2px;
}
@media (max-width: 720px) { .contact-block { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Closing signature panel ---------- */
.signature {
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--bg-panel);
  position: relative;
}
.signature__quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 34ch;
}
.signature__quote .gold { color: var(--gold); }
.signature__quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 2em;
  line-height: 0;
  color: var(--gold);
  font-style: italic;
  display: inline-block;
  vertical-align: -0.28em;
  margin-right: 0.12em;
}
.signature__mark {
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 80px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ---------- Footer ---------- */
.foot {
  padding: clamp(60px, 8vh, 100px) 0 36px;
  position: relative;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
@media (max-width: 720px) { .foot__grid { grid-template-columns: 1fr; gap: 28px; } }
.foot h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.foot p, .foot a {
  color: var(--ink-dim);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
}
.foot a { transition: color 0.3s var(--ease); }
.foot a:hover { color: var(--gold); }

.foot__tag {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 28px;
}
.foot__tag .gold { color: var(--gold); }

.foot__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-whisper);
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* ---------- Utilities ---------- */
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.spacer-lg { height: clamp(60px, 10vh, 120px); }
.spacer-md { height: clamp(40px, 6vh, 80px); }

.reveal {
  opacity: 0.4;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile density pass ----------
   Compresses vertical whitespace under 720px so the site doesn't feel
   like it's taking a breath between every block. */
@media (max-width: 720px) {
  .hero {
    padding: 48px 0 56px;
  }
  .section {
    padding: 56px 0;
  }
  .section__head {
    margin-bottom: 40px;
  }
  .case-hero {
    padding: 40px 0 24px;
  }
  .signature {
    padding: 64px 0;
  }
  .signature__quote { margin-bottom: 24px; }
  .foot {
    padding: 48px 0 28px;
  }
  .foot__tag { margin-bottom: 22px; }
  .foot__grid { margin-bottom: 32px; }
  .stats { /* compress stat row cells */
  }
  .stat {
    min-height: 150px;
    padding: 28px 20px;
  }
  .next-up {
    padding: 48px 0 24px;
  }
  .case-grid {
    padding: 22px 0;
  }
  .craft-project {
    padding: 48px 0;
  }
  .craft-project__body h3 { margin: 20px 0 6px; }
  .foot__row { flex-direction: column; gap: 8px; }
}
