/* ═══════════════════════════════════════
   Antti Taipale – Combined Stylesheet
   ═══════════════════════════════════════ */

/* ── Shared ── */
/* ── Shared styles for anttitaipale.fi ── */

:root {
  --bg:        oklch(0.07 0.008 240);
  --bg2:       oklch(0.10 0.008 240);
  --bg3:       oklch(0.13 0.008 240);
  --fg:        oklch(0.95 0.005 60);
  --fg-dim:    oklch(0.60 0.006 60);
  --fg-muted:  oklch(0.38 0.004 60);
  --accent:    oklch(0.65 0.14 195);
  --accent-dim:oklch(0.45 0.10 195);
  --accent-glow: oklch(0.65 0.14 195 / 0.12);
  --border:    oklch(0.15 0.01 240);
  --border2:   oklch(0.22 0.01 240);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-cta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent-dim);
  padding: 9px 20px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* PAGE HERO */
.page-hero {
  padding: 160px 80px 80px;
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.page-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.page-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 600px;
  font-weight: 300;
}

/* CONTENT AREA */
.content { max-width: 1280px; margin: 0 auto; }

/* SECTION */
.section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: oklch(0.72 0.14 195); }
.btn-ghost {
  display: inline-block;
  color: var(--fg-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--fg); border-color: var(--fg-dim); }

/* FOOTER */
footer {
  padding: 48px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg-dim); }
.footer-drag { font-size: 12px; color: var(--fg-muted); }
.footer-drag a { color: var(--accent); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.7s ease both 0.1s; }
.anim-2 { animation: fadeUp 0.7s ease both 0.25s; }
.anim-3 { animation: fadeUp 0.7s ease both 0.4s; }
.anim-4 { animation: fadeUp 0.7s ease both 0.55s; }


/* ── Homepage ── */

  :root {
    --bg: oklch(0.07 0.008 240);
    --bg2: oklch(0.10 0.008 240);
    --fg: oklch(0.95 0.005 60);
    --fg-dim: oklch(0.60 0.006 60);
    --accent: oklch(0.65 0.14 195);
    --accent-dim: oklch(0.45 0.10 195);
    --accent-glow: oklch(0.65 0.14 195 / 0.15);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, var(--bg) 60%, transparent);
  }
  .nav-logo {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--fg); }
  .nav-cta {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent-dim);
    padding: 9px 20px;
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
  }

  /* ══════════════════════════════
     VARIANT A – EDITORIAL (split)
  ══════════════════════════════ */
  .v-editorial { display: none; }
  .v-cinematic { display: none; }
  .v-type      { display: none; }

  body.variant-editorial .v-editorial { display: block; }
  body.variant-cinematic .v-cinematic { display: block; }
  body.variant-type      .v-type      { display: block; }

  /* ─ Editorial ─ */
  .editorial-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .editorial-img {
    position: relative;
    overflow: hidden;
  }
  .editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05);
  }
  .editorial-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, var(--bg) 100%);
  }
  .editorial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 72px 80px 64px;
  }
  .editorial-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
  }
  .editorial-h1 {
    font-family: var(--font-head);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .editorial-h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .editorial-tagline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--fg-dim);
    max-width: 440px;
    margin-bottom: 52px;
    font-weight: 300;
  }
  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: all 0.25s;
    width: fit-content;
  }
  .btn-primary:hover { background: oklch(0.72 0.14 195); }
  .btn-ghost {
    display: inline-block;
    color: var(--fg-dim);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid oklch(0.30 0.01 240);
    transition: all 0.2s;
    margin-left: 32px;
  }
  .btn-ghost:hover { color: var(--fg); border-color: var(--fg-dim); }
  .editorial-roles {
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid oklch(0.18 0.01 240);
    display: flex;
    gap: 32px;
  }
  .role-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: oklch(0.40 0.01 240);
  }

  /* ─ Cinematic ─ */
  .cinematic-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .cinematic-img {
    position: absolute;
    inset: 0;
  }
  .cinematic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% top;
    filter: contrast(1.1) brightness(0.75);
  }
  .cinematic-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, var(--bg) 0%, oklch(0.07 0.008 240 / 0.8) 40%, transparent 70%),
      linear-gradient(to right, var(--bg) 0%, transparent 50%);
  }
  .cinematic-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 100px;
    max-width: 760px;
  }
  .cinematic-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .cinematic-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
  }
  .cinematic-h1 {
    font-family: var(--font-head);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
  }
  .cinematic-h1 .line-accent {
    display: block;
    color: var(--accent);
    font-weight: 300;
    font-size: 0.6em;
    letter-spacing: 0.02em;
  }
  .cinematic-tagline {
    font-size: 18px;
    line-height: 1.65;
    color: oklch(0.80 0.005 60);
    max-width: 500px;
    margin-bottom: 52px;
    font-weight: 300;
  }
  .cinematic-btns {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .cinematic-scroll {
    position: absolute;
    right: 80px;
    bottom: 100px;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .cinematic-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--fg-dim), transparent);
  }

  /* ─ Type-forward ─ */
  .type-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 80px 80px;
    position: relative;
    overflow: hidden;
  }
  .type-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
  }
  .type-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.3) contrast(1.1);
    mix-blend-mode: luminosity;
  }
  .type-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
    z-index: 1;
  }
  .type-number {
    font-family: var(--font-head);
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: oklch(0.14 0.01 240);
    position: absolute;
    right: 30px;
    bottom: -20px;
    z-index: 0;
    user-select: none;
  }
  .type-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }
  .type-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 48px;
  }
  .type-h1 {
    font-family: var(--font-head);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }
  .type-h1 .name-first { display: block; }
  .type-h1 .name-last {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--fg);
  }
  .type-divider {
    width: 64px;
    height: 2px;
    background: var(--accent);
    margin: 48px 0;
  }
  .type-tagline {
    font-size: 17px;
    line-height: 1.75;
    color: var(--fg-dim);
    max-width: 520px;
    margin-bottom: 56px;
    font-weight: 300;
  }
  .type-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .type-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-dim);
    border: 1px solid oklch(0.22 0.01 240);
    padding: 7px 16px;
  }

  /* ══════════════════════════════
     SHARED SECTIONS
  ══════════════════════════════ */

  /* About strip */
  .about-strip {
    padding: 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid oklch(0.14 0.01 240);
  }
  .about-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
  }
  .about-h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .about-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fg-dim);
    font-weight: 300;
    margin-bottom: 36px;
  }
  .about-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .pillar {
    padding: 28px 32px;
    border: 1px solid oklch(0.16 0.01 240);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s;
  }
  .pillar::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s;
  }
  .pillar:hover { border-color: oklch(0.30 0.01 240); }
  .pillar:hover::before { transform: scaleY(1); }
  .pillar-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .pillar-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--fg-dim);
    font-weight: 300;
  }

  /* Services */
  .services {
    padding: 100px 80px;
    background: var(--bg2);
    border-top: 1px solid oklch(0.14 0.01 240);
  }
  .services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
  }
  .services-h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .services-sub {
    font-size: 14px;
    color: var(--fg-dim);
    max-width: 320px;
    text-align: right;
    line-height: 1.6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--bg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
  }
  .service-card:hover { background: oklch(0.09 0.01 240); }
  .service-num {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .service-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .service-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fg-dim);
    font-weight: 300;
    margin-bottom: 28px;
  }
  .service-link {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 14px; }
  .service-card.drag-card {
    border: 1px dashed oklch(0.22 0.01 240);
    background: transparent;
  }
  .drag-card .service-title { color: var(--fg-dim); }

  /* CTA section */
  .cta-section {
    padding: 140px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid oklch(0.14 0.01 240);
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-glow), transparent);
  }
  .cta-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    position: relative;
  }
  .cta-h2 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
  }
  .cta-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--fg-dim);
    max-width: 560px;
    margin: 0 auto 52px;
    font-weight: 300;
    position: relative;
  }
  .cta-btns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  /* Footer */
  footer {
    padding: 48px 80px;
    border-top: 1px solid oklch(0.14 0.01 240);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }
  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: oklch(0.35 0.01 240);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--fg-dim); }
  .footer-drag {
    font-size: 12px;
    color: oklch(0.35 0.01 240);
  }
  .footer-drag a {
    color: var(--accent);
    text-decoration: none;
  }

  /* ── TWEAKS PANEL ── */
  #tweaks-panel {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: oklch(0.11 0.01 240);
    border: 1px solid oklch(0.22 0.01 240);
    padding: 24px;
    width: 260px;
    font-family: var(--font-body);
  }
  #tweaks-panel h3 {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .tweak-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 10px;
    display: block;
  }
  .tweak-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .tweak-btn {
    background: transparent;
    border: 1px solid oklch(0.20 0.01 240);
    color: var(--fg-dim);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s;
    font-family: var(--font-body);
  }
  .tweak-btn:hover, .tweak-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
  }

  /* Entrance animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .anim-1 { animation: fadeUp 0.7s ease both 0.1s; }
  .anim-2 { animation: fadeUp 0.7s ease both 0.25s; }
  .anim-3 { animation: fadeUp 0.7s ease both 0.4s; }
  .anim-4 { animation: fadeUp 0.7s ease both 0.55s; }
  .anim-5 { animation: fadeUp 0.7s ease both 0.7s; }


/* ── About ── */

  .services-hero {
    padding: 160px 80px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid var(--border);
    align-items: end;
  }

  /* Main services list */
  .services-list {
    padding: 0 80px;
  }
  .service-item {
    display: grid;
    grid-template-columns: 80px 1fr 280px;
    gap: 48px;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    cursor: default;
    transition: background 0.2s;
  }
  .service-item:hover { background: oklch(0.085 0.008 240); margin: 0 -80px; padding-left: 80px; padding-right: 80px; }
  .service-item-num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    padding-top: 6px;
    letter-spacing: 0.1em;
  }
  .service-item-body {}
  .service-item-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .service-item-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fg-dim);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .service-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
    border: 1px solid var(--border2);
    padding: 5px 12px;
  }
  .service-item-aside {
    padding-top: 8px;
  }
  .service-aside-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 12px;
  }
  .service-aside-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .service-aside-list li {
    font-size: 14px;
    color: var(--fg-dim);
    font-weight: 300;
    padding-left: 16px;
    position: relative;
  }
  .service-aside-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
  }

  /* Drag section */
  .drag-section {
    margin: 80px;
    border: 1px solid var(--border2);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .drag-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  }
  .drag-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
  }
  .drag-h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
  }
  .drag-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--fg-dim);
    font-weight: 300;
    position: relative;
    margin-bottom: 36px;
  }
  .drag-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .drag-feature {
    padding: 20px 24px;
    background: var(--bg2);
    border-left: 2px solid var(--accent);
  }
  .drag-feature-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .drag-feature-body {
    font-size: 13px;
    color: var(--fg-dim);
    font-weight: 300;
    line-height: 1.6;
  }

  /* Quote */
  .services-quote {
    padding: 100px 80px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .services-quote blockquote {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    max-width: 800px;
    margin: 0 auto 24px;
  }
  .services-quote cite {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
    font-style: normal;
  }

  /* CTA */
  .services-cta {
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-glow), transparent);
  }
  .services-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
  }
  .services-cta p {
    font-size: 17px;
    color: var(--fg-dim);
    max-width: 520px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
  }
  .services-cta-btns {
    display: flex;
    gap: 28px;
    justify-content: center;
    position: relative;
  }


/* ── Work ── */

  .about-hero {
    padding: 160px 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    border-bottom: 1px solid var(--border);
  }
  .about-hero-text { padding-bottom: 80px; }
  .about-hero-img {
    position: relative;
    height: 560px;
    overflow: hidden;
    align-self: end;
  }
  .about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05);
    display: block;
  }
  .about-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  }

  /* Manifesto */
  .manifesto {
    padding: 100px 80px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
  }
  .manifesto-aside {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .manifesto-quote {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--fg);
    border-left: 2px solid var(--accent);
    padding-left: 24px;
    margin-top: 40px;
  }
  .manifesto-body p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--fg-dim);
    font-weight: 300;
    margin-bottom: 28px;
  }
  .manifesto-body p:last-child { margin-bottom: 0; }
  .manifesto-body strong {
    color: var(--fg);
    font-weight: 500;
  }

  /* Three roles */
  .roles {
    padding: 100px 80px;
    border-bottom: 1px solid var(--border);
  }
  .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .role-card {
    background: var(--bg2);
    padding: 48px 40px;
    position: relative;
  }
  .role-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .role-card:hover::before { transform: scaleX(1); }
  .role-num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    color: var(--border2);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
  }
  .role-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .role-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--fg-dim);
    font-weight: 300;
  }

  /* Values */
  .values {
    padding: 100px 80px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 56px;
  }
  .value-item { display: flex; gap: 28px; }
  .value-line {
    width: 2px;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
  }
  .value-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .value-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg-dim);
    font-weight: 300;
  }

  /* CV strip */
  .cv-strip {
    padding: 100px 80px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
  }
  .cv-entry {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .cv-entry:last-child { border-bottom: none; }
  .cv-year {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    padding-top: 3px;
  }
  .cv-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .cv-sub {
    font-size: 14px;
    color: var(--fg-dim);
    font-weight: 300;
  }

  /* CTA */
  .about-cta {
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-glow), transparent);
  }
  .about-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
  }
  .about-cta p {
    font-size: 17px;
    color: var(--fg-dim);
    max-width: 480px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
  }
  .about-cta-btns {
    display: flex;
    gap: 28px;
    justify-content: center;
    position: relative;
  }


/* ── Services ── */

  .services-hero {
    padding: 160px 80px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid var(--border);
    align-items: end;
  }

  /* Main services list */
  .services-list {
    padding: 0 80px;
  }
  .service-item {
    display: grid;
    grid-template-columns: 80px 1fr 280px;
    gap: 48px;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    cursor: default;
    transition: background 0.2s;
  }
  .service-item:hover { background: oklch(0.085 0.008 240); margin: 0 -80px; padding-left: 80px; padding-right: 80px; }
  .service-item-num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    padding-top: 6px;
    letter-spacing: 0.1em;
  }
  .service-item-body {}
  .service-item-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .service-item-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fg-dim);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .service-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
    border: 1px solid var(--border2);
    padding: 5px 12px;
  }
  .service-item-aside {
    padding-top: 8px;
  }
  .service-aside-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 12px;
  }
  .service-aside-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .service-aside-list li {
    font-size: 14px;
    color: var(--fg-dim);
    font-weight: 300;
    padding-left: 16px;
    position: relative;
  }
  .service-aside-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
  }

  /* Drag section */
  .drag-section {
    margin: 80px;
    border: 1px solid var(--border2);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .drag-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  }
  .drag-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
  }
  .drag-h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
  }
  .drag-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--fg-dim);
    font-weight: 300;
    position: relative;
    margin-bottom: 36px;
  }
  .drag-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .drag-feature {
    padding: 20px 24px;
    background: var(--bg2);
    border-left: 2px solid var(--accent);
  }
  .drag-feature-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .drag-feature-body {
    font-size: 13px;
    color: var(--fg-dim);
    font-weight: 300;
    line-height: 1.6;
  }

  /* Quote */
  .services-quote {
    padding: 100px 80px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .services-quote blockquote {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    max-width: 800px;
    margin: 0 auto 24px;
  }
  .services-quote cite {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
    font-style: normal;
  }

  /* CTA */
  .services-cta {
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-glow), transparent);
  }
  .services-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
  }
  .services-cta p {
    font-size: 17px;
    color: var(--fg-dim);
    max-width: 520px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
  }
  .services-cta-btns {
    display: flex;
    gap: 28px;
    justify-content: center;
    position: relative;
  }


/* ── Contact ── */

  .contact-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Left info panel */
  .contact-left {
    padding: 160px 72px 80px 80px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact-info { flex: 1; }
  .contact-h1 {
    font-family: var(--font-head);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
  }
  .contact-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--fg-dim);
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 64px;
  }
  .contact-details { display: flex; flex-direction: column; gap: 32px; }
  .contact-detail-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .contact-detail-value {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.2s;
  }
  a.contact-detail-value:hover { color: var(--accent); }

  .contact-socials {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .contact-socials-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 20px;
  }
  .social-links { display: flex; gap: 20px; }
  .social-link {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-dim);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .social-link:hover { color: var(--fg); border-bottom-color: var(--accent); }

  /* Right form panel */
  .contact-right {
    padding: 160px 80px 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .form-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
  }
  .contact-form { display: flex; flex-direction: column; gap: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 10px; }
  .form-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-muted);
  }
  .form-input, .form-select, .form-textarea {
    background: var(--bg2);
    border: 1px solid var(--border2);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    background: var(--bg3);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--fg-muted); }
  .form-select { cursor: pointer; }
  .form-select option { background: var(--bg2); }
  .form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

  .form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
  }
  .form-note {
    font-size: 13px;
    color: var(--fg-muted);
    font-weight: 300;
  }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: 60px 0;
  }
  .form-success-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 24px;
    color: var(--accent);
  }
  .form-success h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .form-success p {
    font-size: 16px;
    color: var(--fg-dim);
    font-weight: 300;
    line-height: 1.6;
  }

  /* Drag note */
  .drag-note {
    margin: 0 80px;
    padding: 40px 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .drag-note p {
    font-size: 15px;
    color: var(--fg-dim);
    font-weight: 300;
    line-height: 1.6;
  }
  .drag-note p strong { color: var(--fg); font-weight: 500; }
  .drag-note a {
    flex-shrink: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-dim);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: border-color 0.2s;
  }
  .drag-note a:hover { border-color: var(--accent); }



/* =========================================
   MOBILE NAV + RESPONSIVE PATCH
========================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--fg);
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
  display: contents;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, svg, iframe {
  max-width: 100%;
  height: auto;
}

* {
  min-width: 0;
}

@media (max-width: 1100px) {
  nav,
  .page-hero,
  .section,
  .services,
  .cta-section,
  footer,
  .services-hero,
  .about-hero,
  .manifesto,
  .roles,
  .values,
  .cv-strip,
  .about-cta,
  .services-cta,
  .services-quote,
  .work-hero,
  .work-tabs,
  .directing-grid,
  .writing-section,
  .research-section,
  .media-section,
  .contact-left,
  .contact-right,
  .services-list,
  .drag-note {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .editorial-hero,
  .about-strip,
  .services-hero,
  .about-hero,
  .work-hero-inner,
  .directing-grid,
  .research-section,
  .contact-layout,
  .drag-section,
  .manifesto,
  .cv-strip {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .services-grid,
  .roles-grid,
  .writing-categories,
  .media-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-item {
    grid-template-columns: 70px minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .service-item-aside {
    grid-column: 2 / -1;
    padding-top: 0 !important;
  }

  .production-item {
    grid-template-columns: 80px minmax(0, 1fr) !important;
    align-items: start !important;
  }

  .production-role {
    grid-column: 2;
    justify-self: start;
    margin-top: 10px;
  }

  .cv-entry,
  .form-row {
    grid-template-columns: 1fr !important;
  }

  .editorial-text,
  .contact-left,
  .contact-right {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .type-bg-img {
    width: 100% !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    min-height: 320px;
  }

  .type-number,
  .cinematic-scroll {
    display: none !important;
  }

  .manifesto-aside,
  .directing-aside {
    position: static !important;
    top: auto !important;
  }

  .work-tabs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .work-tab {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: 15px;
  }

  nav {
    padding: 14px 20px !important;
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 12px !important;
    align-items: center !important;
    background: rgba(17, 20, 26, 0.96) !important;
    backdrop-filter: blur(10px);
  }

  .nav-logo {
    font-size: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 4px;
  }

  body.nav-open .nav-menu {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 10px !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-cta {
    display: block;
    width: 100%;
    font-size: 12px;
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px 16px;
  }

  .page-hero,
  .section,
  .services,
  .cta-section,
  footer,
  .services-hero,
  .about-hero,
  .manifesto,
  .roles,
  .values,
  .cv-strip,
  .about-cta,
  .services-cta,
  .services-quote,
  .work-hero,
  .work-tabs,
  .directing-grid,
  .writing-section,
  .research-section,
  .media-section,
  .contact-left,
  .contact-right,
  .services-list,
  .drag-note {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .page-hero,
  .services-hero,
  .about-hero,
  .work-hero,
  .contact-left,
  .contact-right,
  .editorial-text,
  .type-hero {
    padding-top: 108px !important;
  }

  .page-hero,
  .section,
  .services,
  .cta-section,
  .services-quote,
  .roles,
  .values,
  .cv-strip,
  .writing-section,
  .research-section,
  .media-section,
  .about-cta,
  .services-cta {
    padding-bottom: 56px !important;
  }

  .editorial-hero,
  .about-strip,
  .services-hero,
  .about-hero,
  .work-hero-inner,
  .directing-grid,
  .research-section,
  .contact-layout,
  .drag-section,
  .manifesto,
  .cv-strip {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .services-grid,
  .roles-grid,
  .writing-categories,
  .media-grid,
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .page-h1,
  .editorial-h1,
  .cinematic-h1,
  .type-h1,
  .contact-h1 {
    font-size: clamp(32px, 10vw, 50px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 18px !important;
  }

  .page-lead,
  .editorial-tagline,
  .cinematic-tagline,
  .type-tagline,
  .contact-lead,
  .cta-body,
  .services-cta p,
  .about-cta p,
  .about-body,
  .drag-body,
  .manifesto-body p,
  .dissertation-body,
  .service-item-desc,
  .directing-method {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .editorial-text {
    padding: 108px 20px 40px !important;
  }

  .editorial-roles,
  .cta-btns,
  .services-cta-btns,
  .about-cta-btns,
  .form-submit-row,
  footer,
  .drag-note {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
  }

  .services-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
  }

  .services-sub {
    text-align: left !important;
    max-width: 100% !important;
  }

  .service-card,
  .role-card,
  .writing-cat,
  .dissertation-box {
    padding: 28px 22px !important;
  }

  .service-item {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 28px 0 !important;
  }

  .service-item:hover {
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: transparent !important;
  }

  .service-item-num,
  .service-item-aside {
    grid-column: auto !important;
  }

  .service-item-title,
  .drag-h2,
  .services-h2,
  .about-h2,
  .dissertation-title {
    font-size: clamp(24px, 7vw, 32px) !important;
  }

  .drag-section {
    margin: 20px !important;
    padding: 24px !important;
    gap: 20px !important;
  }

  .production-item,
  .cv-entry {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 20px 18px !important;
  }

  .production-title,
  .writing-cat-title,
  .role-title {
    font-size: 18px !important;
  }

  .work-tabs {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0 !important;
  }

  .work-tab {
    padding: 14px 16px !important;
    font-size: 12px !important;
    flex: 0 0 auto;
  }

  .contact-layout {
    min-height: auto !important;
  }

  .contact-left {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start !important;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important;
    padding: 14px 16px !important;
  }

  .drag-note {
    margin: 0 20px !important;
    padding: 20px !important;
  }

  .drag-note a {
    white-space: normal !important;
  }

  .about-hero-img,
  .editorial-img,
  .type-bg-img {
    min-height: 280px !important;
    height: auto !important;
  }

  .about-hero-img {
    height: 320px !important;
  }

  .editorial-img::after,
  .type-bg-img::before,
  .cinematic-scroll,
  .type-number {
    display: none !important;
  }

  .manifesto-quote {
    margin-top: 20px !important;
    padding-left: 16px !important;
    font-size: 18px !important;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 18px !important;
  }
}

@media (max-width: 420px) {
  .page-h1,
  .editorial-h1,
  .cinematic-h1,
  .type-h1,
  .contact-h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .service-card,
  .role-card,
  .writing-cat,
  .dissertation-box,
  .drag-section,
  .drag-note {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 12px !important;
    padding: 14px 18px !important;
  }
}
