/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --bg:          oklch(0.97 0.004 85);
  --surface:     oklch(0.99 0.002 85);
  --ink:         oklch(0.12 0.002 255);
  --ink-muted:   oklch(0.38 0.008 255);
  --ink-light:   oklch(0.52 0.006 255);
  --primary:     oklch(0.46 0.215 258);
  --primary-dim: oklch(0.46 0.215 258 / 0.07);
  --border:      oklch(0.88 0.004 255);
  --border-soft: oklch(0.92 0.003 255);

  --font:        'Inter', system-ui, -apple-system, sans-serif;

  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --grid-line:   oklch(0.10 0.002 255 / 0.020);
  --grid-size:   64px;

  --z-nav:       100;
  --z-dots:      50;
  --z-badge:     10;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1vw + 0.7rem, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.8em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s var(--ease-out),
              color 0.18s var(--ease-out),
              border-color 0.18s var(--ease-out),
              transform 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: oklch(0.40 0.215 258);
  border-color: oklch(0.40 0.215 258);
  box-shadow: 0 4px 16px oklch(0.46 0.215 258 / 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: oklch(0.94 0.003 255);
  border-color: oklch(0.80 0.005 255);
}

.btn-nav {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  font-size: 0.875rem;
  padding: 0.65em 1.25em;
}
.btn-nav:hover { background: oklch(0.22 0.002 255); border-color: oklch(0.22 0.002 255); }

.btn-white {
  background: oklch(0.97 0.004 85);
  color: oklch(0.07 0.002 255);
  border-color: oklch(0.97 0.004 85);
}
.btn-white:hover { background: oklch(0.92 0.004 85); }

.btn-ghost-white {
  background: transparent;
  color: oklch(0.72 0.008 255);
  border-color: oklch(0.22 0.005 255);
}
.btn-ghost-white:hover {
  border-color: var(--primary);
  color: oklch(0.97 0.004 85);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 60px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.97 0.004 85 / 0.88);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom-color: var(--border-soft);
}
.nav-logo {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  list-style: none;
  margin-inline-start: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav .btn-nav { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-inline-start: auto;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─────────────────────────────────────────
   SIDE DOTS
───────────────────────────────────────── */
.side-dots {
  position: fixed;
  right: clamp(0.875rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-dots);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0; margin: 0;
}
.side-dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(0.68 0.006 255 / 0.40);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  outline: none;
}
.side-dot:hover { background: oklch(0.68 0.006 255 / 0.75); }
.side-dot.active { background: var(--primary); transform: scale(1.55); }

/* ─────────────────────────────────────────
   SECTION LABEL / HEADER
───────────────────────────────────────── */
.section-header { margin-block-end: clamp(2rem, 4vw, 3.5rem); }
.section-header h2 { font-size: clamp(1.625rem, 3vw + 0.75rem, 2.5rem); margin-block-end: 0.4em; }
.section-sub { font-size: 1.0625rem; color: var(--ink-muted); max-width: 55ch; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-block-end: 0.9rem;
}

/* ─────────────────────────────────────────
   HERO ANIMATIONS
───────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: none; }
}

/* Direct animations — backwards fill keeps elements hidden during delay */
.hero-label {
  animation: heroFadeUp 0.7s var(--ease-out) 0.08s backwards;
}
.hero-hl-line:nth-child(1) {
  animation: heroSlideIn 0.85s var(--ease-out) 0.20s backwards;
}
.hero-hl-line:nth-child(2) {
  animation: heroSlideIn 0.85s var(--ease-out) 0.34s backwards;
}
.hero-sub {
  animation: heroFadeUp 0.7s var(--ease-out) 0.46s backwards;
}
.hero-ctas {
  animation: heroFadeUp 0.7s var(--ease-out) 0.56s backwards;
}
.hero-micro {
  animation: heroFadeUp 0.65s var(--ease-out) 0.64s backwards;
}
.portrait-card {
  animation: heroFadeUp 0.9s var(--ease-out) 0.24s backwards;
}

/* ─────────────────────────────────────────
   PAGE CANVAS — continuous hero + work grid
───────────────────────────────────────── */
.page-canvas {
  position: relative;
  background: var(--bg);
}
.page-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 82%,
    transparent 100%
  );
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block-start: 60px;
  position: relative;
}

.hero .container {
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}
.work .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr min(38%, 360px);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.hero-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw + 0.5rem, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--ink);
}
.hero-hl-line { display: block; }
.hero-headline em { font-style: italic; color: var(--primary); }

.hero-sub {
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.25rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 0.25rem;
}

.hero-micro {
  font-size: 0.8125rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* Portrait */
.hero-visual { display: flex; justify-content: flex-end; }

.portrait-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 24px oklch(0.10 0.002 255 / 0.06);
  width: 100%;
  transition: box-shadow 0.45s var(--ease-out);
}
.portrait-card:hover {
  box-shadow: 0 8px 32px oklch(0.10 0.002 255 / 0.11);
}
.portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.portrait-card:hover .portrait-img { transform: scale(1.04); }

.portrait-caption {
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1.125rem;
  border-top: 1px solid var(--border-soft);
  gap: 0.15rem;
}
.portrait-caption strong { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.portrait-caption span   { font-size: 0.75rem;  color: var(--ink-light); }

/* ─────────────────────────────────────────
   WORK
───────────────────────────────────────── */
.work {
  background: transparent;
}

.work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: clamp(2rem, 4vw, 3.5rem);
  padding-block-end: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.work-header h2 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.work-header-note {
  font-size: 0.8125rem;
  color: var(--ink-light);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Transparent cards — image does the heavy lifting */
.work-card { background: transparent; }

.work-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: oklch(0.91 0.003 255);
}
.work-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}
.work-card:hover .work-img { transform: scale(1.032); }

.work-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.92 0.003 85);
  background: oklch(0.08 0.003 260 / 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.33em 0.8em;
  border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 0.12);
}

.work-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-block-end: 0.3rem;
}

.work-tags-inline {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.015em;
  line-height: 1.5;
}

/* ── Project board — three-column ── */
.work-board {
  display: grid;
  grid-template-columns: 0.88fr 1.82fr 0.88fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}

.work-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.work-col--left  { margin-block-start: clamp(2.5rem, 5vw, 5rem); }
.work-col--right { margin-block-start: clamp(1rem, 2vw, 2rem); }

/* Aspect ratios — center landscape, sides square */
.work-col--featured .work-img-wrap { aspect-ratio: 4 / 3; }
.work-col--side .work-img-wrap     { aspect-ratio: 1 / 1; }

/* Caption area below each image */
.work-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-block-start: 0.15rem;
}
.work-col--featured .work-caption { gap: 0.45rem; }

.work-col--featured h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.35rem, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.work-col--side h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.work-sub {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.work-desc {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 42ch;
  margin-block-start: 0.1rem;
}
.work-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
  white-space: nowrap;
  margin-block-start: 0.2rem;
}
.work-view-link:hover { color: var(--ink); }

.work-note {
  font-size: 0.8125rem;
  color: var(--ink-light);
  text-align: center;
  padding-block-start: clamp(1.5rem, 3vw, 2rem);
}

/* ─────────────────────────────────────────
   AI WORKSHOPS
───────────────────────────────────────── */
.workshops {
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

.workshops-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.workshops-intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.workshops-intro h2 {
  font-size: clamp(1.75rem, 3vw + 0.6rem, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}

.workshops-intro > p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 50ch;
  line-height: 1.65;
}

.workshops-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.workshops-secondary {
  font-size: 0.8125rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-block-start: 1.25rem;
}

.workshops-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ws-hero-asset {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 12px 40px oklch(0.10 0.002 255 / 0.12));
  transition: filter 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.workshops-visual:hover .ws-hero-asset {
  filter: drop-shadow(0 20px 56px oklch(0.10 0.002 255 / 0.18));
  transform: translateY(-4px);
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-block-end: clamp(2.5rem, 4vw, 3.5rem);
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-left h2 {
  font-size: clamp(1.625rem, 2.5vw + 0.6rem, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.18;
}
.about-left p { font-size: 1.0625rem; color: var(--ink-muted); max-width: 50ch; }

.about-right {
  display: flex;
  flex-direction: column;
  padding-block-start: 2.5rem;
}

.about-story-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.about-story-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.about-story-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: oklch(0.93 0.003 255);
  border: 1px solid var(--border);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.about-story-card p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; }


/* ─────────────────────────────────────────
   CONTACT — dark
───────────────────────────────────────── */
.contact {
  background: oklch(0.09 0.006 260);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-headline {
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: oklch(0.97 0.004 85);
}

.contact-sub {
  font-size: 1.0625rem;
  color: oklch(0.54 0.009 255);
  line-height: 1.65;
  max-width: 44ch;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-block-start: 0.5rem;
}

/* Right column — studio contact card (light on dark) */
.contact-right {
  display: flex;
  flex-direction: column;
  padding-block-start: 0.5rem;
}

.studio-card {
  background: oklch(0.97 0.004 85);
  border: 1px solid oklch(0.87 0.005 85);
  border-radius: 20px;
  padding: clamp(1.625rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 16px 52px oklch(0.02 0.002 255 / 0.35);
}

/* Info groups */
.studio-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.studio-group-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: oklch(0.50 0.006 255);
}

/* Rows */
.studio-rows { display: flex; flex-direction: column; }

.studio-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.575rem 0;
  border-bottom: 1px solid oklch(0.88 0.003 85);
}
.studio-rows .studio-row:first-child {
  border-top: 1px solid oklch(0.88 0.003 85);
}

.studio-row-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.50 0.006 255);
  min-width: 78px;
  flex-shrink: 0;
}

.studio-row-value {
  font-size: 0.875rem;
  color: oklch(0.22 0.004 255);
  line-height: 1.5;
}

a.studio-row-value {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: color 0.18s var(--ease-out);
}
a.studio-row-value:hover { color: var(--primary); }

.studio-row-arrow {
  font-size: 0.8125rem;
  display: inline-block;
  opacity: 0.35;
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
a.studio-row-value:hover .studio-row-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: oklch(0.05 0.003 260);
  padding-block: 1.5rem;
  border-top: 1px solid oklch(0.12 0.004 260);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
  font-size: 0.8125rem;
}
.footer-name  { color: oklch(0.42 0.006 255); }
.footer-email { color: oklch(0.42 0.006 255); transition: color 0.15s; }
.footer-email:hover { color: oklch(0.75 0.006 255); }
.footer-loc   { color: oklch(0.30 0.004 255); margin-inline-start: auto; }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid     { grid-template-columns: 1fr 1fr; }
  .workshops-hero { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .work-board { grid-template-columns: 1fr 1fr; }
  .work-col--featured { grid-column: 1 / -1; order: -1; }
  .work-col--left  { margin-block-start: 0; }
  .work-col--right { margin-block-start: 0; }
  .work-col--side .work-img-wrap { aspect-ratio: 4 / 3; }

  .about-layout { grid-template-columns: 1fr; }
  .about-right  { padding-block-start: 0; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-right { padding-block-start: 0; }
}

@media (max-width: 768px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-visual  { justify-content: flex-start; order: -1; }
  .portrait-card { max-width: 260px; }

  .work-board { grid-template-columns: 1fr; }

  .side-dots { display: none; }

  .nav-links {
    position: fixed;
    inset: 60px 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: oklch(0.97 0.004 85 / 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s var(--ease-out);
    z-index: calc(var(--z-nav) - 1);
  }
  .nav-links.open { pointer-events: auto; opacity: 1; }
  .nav-links a    { font-size: 1.25rem; color: var(--ink); }
  .nav .btn-nav   { display: none; }
  .nav-toggle     { display: flex; }
  [aria-expanded="true"].nav-toggle span:first-child { transform: translateY(6.5px) rotate(45deg); }
  [aria-expanded="true"].nav-toggle span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .hero-ctas    { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { text-align: center; justify-content: center; }
  .footer-loc   { margin-inline-start: 0; }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-label,
  .hero-hl-line,
  .hero-sub,
  .hero-ctas,
  .hero-micro,
  .portrait-card { animation: none; }
  .btn, .work-img, .portrait-img, .ws-hero-asset, .nav, .side-dot { transition: none; }
}
