:root {
  --bg: #141823;
  --ink: #1F242F;
  --ink-2: #282D3A;
  --paper: #EEECE6;
  --paper-dim: #C8C5BC;
  --paper-mute: #8E8B82;
  --hair: rgba(238, 236, 230, 0.12);
  --hair-strong: rgba(238, 236, 230, 0.2);
  --accent: oklch(0.84 0.1 75);
  --accent-dim: oklch(0.84 0.1 75 / 0.55);
  --accent-cool: oklch(0.76 0.06 230);

  --f-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-serif: "Newsreader", Georgia, serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --mx: clamp(24px, 5vw, 88px);
  --gap: clamp(20px, 3vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--f-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.003em;
}
body {
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(180, 200, 230, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 30%, oklch(0.84 0.1 75 / 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(180, 200, 230, 0.04), transparent 60%),
    linear-gradient(to bottom, #141823, #0F131B);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ============ TYPE ============ */
.mono {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.mono.accent { color: var(--accent); }
.mono.paper { color: var(--paper-dim); }

.display {
  font-family: var(--f-serif);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--paper);
}
.display em { font-style: italic; font-weight: 300; color: var(--paper-dim); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--paper-mute);
  display: inline-block;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px var(--mx);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(20, 24, 35, 0.6);
  border-bottom: 1px solid var(--hair);
  transition: background 0.3s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-brand-mark {
  width: 24px; height: 24px;
  position: relative;
}
.nav-brand-name {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-left: 2px;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--paper-dim);
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--paper); }
.nav-link.active { color: var(--paper); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
}
.nav-cta {
  margin-left: 14px;
  padding: 9px 16px;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--paper);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { border-color: var(--paper-dim); background: rgba(232,230,225,0.03); }
.nav-cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
}

/* ============ LAYOUT ============ */
main { padding-top: 0; }
.section { padding: clamp(80px, 10vw, 140px) var(--mx); position: relative; }
.section-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-index {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-top: 6px;
  border-top: 1px solid var(--hair-strong);
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-kicker {
  font-size: 15px;
  color: var(--paper-dim);
  max-width: 56ch;
  margin-top: 20px;
  line-height: 1.6;
}

/* ---- Centered section header variant ---- */
.section-head-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(56px, 6.5vw, 88px);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232,230,225,0.72);
  margin-bottom: 28px;
}
.section-eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-head-centered-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 20ch;
}
.section-head-centered-sub {
  font-size: 16px;
  color: var(--paper-dim);
  max-width: 62ch;
  margin-top: 24px;
  line-height: 1.65;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px var(--mx) 28px;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-logo {
  position: absolute;
  top: clamp(64px, 7vw, 96px);
  left: var(--mx);
  z-index: 3;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hair) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hair) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-self: end;
}
.hero-headline {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 4.8vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.024em;
  max-width: 16ch;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--paper-dim);
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  margin-top: 48px;
}
.hero-meta > div > .mono { margin-bottom: 10px; display: block; }
.hero-meta-text { color: var(--paper-dim); font-size: 14px; line-height: 1.55; max-width: 36ch; }
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--paper);
  color: var(--bg);
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--hair-strong);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--paper-dim); background: rgba(232,230,225,0.02); }
.btn-arrow { font-family: var(--f-mono); font-size: 14px; }

/* ============ HERO MEDIA PLACEHOLDER ============ */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 40%, transparent 60%, rgba(20,24,35,0.5) 100%);
  pointer-events: none;
}

/* ============ MEDIA PLACEHOLDER ============ */
.media-slot {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--hair);
  overflow: hidden;
  border-radius: 2px;
}
.media-slot.media-slot-filled {
  background: transparent;
  border: 0;
  border-radius: 0;
}
.media-slot.media-slot-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.media-slot-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,230,225,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,230,225,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.media-slot-label {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 10px; align-items: center;
}
.media-slot-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.media-slot-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.media-slot-dims {
  position: absolute;
  bottom: 16px; right: 16px;
}
.media-slot-spec {
  position: absolute;
  top: 16px; right: 16px;
  text-align: right;
}
.media-slot-spec .mono { display: block; line-height: 1.8; }

/* ============ CREDIBILITY STRIP ============ */
.cred {
  padding: 32px var(--mx);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--paper-dim);
}
.cred-item-tick {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ============ SERVICES GRID ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  padding: 44px 40px 40px;
  background: linear-gradient(180deg, rgba(232,230,225,0.025), rgba(232,230,225,0.008));
  border: 1px solid var(--hair);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 310px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.svc-card:hover {
  background: linear-gradient(180deg, rgba(232,230,225,0.045), rgba(232,230,225,0.015));
  border-color: rgba(232,230,225,0.22);
  transform: translateY(-2px);
}
.svc-card-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-accent { transform: scaleY(1); }

.svc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-card-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--paper-mute);
  letter-spacing: 0.14em;
}
.svc-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 9px;
  border: 1px solid rgba(232,230,225,0.18);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: rgba(232,230,225,0.75);
  text-transform: uppercase;
}
.svc-card-pill-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}
.svc-card-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 18ch;
  margin-top: 4px;
  color: rgba(232,230,225,0.95);
}
.svc-card-desc {
  font-size: 15.5px;
  color: var(--paper-dim);
  line-height: 1.62;
  margin-top: auto;
}
.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  transition: color 0.3s ease;
}
.svc-card:hover .svc-card-cta { color: var(--accent); }
.svc-card-cta-arrow {
  font-family: var(--f-mono);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-card-cta-arrow { transform: translateX(3px); }

/* legacy arrow (unused now, keep rule harmless) */
.svc-arrow {
  position: absolute;
  top: 32px; right: 28px;
  font-family: var(--f-mono);
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s;
}

/* ============ FEATURED WORK ============ */
.work-featured {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.work-row.single { grid-template-columns: 1fr; }
.work-row.wide-left { grid-template-columns: 1.6fr 1fr; }
.work-row.wide-right { grid-template-columns: 1fr 1.6fr; }
.work-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}
.work-card.tall { aspect-ratio: 4 / 5; }
.work-card.wide { aspect-ratio: 21 / 9; }
.work-card-media {
  position: absolute; inset: 0;
  background: var(--ink);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover .work-card-media { transform: scale(1.02); }
.work-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 2;
}
.work-card-meta { display: flex; flex-direction: column; gap: 6px; }
.work-card-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.work-card-corner {
  position: absolute;
  top: 18px; right: 20px;
  z-index: 2;
}

/* ============ PROCESS ============ */
.proc-list {
  border-top: 1px solid var(--hair-strong);
}
.proc-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 180px;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
  transition: background 0.3s, padding-left 0.3s;
}
.proc-row:hover {
  background: rgba(232,230,225,0.012);
  padding-left: 12px;
}
.proc-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--paper-mute);
  letter-spacing: 0.12em;
  padding-top: 4px;
}
.proc-name {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.proc-desc {
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.65;
  max-width: 52ch;
}
.proc-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  padding-top: 6px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--hair-strong);
  padding: 48px var(--mx) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 50ch;
}
.footer-tagline {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.footer-col-title {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--paper-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13.5px; color: var(--paper-dim); transition: color 0.2s; }
.footer-col li a:hover { color: var(--paper); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--paper-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ PAGE HEADERS ============ */
.page-head {
  padding: 160px var(--mx) 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.page-head-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.page-head-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.page-head-title em { font-style: italic; color: var(--paper-dim); font-weight: 300; }
.page-head-sub {
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 50ch;
  padding-bottom: 8px;
}
.page-head-meta {
  position: absolute;
  top: 110px;
  left: var(--mx);
  display: flex;
  gap: 32px;
  z-index: 2;
}

/* ============ SERVICES PAGE ============ */
.svc-long {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 48px;
  padding: 80px 0;
  border-top: 1px solid var(--hair);
}
.svc-long:first-of-type { border-top: 1px solid var(--hair-strong); }
.svc-long-index {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--paper-mute);
  letter-spacing: 0.14em;
}
.svc-long-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.svc-long-body { color: var(--paper-dim); font-size: 15px; line-height: 1.7; }
.svc-long-body p + p { margin-top: 16px; }
.svc-long-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid var(--hair);
}
.svc-long-deliverables li {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--paper-dim);
}
.svc-long-deliverables .mono { min-width: 50px; }
.svc-long-media {
  aspect-ratio: 4 / 3;
}

/* ============ WORK PAGE ============ */
.work-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.work-filter {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  border: 1px solid var(--hair);
  border-radius: 2px;
  transition: all 0.2s;
}
.work-filter:hover { color: var(--paper-dim); border-color: var(--hair-strong); }
.work-filter.active { color: var(--bg); background: var(--paper); border-color: var(--paper); }

.work-index {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  margin-bottom: 60px;
}
.work-index-row {
  background: var(--bg);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 80px 1fr 220px 160px 60px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.work-index-row:hover { background: rgba(232,230,225,0.015); }
.work-index-row:hover .work-index-chev { color: var(--accent); transform: translateX(4px); }
.work-index-id { font-family: var(--f-mono); font-size: 11px; color: var(--paper-mute); letter-spacing: 0.1em; }
.work-index-title { font-family: var(--f-serif); font-size: 20px; font-weight: 300; letter-spacing: -0.01em; }
.work-index-chev { font-family: var(--f-mono); color: var(--paper-mute); transition: all 0.3s; text-align: right; }

/* ============ INDUSTRIES ============ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair-strong);
}
.ind-card {
  background: var(--bg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  min-height: 280px;
  transition: background 0.3s;
}
.ind-card:hover { background: rgba(232,230,225,0.015); }
.ind-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--paper-mute);
  letter-spacing: 0.14em;
  padding-top: 4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  height: fit-content;
}
.ind-body { display: flex; flex-direction: column; gap: 18px; }
.ind-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.ind-desc { color: var(--paper-dim); font-size: 14px; line-height: 1.65; }
.ind-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.ind-role {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid var(--hair-strong);
  color: var(--paper-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 120px var(--mx);
  min-height: 80vh;
  position: relative;
}
.contact-side { display: flex; flex-direction: column; gap: 32px; }
.contact-aside {
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-aside-row { display: flex; flex-direction: column; gap: 4px; }
.contact-aside-val { font-size: 14px; color: var(--paper); }
.contact-note {
  font-size: 12.5px;
  color: var(--paper-mute);
  line-height: 1.6;
  font-style: italic;
  max-width: 40ch;
}
.form {
  display: grid;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.field label .req { color: var(--accent); margin-left: 4px; }
.input, .textarea, .select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-strong);
  padding: 10px 0 12px;
  color: var(--paper);
  font-size: 15px;
  font-family: var(--f-sans);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.input:focus, .textarea:focus, .select:focus { border-bottom-color: var(--accent); }
.textarea { resize: vertical; min-height: 90px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236E6B64' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.select option { background: var(--ink); color: var(--paper); }
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.form-privacy { font-size: 12px; color: var(--paper-mute); max-width: 36ch; line-height: 1.6; }

.contact-sent {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============ CTA BANNER ============ */
.cta-band {
  padding: clamp(80px, 10vw, 140px) var(--mx);
  border-top: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.cta-band-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 20ch;
}

/* ============ HEADLINE TWEAK ============ */
.hl-alt-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: var(--ink);
  border: 1px solid var(--hair-strong);
  padding: 18px 20px;
  max-width: 320px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.hl-alt-panel.open { display: flex; }
.hl-alt-title {
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hl-alt-opt {
  padding: 8px 10px;
  border: 1px solid var(--hair);
  color: var(--paper-dim);
  text-align: left;
  font-family: var(--f-serif);
  font-size: 13px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s;
}
.hl-alt-opt:hover { border-color: var(--hair-strong); color: var(--paper); }
.hl-alt-opt.active { border-color: var(--accent); color: var(--paper); background: rgba(232,230,225,0.02); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .section-header { grid-template-columns: 1fr; gap: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .work-row, .work-row.wide-left, .work-row.wide-right { grid-template-columns: 1fr; }
  .cred { grid-template-columns: 1fr; gap: 20px; padding: 28px var(--mx); }
  .proc-row { grid-template-columns: 50px 1fr; gap: 20px; }
  .proc-row .proc-desc, .proc-row .proc-tags { grid-column: 2 / -1; }
  .footer { grid-template-columns: 1fr 1fr; }
  .page-head-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-long { grid-template-columns: 1fr; gap: 24px; padding: 60px 0; }
  .ind-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; padding: 100px var(--mx) 80px; }
  .form-row { grid-template-columns: 1fr; }
  .work-index-row { grid-template-columns: 60px 1fr 60px; }
  .work-index-row > :nth-child(3), .work-index-row > :nth-child(4) { display: none; }
  .cta-band-inner { grid-template-columns: 1fr; }
}

/* ============ FADE IN ON LOAD ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.fade-in-2 { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both; }
.fade-in-3 { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both; }
.fade-in-4 { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.24s both; }
