/* ══════════════════════════════════════════════════════════════
   Collazos Marketing — "Craft" design system (tile.pt-inspired)
   White, open, editorial. Bold lowercase grotesque + italic serif
   accents. One saturated green. Mediterranean by restraint.
══════════════════════════════════════════════════════════════ */

:root {
  --green:      #4DBF2A;
  --green-soft: rgba(77, 191, 42, 0.12);
  --ink:        #111110;
  --ink-2:      #6b6b68;
  --ink-3:      #a3a3a0;
  --line:       rgba(17, 17, 16, 0.12);
  --paper:      #FFFFFF;
  --black:      #0A0A0A;
  --display:    'Hanken Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --sans:       'Hanken Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --serif:      'Instrument Serif', Georgia, serif;
}

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

html { background: var(--paper); color: var(--ink); scroll-behavior: auto; }
body { font-family: var(--sans); background: var(--paper); overscroll-behavior: none; }

::selection { background: var(--green); color: #fff; }

/* ── Type primitives ───────────────────────────────────────── */
.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.h-section {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.em-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.em-green { color: var(--green); }

.body-copy {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 620px;
}

.section { position: relative; padding: 110px 5vw; background: var(--paper); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.kicker {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 56px;
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(77,191,42,0.35); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.btn-line:hover { color: var(--green); }

/* Entrance */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── Navigation ────────────────────────────────────────────── */
#nav-craft {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#nav-craft.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-craft-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-craft-logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.nav-craft-logo img { height: 46px; width: auto; display: block; transition: filter 0.35s ease; }
/* White logo art on transparent-over-video nav; ink once frosted */
#nav-craft:not(.scrolled) .nav-craft-logo img.logo-dark { display: none; }
#nav-craft:not(.scrolled) .nav-craft-logo img.logo-light { display: block; }
#nav-craft.scrolled .nav-craft-logo img.logo-dark { display: block; }
#nav-craft.scrolled .nav-craft-logo img.logo-light { display: none; }

.nav-craft-link {
  display: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-craft-link:hover { color: var(--green); }
#nav-craft.scrolled .nav-craft-link { color: var(--ink-2); }
#nav-craft.scrolled .nav-craft-link:hover { color: var(--ink); }
@media (min-width: 768px) { .nav-craft-link { display: inline-flex; } }

.nav-craft-cta {
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-craft-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(77,191,42,0.35); }

/* ── Hero (canvas engine overlay) ──────────────────────────── */
#hero { position: relative; height: 300vh; background: var(--black); }
#sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--black); }
#canvas { position: absolute; inset: 0; display: block; }

.vig { pointer-events: none; position: absolute; inset: 0; }
.vig-tb { background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 38%, rgba(0,0,0,0.68) 100%); }

#loader {
  position: absolute; inset: 0; z-index: 50;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--paper);
  transition: opacity 0.6s ease;
}
#loader-logo { height: 130px; width: auto; margin-bottom: 44px; }
#progress-track { width: min(60vw, 280px); height: 2px; background: rgba(17,17,16,0.1); overflow: hidden; }
#progress-fill { height: 100%; width: 0%; background: var(--green); transition: width 0.2s ease; }
#progress-pct { margin-top: 18px; color: var(--ink-3); font-size: 12px; letter-spacing: 0.3em; }

#content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
#copy-inner { max-width: 980px; margin: 0 auto; will-change: transform; }

#headline h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
  margin-bottom: 26px;
}
#headline .em-serif { font-weight: 400; color: var(--green); text-shadow: 0 2px 30px rgba(0,0,0,0.55); }

#sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto 34px;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}

#hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
#hero-btns .btn-ghost-w {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; border: 1.5px solid rgba(255,255,255,0.7);
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 9999px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
#hero-btns .btn-ghost-w:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

#scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
#scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--green)); }
#scroll-label { color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; }

#hero-fade { position: absolute; inset: 0; background: var(--paper); opacity: 0; pointer-events: none; z-index: 8; }

/* ── What we do rows ───────────────────────────────────────── */
#wwd { padding-top: 130px; }

.wwd-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 44px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.25s;
}
.wwd-row:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .wwd-row { grid-template-columns: 128px 34fr 42fr 18fr; align-items: center; } }
.wwd-row:hover { background: rgba(17,17,16,0.015); }

/* Inline motif art: calm at rest, tilts alive on row hover */
.wwd-art {
  width: 128px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.wwd-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.wwd-row:hover .wwd-art img { transform: scale(1.12) rotate(-3deg); }
@media (max-width: 899px) { .wwd-art { width: 104px; } }

.wwd-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.wwd-title .em-serif { font-size: 1.04em; }
.wwd-row:hover .wwd-title .em-serif { color: var(--green); }

.wwd-desc {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 560px;
}

.wwd-tags { display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
@media (min-width: 900px) { .wwd-tags { justify-content: flex-end; } }
.wwd-tag {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.wwd-row:hover .wwd-tag { border-color: rgba(77,191,42,0.5); }

/* ── Latest work (carousel shell) ──────────────────────────── */
#proof { background: var(--paper); position: relative; }

.proof-head {
  padding: 130px 5vw 56px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.proof-head .kicker { margin-bottom: 0; }

#proof-pin { position: relative; overflow: hidden; background: var(--black); }
.proof-track { display: flex; will-change: transform; }

.proof-card {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.proof-bg { position: absolute; inset: 0; }
.proof-bg video, .proof-bg img { width: 100%; height: 100%; object-fit: cover; }
.proof-bg .proof-fallback { position: absolute; inset: 0; }

.proof-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.proof-placeholder span {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 14px 22px;
}

.proof-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0.15) 100%);
}

.proof-content { position: relative; z-index: 1; padding: 0 5vw 84px; max-width: 1000px; }

.proof-client {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.proof-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
  max-width: 820px;
}

.proof-attr { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 34px; }

.proof-meta {
  display: flex; flex-wrap: wrap; gap: 12px 48px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 22px;
}
.proof-meta-item { min-width: 200px; }
.proof-meta-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.proof-meta-value { font-family: var(--sans); font-weight: 600; font-size: 14px; color: #fff; }

.proof-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 10px;
}
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background 0.3s; }
.proof-dot.active { background: var(--green); }

@media (max-width: 767px) {
  .proof-track { flex-direction: column; }
  .proof-card { flex-basis: auto; width: 100%; min-height: 92vh; }
  .proof-dots { display: none; }
}

/* ── Mission statement ─────────────────────────────────────── */
#mission { padding: 150px 5vw; }
.mission-text {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}
.mission-text .em-serif { color: var(--green); }

/* ── Approach (meet collazos) ──────────────────────────────── */
#approach { padding: 120px 5vw 130px; }

.approach-statement {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.7vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 1100px;
  margin-bottom: 90px;
}
.approach-statement .em-serif { font-size: 1.03em; }

.approach-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .approach-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }

.approach-item { border-top: 2px solid var(--green); padding-top: 24px; }
.approach-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.approach-body { font-family: var(--sans); font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* ── CTA / contact ─────────────────────────────────────────── */
#cta-craft { padding: 150px 5vw 60px; text-align: center; }
.cta-craft-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.6vw, 5.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 26px;
}
.cta-craft-h .em-serif { color: var(--green); }
.cta-craft-sub { font-family: var(--sans); font-size: 17px; color: var(--ink-2); max-width: 560px; margin: 0 auto 40px; line-height: 1.65; }
.cta-craft-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

#contact-form-section { padding: 60px 5vw 140px; background: var(--paper); }
.contact-form-inner { max-width: 720px; margin: 0 auto; }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } }
.contact-input, .contact-textarea {
  width: 100%;
  padding: 16px 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.contact-input::placeholder, .contact-textarea::placeholder { color: var(--ink-3); }
.contact-input:focus, .contact-textarea:focus { border-bottom-color: var(--green); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-form-legal { font-family: var(--sans); font-size: 12px; color: var(--ink-3); margin-top: 10px; }
.contact-form .btn-pill { border: 0; cursor: pointer; margin-top: 12px; }

/* ── Footer — shrink-into-card (kept) ──────────────────────── */
.footer-frame { background: var(--paper); }

footer {
  background: var(--black);
  padding: 88px 5vw 44px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transform: scale(1);
  transform-origin: bottom center;
}

.footer-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { height: 34px; width: auto; display: block; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--green);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.4;
}

.footer-col-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-family: var(--sans); font-size: 14.5px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--green); }

.footer-wordmark-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-top: clamp(28px, 4vw, 60px);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.footer-wordmark {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  font-size: 13.5vw;
  will-change: transform;
  transform-origin: center bottom;
}

.footer-legal {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: clamp(26px, 3.5vw, 64px) 24px 0;
}

/* ══════════════════════════════════════════════════════════════
   AWARD LAYER — cursor, marquee, reveals, previews, magnetics
══════════════════════════════════════════════════════════════ */

/* ── Custom cursor: green dot + trailing ring ── */
@media (hover: hover) and (pointer: fine) {
  #cur-dot, #cur-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
  }
  #cur-dot {
    width: 8px; height: 8px;
    background: var(--green);
    margin: -4px 0 0 -4px;
  }
  #cur-ring {
    width: 38px; height: 38px;
    margin: -19px 0 0 -19px;
    border: 1.5px solid rgba(77,191,42,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease,
                background 0.25s ease, border-color 0.25s ease;
  }
  #cur-ring .cur-label {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
  }
  #cur-ring.is-hover {
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-color: var(--green);
    background: rgba(77,191,42,0.12);
  }
  #cur-ring.is-view {
    width: 84px; height: 84px;
    margin: -42px 0 0 -42px;
    background: var(--green);
    border-color: var(--green);
  }
  #cur-ring.is-view .cur-label { opacity: 1; }
}

/* ── Velocity marquee band ── */
.craft-marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  white-space: nowrap;
}
.marq-track { display: inline-flex; width: max-content; will-change: transform; }
.marq-track span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 42px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  padding-right: 0.55em;
}
.marq-track span i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

/* ── Masked line reveals ── */
.rvl { clip-path: inset(0 0 100% 0); will-change: clip-path, transform; }

/* ── What-we-do row index + hover preview ── */
.wwd-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--green);
  vertical-align: super;
  margin-right: 10px;
}

/* ── Mission manifesto word-fill ── */
.mission-text .mw { color: #cfcfcb; transition: none; }
.mission-text .em-serif .mw, .mission-text .mw.mw-green { color: rgba(77,191,42,0.30); }

/* ── Approach rules draw in ── */
.approach-item { border-top: 0; position: relative; }
.approach-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
}
.approach-item { padding-top: 26px; }

/* ══════════════════════════════════════════════════════════════
   SUBPAGE LAYER — shared shells for about / services / work / legal
══════════════════════════════════════════════════════════════ */

.page-hero { padding: 190px 5vw 90px; background: var(--paper); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; }

.page-hero-eyebrow {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink-3);
  margin-bottom: 18px;
}

.page-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 1100px;
}
.page-hero-title .em-serif { font-weight: 400; }

.page-hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 640px;
}

/* ── Service blocks (anchored categories) ── */
.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 72px;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
@media (min-width: 960px) { .svc-block { grid-template-columns: 38fr 62fr; align-items: start; } }

.svc-block-head { position: sticky; top: 130px; }
@media (max-width: 959px) { .svc-block-head { position: static; } }

.svc-block-art {
  width: min(300px, 60%);
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.svc-block-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-block-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.svc-block-intro { font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 460px; }

.svc-detail { padding: 26px 0; border-top: 1px solid var(--line); }
.svc-detail:first-child { border-top: 0; padding-top: 0; }
.svc-detail h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.svc-detail h4 .em-serif { color: var(--green); font-size: 0.9em; margin-right: 8px; }
.svc-detail p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 620px; }

/* ── Work / case rows ── */
.case-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px 64px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  align-items: center;
}
@media (min-width: 960px) { .case-card { grid-template-columns: 55fr 45fr; } }

.case-card-media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
}
.case-card-media img, .case-card-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.case-card:hover .case-card-media img, .case-card:hover .case-card-media video { transform: scale(1.05); }
.case-card-media .case-soon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.case-card-tag {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.case-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.case-card:hover .case-card-title { color: var(--green); transition: color 0.25s; }
.case-card-body { font-family: var(--sans); font-size: 15.5px; line-height: 1.65; color: var(--ink-2); max-width: 520px; margin-bottom: 20px; }
.case-card-result {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.case-card-result::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ── About page ── */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px 88px;
  padding: 40px 0 0; align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 42fr 58fr; } }
.about-visual {
  aspect-ratio: 4/5;
  background: radial-gradient(120% 100% at 30% 0%, rgba(77,191,42,0.12) 0%, transparent 55%), var(--black);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual img { height: 55%; width: auto; opacity: 0.92; }
.about-copy p + p { margin-top: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; max-width: 560px; }
.about-stat-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.02em; color: var(--ink); line-height: 1;
}
.about-stat-num sup { color: var(--green); font-size: 0.5em; }
.about-stat-label { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; }

/* ── Legal prose ── */
.legal-prose { max-width: 760px; margin: 0 auto; padding: 20px 0 40px; }
.legal-prose h2 {
  font-family: var(--display); font-weight: 800; font-size: 21px;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink);
  margin: 44px 0 14px;
}
.legal-prose p, .legal-prose li { font-family: var(--sans); font-size: 15.5px; line-height: 1.7; color: var(--ink-2); }
.legal-prose ul { padding-left: 22px; margin: 12px 0; }
.legal-prose a { color: var(--green); font-weight: 600; text-decoration: none; }
.legal-note { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-3); margin-bottom: 8px; }

@media (prefers-reduced-motion: reduce) {
  footer { border-radius: 40px 40px 0 0; transform: scale(0.96); }
  .fade-up { opacity: 1; transform: none; }
  .rvl { clip-path: none; }
  .mission-text .mw { color: inherit; }
  .approach-rule { transform: scaleX(1); }
  #cur-dot, #cur-ring { display: none; }
  .marq-track { transform: none !important; }
}
