/* V3 — Inner page styles: monks-inspired — spacious, editorial, minimal */

/* ───────── PAGE HERO ───────── */
.page-hero {
  position: relative;
  padding-top: 240px;
  padding-bottom: 120px;
  overflow: hidden;
  background: white;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 0.95;
  margin-top: 20px;
  max-width: 10ch;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
/* Orange full-screen hero variant (about page) */
.page-hero--orange {
  background: var(--mash-dusk-blue);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 160px;
}
.page-hero--orange h1 {
  color: white;
  max-width: 14ch;
}
.page-hero--orange h1 em {
  color: rgba(255, 255, 255, .4);
}
.page-hero--orange .eyebrow {
  color: rgba(255, 255, 255, .4);
}
.page-hero--orange .page-hero__lede {
  color: rgba(255, 255, 255, .5);
}
.page-hero__decor {
  position: absolute;
  right: -10%;
  top: -15%;
  width: clamp(600px, 65vw, 1000px);
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}
/* Nav logo filter on orange hero — make it dark */
.page-hero--orange ~ .nav .nav__logo,
body[data-page="about"] .nav__logo {
  filter: none;
}

.page-hero__lede {
  margin-top: 40px;
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 480px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───────── WORK FILTERS ───────── */
.work-filters { padding-top: 48px; padding-bottom: 24px; }
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.filter {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  transition: all .2s;
}
.filter span { font-size: 11px; color: var(--ink-soft); }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: white; border-color: var(--ink); }
.filter.active span { color: rgba(255,255,255,.7); }

/* ───────── WORK GRID ───────── */
.work-grid {
  padding-top: 40px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.card {
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: transform .5s var(--ease-out);
  border: 1px solid var(--rule);
}
.card:hover { transform: translateY(-3px); }
.card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-subtle);
}
.card__shape { display: none; }
.card__year {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,.35);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.card__body { padding: 24px; }
.card__client {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.card__body h3 {
  font-size: 20px;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.card__body p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.card__tags {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-top: 16px;
}
.card__tags span {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  color: var(--ink-soft);
}
.card__kpi {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 8px; align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.card__kpi strong { color: var(--ink); font-weight: 500; font-size: 14px; }

/* ───────── SERVICES OVERVIEW ───────── */
.svc-anchors {
  padding-top: 40px;
  padding-bottom: 0;
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  padding-bottom: 40px;
}
.svc-anchors a {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  transition: all .2s;
}
.svc-anchors a:hover { background: var(--ink); color: white; border-color: var(--ink); }

.svc-detail {
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.svc-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
}
.svc-detail__glyph { display: none; }
.svc-detail__num {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.svc-detail h2 {
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 20px;
}
.svc-detail h2 em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.svc-detail__lede {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}
.svc-detail__deliv {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.svc-detail__deliv li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-soft);
}
.svc-detail__deliv li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--ink-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-detail__more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: opacity .3s;
}
.svc-detail__more:hover { opacity: .75; }

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

/* ───────── ABOUT — INTRO ───────── */
.about-intro {
  padding-top: 140px;
  padding-bottom: 140px;
  background: var(--mash-dusk-blue);
  color: white;
  border-top: 1px solid rgba(255,255,255,.15);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.about-intro h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.about-intro h2 em { font-style: italic; font-weight: 400; }
.about-intro p { font-size: 16px; line-height: 1.7; max-width: 480px; opacity: .6; }
.about-intro p + p { margin-top: 20px; }
@media (max-width: 820px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ───────── ABOUT — VALUES ───────── */
.values {
  padding-top: 140px;
  padding-bottom: 140px;
  background: url(../assets/Projects/6.webp) center/cover no-repeat fixed;
  position: relative;
  color: white;
}
.values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 0;
}
.values > * { position: relative; z-index: 1; }
.values__head { margin-bottom: 72px; max-width: 600px; }
.values__head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  margin-top: 16px;
  color: white;
}
.values__head .eyebrow { color: rgba(255,255,255,.5); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.value {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: background .3s;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.value:hover { background: rgba(255,255,255,.15); }
.value__num { font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,.4); }
.value h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: white; }
.value p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.value__shape { display: none; }

/* ───────── ABOUT — TIMELINE (horizontal scroll-driven) ───────── */
.timeline-pin {
  position: relative;
  /* height set by JS */
}
.timeline {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  overflow: hidden;
}
.timeline__head {
  margin-bottom: 48px;
}
.timeline__head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  margin-top: 12px;
}
.timeline__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  position: relative;
  padding-top: 32px;
}
/* Horizontal connecting line across all cards — full scrollable width */
.timeline__track::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  min-width: calc(300px * 7 + 20px * 6);
  height: 1px;
  background: var(--rule);
}
.tl-card {
  flex: 0 0 300px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
/* Dot on the timeline line */
.tl-card::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mash-orange);
  border: 2px solid white;
  z-index: 1;
}
.tl-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--paper-subtle);
}
.tl-card__year {
  font-size: 12px;
  font-weight: 600;
  color: var(--mash-orange);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.tl-card h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tl-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───────── CONTACT ───────── */
.contact {
  padding-top: 200px;
  padding-bottom: 140px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact__lede h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  margin-top: 16px;
}
.contact__lede h1 em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.contact__lede p {
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 360px;
  line-height: 1.6;
}
.contact__details {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact__det {
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex; gap: 16px; align-items: start;
  background: white;
  transition: background .2s;
}
.contact__det:hover { background: var(--paper-subtle); }
.contact__det__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-subtle);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__det__icon svg { width: 16px; height: 16px; }
.contact__det h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact__det p { font-size: 15px; }
.contact__det a { border-bottom: 1px solid var(--rule); transition: border-color .2s; }
.contact__det a:hover { border-color: var(--ink); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ───────── FORM ───────── */
.form {
  padding: 36px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: white;
  display: flex; flex-direction: column; gap: 20px;
}
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  background: var(--paper-subtle);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  background: white;
}
.field textarea { min-height: 140px; resize: vertical; }
.field__error { font-size: 12px; color: #c53030; display: none; }
.field.invalid .field__error { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #c53030; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .2s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); color: white; border-color: var(--ink); }

.form__submit {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.form__note { font-size: 11px; color: var(--ink-soft); max-width: 240px; }

.form__success {
  display: none;
  padding: 40px;
  border-radius: 12px;
  background: var(--mash-dusk-blue);
  color: white;
  text-align: center;
}
.form__success h3 { font-size: 28px; margin-bottom: 8px; font-weight: 500; }
.form__success p { font-size: 15px; opacity: .6; }
.form.sent { display: none; }
.form__success.sent { display: block; }

/* ═══════════════ SERVICES OVERVIEW — NEW LAYOUT ═══════════════ */

/* Hero — full-screen dark */
.svc-overview-hero {
  min-height: 100vh;
  background: var(--mash-dusk-blue);
  color: white;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}
.svc-overview-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-top: 20px;
  max-width: 12ch;
}
.svc-overview-hero h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.35); }
.svc-overview-hero .eyebrow { color: rgba(255,255,255,.35); }
.svc-overview-hero__sub {
  margin-top: 36px;
  font-size: 17px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.6;
}

/* Card grid — 3x2 */
.svc-cards {
  padding-top: 120px;
  padding-bottom: 120px;
  background: white;
}
.svc-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 36px;
  border-radius: 12px;
  background: var(--paper-subtle);
  text-decoration: none;
  color: var(--ink);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  border-top: 3px solid var(--card-accent, var(--rule));
  position: relative;
  min-height: 300px;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.1);
}
.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-card__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.svc-card__num {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .06em;
}
.svc-card h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex-grow: 1;
}
.svc-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-top: auto;
  transition: opacity .2s;
}
.svc-card:hover .svc-card__link { opacity: .6; }

@media (max-width: 900px) {
  .svc-cards__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-cards__grid { grid-template-columns: 1fr; }
}

/* How we work — 2 column */
.svc-how {
  padding-top: 140px;
  padding-bottom: 140px;
  background: var(--paper-subtle);
}
.svc-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.svc-how__left h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 16px;
}
.svc-how__right p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.svc-how__right p + p { margin-top: 20px; }
@media (max-width: 820px) {
  .svc-how__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Stats row */
.svc-stats {
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
  border-top: 1px solid var(--rule);
}
.svc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.svc-stats__item {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-stats__item + .svc-stats__item {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.svc-stats__n {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.svc-stats__l {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 820px) {
  .svc-stats__grid { grid-template-columns: 1fr 1fr; }
  .svc-stats__item + .svc-stats__item { border-left: 0; padding-left: 0; }
  .svc-stats__item:nth-child(odd) + .svc-stats__item { border-left: 1px solid var(--rule); padding-left: 32px; }
}

/* ═══════════════ CONTACT — NEW LAYOUT ═══════════════ */
.contact-hero {
  min-height: 100vh;
  background: var(--mash-dusk-blue);
  color: white;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 120px;
}
.contact-hero h1 {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 16px;
}
.contact-hero .eyebrow { color: rgba(255,255,255,.35); }
.contact-hero__sub {
  margin-top: 28px;
  font-size: 17px;
  color: rgba(255,255,255,.45);
  max-width: 440px;
  line-height: 1.6;
}

.contact-form-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
}
.contact-form-section .form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--paper-subtle);
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-info__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mash-dusk-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
}
.contact-info__value {
  font-size: 15px;
  font-weight: 500;
}
.contact-info__value a {
  border-bottom: 1px solid var(--rule);
  transition: border-color .2s;
}
.contact-info__value a:hover { border-color: var(--ink); }
@media (max-width: 640px) {
  .contact-info__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════ WORK — NEW LAYOUT ═══════════════ */
.work-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}
.work-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.work-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.work-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 200px;
  padding-bottom: 80px;
}
.work-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 16px;
}
.work-hero .eyebrow { color: rgba(255,255,255,.4); }
.work-hero__sub {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.6;
}

/* Bento grid */
.work-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 140px;
}
.bento-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  color: white;
  transition: transform .4s var(--ease-out);
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  z-index: 1;
}
.bento-card__year {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  z-index: 2;
}
.bento-card__body {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
}
.bento-card__client {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: 4px;
  display: block;
}
.bento-card__body h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bento-card__tags {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.bento-card__tags span {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  color: rgba(255,255,255,.7);
}
@media (max-width: 900px) {
  .work-bento { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .work-bento { grid-template-columns: 1fr; }
}

/* ───────── CTA BANNER (inner pages) ───────── */
.cta-banner {
  background: var(--mash-dusk-blue);
  color: white;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__oval { display: none; }
.cta-banner .eyebrow { color: rgba(255,255,255,.35) !important; }
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  margin: 16px 0;
  letter-spacing: -0.03em;
}
.cta-banner p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.cta-banner .btn--primary { background: white; color: var(--ink); }
.cta-banner .btn--primary:hover { opacity: .85; }

/* ───────── TALENT PAGE ───────── */
.talent-hero {
  min-height: 100vh;
  background: var(--mash-dusk-blue);
  color: white;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.talent-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 16px;
}
.talent-hero h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.4); }
.talent-hero .eyebrow { color: rgba(255,255,255,.35); }
.talent-hero__sub {
  margin-top: 28px;
  font-size: 17px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.6;
}
.talent-form-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
}
.talent-form-section .form {
  margin: 0 auto;
}
.talent { padding-top: 200px; padding-bottom: 140px; }
.talent-section { margin-bottom: 48px; }
.talent-section__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.upload-zone {
  border: 1px dashed var(--rule);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-soft);
  transition: border-color .2s;
  cursor: pointer;
}
.upload-zone:hover { border-color: var(--ink); }
.upload-zone__icon { width: 36px; height: 36px; margin: 0 auto 10px; }
.upload-zone__label { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.upload-zone__hint { font-size: 12px; }
.upload-zone__file {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 8px 14px;
  background: var(--paper-subtle);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
}
.upload-zone__file svg { width: 14px; height: 14px; }
.upload-zone__remove {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  cursor: pointer;
}

.nda-block {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px;
  background: white;
}
.nda-block__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.nda-block__head svg { width: 20px; height: 20px; color: var(--ink); flex-shrink: 0; }
.nda-block__head h3 { font-size: var(--fs-h3); font-weight: 500; }
.nda-block__intro { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.nda-text {
  max-height: 200px; overflow-y: auto;
  padding: 20px;
  background: var(--paper-subtle);
  border: none;
  border-radius: 8px;
  font-size: 13px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.nda-text h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.nda-text p { margin-bottom: 12px; }
.nda-sign-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }

.checkbox-field { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--ink);
  flex-shrink: 0;
}
.checkbox-field span { font-size: 13px; line-height: 1.4; }

.field--signature input {
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 18px;
  font-style: italic;
  padding: 6px 0;
}
.field--signature input:focus { border-color: var(--ink); background: transparent; outline: none; }

@media (max-width: 720px) {
  .nda-sign-row { grid-template-columns: 1fr; }
  .nda-block { padding: 24px; }
}
