/* Augmaze — Light editorial sans-serif system */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Warm off-white earth palette, all chroma ≤ 0.07 */
  --bg:        oklch(0.985 0.006 85);
  --bg-2:      oklch(0.96 0.01 80);
  --surface:   oklch(0.99 0.004 85);
  --ink:       oklch(0.18 0.012 60);
  --ink-2:     oklch(0.32 0.012 60);
  --muted:     oklch(0.55 0.01 70);
  --line:      oklch(0.88 0.012 75);
  --line-2:    oklch(0.93 0.01 80);

  /* Muted earth accents — same chroma, varied hue */
  --clay:      oklch(0.58 0.07 45);   /* terra / sienna */
  --olive:     oklch(0.48 0.05 110);  /* deep olive */
  --moss:      oklch(0.42 0.05 140);  /* moss green */

  --accent:    var(--clay);

  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

@media (max-width: 720px) {
  body { cursor: auto; }
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9999;
  left: 0; top: 0;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: white;
  transition: opacity .2s ease, transform .08s linear;
}
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  transition: width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: white; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink-2);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.05;
}
h1 { font-size: clamp(48px, 8vw, 124px); font-weight: 400; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4.6vw, 64px); font-weight: 400; letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; }

p { color: var(--ink-2); }

a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(12px);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 22px; height: 22px;
  display: inline-block;
  position: relative;
}
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute; inset: 0;
  border: 1.5px solid var(--ink);
}
.logo-mark::before { transform: rotate(0deg); }
.logo-mark::after  { transform: rotate(45deg); border-color: var(--clay); }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-2);
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--clay);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--clay); border-color: var(--clay); color: white; transform: translateY(-1px); }
.btn .arrow { transition: transform .25s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 58px;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px var(--gutter) 40px;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s .28s;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .28s ease, transform .28s ease, visibility 0s;
  }
  .nav-links a:not(.btn) {
    display: flex;
    width: 100%;
    font-size: clamp(24px, 7vw, 32px);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn {
    margin-top: 32px;
    cursor: pointer;
    font-size: 16px;
  }
  .btn { cursor: pointer; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-meta .left { max-width: 320px; }
.hero-meta .right {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
  line-height: 1.8;
}
.hero h1 {
  font-size: clamp(56px, 11vw, 180px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-weight: 300;
}
.hero h1 .rotator {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
  vertical-align: baseline;
}
.hero h1 .rotator::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--clay);
  vertical-align: -0.05em;
  margin-left: 6px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
}
.hero-sub p {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.45;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: clamp(100px, 22vw, 160px); padding-bottom: 80px; }
  .hero-glyph { width: 320px; height: 320px; right: -80px; top: 60px; opacity: 0.3; }
}
@media (max-width: 540px) {
  .hero-glyph { display: none; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta .right { text-align: left; }
}

/* Hero ambient glyph (cursor-following) */
.hero-glyph {
  position: absolute;
  pointer-events: none;
  width: 520px; height: 520px;
  right: -120px; top: 80px;
  opacity: 0.5;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.hero-glyph svg { width: 100%; height: 100%; }
.hero > .container { position: relative; z-index: 1; }

/* ---------- Section base ---------- */
section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { max-width: 14ch; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform .9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 36px 56px;
  position: relative;
  transition: background .35s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.pillar:hover { background: var(--bg-2); }
.pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.pillar h3 { margin-bottom: 16px; }
.pillar p { font-size: 15px; line-height: 1.55; max-width: 32ch; color: var(--ink-2); }
.pillar .pillar-mark {
  position: absolute;
  top: 36px; right: 36px;
  width: 28px; height: 28px;
  color: var(--clay);
  opacity: .65;
  transition: transform .4s ease, opacity .3s ease;
}
.pillar:hover .pillar-mark { transform: rotate(45deg); opacity: 1; }

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services-list { border-top: 1px solid var(--line); }
.service {
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 80px;
  gap: 32px;
  align-items: center;
  cursor: none;
  position: relative;
  transition: padding .35s ease;
}
.service:hover { padding-left: 24px; padding-right: 24px; }
.service::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-2);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.service:hover::before { opacity: 1; }
.service .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.service h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.service h3 em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}
.service p { font-size: 15px; max-width: 50ch; }
.service .arrow-cell {
  justify-self: end;
  font-family: var(--font-mono);
  color: var(--muted);
  transition: transform .35s ease, color .35s ease;
}
.service:hover .arrow-cell { transform: translateX(8px); color: var(--clay); }

@media (max-width: 820px) {
  .service { grid-template-columns: 50px 1fr; gap: 14px; }
  .service p { grid-column: 2; }
  .service .arrow-cell { display: none; }
  .service:hover { padding-left: 0; padding-right: 0; }
}

/* ---------- About / Values ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lede {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}
.about-lede em { color: var(--clay); font-style: italic; }
.about-body p { font-size: 16px; margin-bottom: 16px; line-height: 1.65; }
.about-body p strong { color: var(--ink); font-weight: 600; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.mv-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--surface);
  transition: border-color .3s, transform .3s;
}
.mv-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.mv-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--clay);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mv-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}
.mv-card p { font-size: 14px; line-height: 1.6; }

@media (max-width: 820px) {
  .about-grid, .mv-grid { grid-template-columns: 1fr; gap: 32px; }
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 80px;
}
.value {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 28px;
  position: relative;
  background: var(--surface);
  transition: background .3s;
}
.value:hover { background: var(--bg-2); }
.value .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.value h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.value h4 .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.value p { font-size: 14px; line-height: 1.55; }

@media (max-width: 980px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values { grid-template-columns: 1fr; } }

/* ---------- Image placeholders ---------- */
.img-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--bg-2) 0px,
      var(--bg-2) 8px,
      var(--surface) 8px,
      var(--surface) 16px
    );
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}
.img-placeholder .ph-inner {
  position: absolute;
  inset: 16px;
  border: 1px dashed var(--muted);
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}
.img-placeholder .ph-tag {
  text-transform: uppercase;
  color: var(--muted);
  display: flex; justify-content: space-between;
}
.img-placeholder .ph-prompt {
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.img-placeholder .ph-prompt strong {
  color: var(--clay);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  height: 320px;
  margin-top: 80px;
}

/* ---------- Marquee ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--surface);
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink-2);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 64px; }
.ticker-track i {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--clay);
  border-radius: 50%;
  font-style: normal;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}
@media (max-width: 540px) {
  .ticker-track { font-size: 20px; gap: 40px; }
  .ticker-track span { gap: 40px; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-grid h2 { max-width: 12ch; }
.contact-info {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.contact-info .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-info .row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact-info .row .v { font-size: 16px; color: var(--ink); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; position: relative; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex; justify-content: space-between;
}
.field label .req { color: var(--clay); }
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-bottom-color: var(--clay);
}
.field .err {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--clay);
  letter-spacing: 0.06em;
  height: 14px;
  opacity: 0;
  transition: opacity .2s;
}
.field.invalid .err { opacity: 1; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-top: 8px;
  flex-wrap: wrap;
}
.form-actions .hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.form-success {
  border: 1px solid var(--moss);
  padding: 24px;
  background: color-mix(in oklch, var(--moss) 8%, var(--bg));
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: none;
}
.form-success.show { display: block; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .contact-info .row { grid-template-columns: 80px 1fr; }
  .form-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-top h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-top ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
.footer-top ul a { color: var(--ink-2); transition: color .2s; }
.footer-top ul a:hover { color: var(--clay); }
.footer-blurb {
  font-size: 14px; color: var(--muted); max-width: 50ch; line-height: 1.6;
  margin-top: 16px;
}
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-mega {
  font-family: var(--font-display);
  font-size: clamp(80px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 300;
  color: var(--ink);
  padding: 80px 0 40px;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.footer-mega em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-mega { padding: 48px 0 24px; }
}

/* ---------- Mini "case study" cards ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-card {
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  transition: border-color .3s, transform .3s;
}
.work-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.work-card .meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.work-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.work-card p { font-size: 14px; line-height: 1.55; }
.work-card .ph {
  height: 180px;
  margin: -24px -24px 0;
  border-bottom: 1px solid var(--line);
}
.work-img {
  margin: -24px -24px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  aspect-ratio: 16 / 9;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.work-card:hover .work-img img { transform: scale(1.03); }

@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card .ph { height: 140px; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0 0;
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat .num em { color: var(--clay); font-style: normal; }
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.step .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 12px;
}
.step h4 { font-size: 20px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14px; line-height: 1.55; }
@media (max-width: 820px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }

/* selection */
::selection { background: var(--clay); color: white; }
