/* =========================================================================
   ClaytonK Media — Design System (v3)
   Bold flat colour blocks. Cobalt · hot pink · lime · tangerine · black.
   Rectangular forms (no pills), no emoji, grounded copy.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --paper:      oklch(0.99 0 0);
  --paper-2:    oklch(0.965 0.003 250);
  --ink:        oklch(0.17 0.005 260);
  --ink-soft:   oklch(0.33 0.008 260);
  --ink-mute:   oklch(0.48 0.01 260);
  --line:       oklch(0.90 0.006 250);
  --line-2:     oklch(0.83 0.008 250);

  --pink:       oklch(0.67 0.23 6);
  --pink-deep:  oklch(0.57 0.22 8);
  --blue:       oklch(0.55 0.19 249);
  --blue-deep:  oklch(0.47 0.17 250);
  --lime:       oklch(0.87 0.21 124);
  --lime-deep:  oklch(0.76 0.20 126);
  --tang:       oklch(0.72 0.19 48);
  --tang-deep:  oklch(0.62 0.18 44);
  --yellow:     oklch(0.88 0.16 96);

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.24vw, 1.15rem);
  --step-1:  clamp(1.25rem, 1.16rem + 0.44vw, 1.55rem);
  --step-2:  clamp(1.56rem, 1.4rem + 0.8vw, 2.15rem);
  --step-3:  clamp(1.95rem, 1.66rem + 1.44vw, 3rem);
  --step-4:  clamp(2.44rem, 1.95rem + 2.45vw, 4.2rem);
  --step-5:  clamp(3.05rem, 2.2rem + 4.2vw, 5.6rem);

  --sp-1: 0.5rem;  --sp-2: 0.75rem; --sp-3: 1rem;   --sp-4: 1.5rem;
  --sp-5: 2rem;    --sp-6: 3rem;    --sp-7: 4.5rem;  --sp-8: 6.5rem;
  --container: 1220px;
  --radius: 10px;      /* media / large surfaces */
  --radius-sm: 5px;    /* buttons, controls, tags */

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.77, 0, 0.175, 1);

  --z-nav: 100; --z-menu: 200; --z-overlay: 300; --z-toast: 400;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.stack > * + * { margin-top: var(--sp-4); }
.lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 62ch; line-height: 1.5; }

/* ---------- Buttons (rectangular) ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  line-height: 1; letter-spacing: -0.01em;
  padding: 0.95em 1.5em; border-radius: var(--radius-sm); border: none; cursor: pointer;
  background: var(--bg); color: var(--fg);
  transition: transform 0.16s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.2s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-3px); }
  .btn:hover svg { transform: translate(3px, -3px); }
}
.btn:active { transform: scale(0.97); }
.btn--grad { --bg: var(--pink-deep); --fg: white; }
.btn--grad:hover { --bg: var(--pink); }
.btn--lime { --bg: var(--lime); --fg: var(--ink); }
.btn--lime:hover { --bg: var(--lime-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--on-dark.btn--ghost { --fg: white; box-shadow: inset 0 0 0 2px oklch(1 0 0 / 0.55); }
.btn--on-dark.btn--ghost:hover { --bg: white; --fg: var(--ink); box-shadow: inset 0 0 0 2px white; }
.btn--lg { font-size: var(--step-1); padding: 1.05em 1.8em; }

/* ---------- Brand mark / logo ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__logo-img { height: 42px; width: auto; mix-blend-mode: multiply; }
.footer-brand .brand__logo-img,
.mobile-menu__top .brand__logo-img { mix-blend-mode: screen; filter: invert(1); }
.footer-brand .brand__logo-img { height: 48px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: oklch(0.99 0 0 / 0.86);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -20px oklch(0.17 0 0 / 0.5); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: var(--sp-4); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); list-style: none; }
.nav__links a { font-family: var(--font-display); font-weight: 600; font-size: 1rem; position: relative; padding-block: 0.4rem; color: var(--ink-soft); transition: color 0.25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.2s var(--ease-out); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; align-items: center; gap: var(--sp-3); }
.nav__toggle { display: none; }

.menu-btn {
  display: none; width: 46px; height: 46px; border: none; background: var(--ink); color: var(--paper);
  border-radius: var(--radius-sm); cursor: pointer; place-items: center; position: relative;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; background: currentColor;
  transform: translateX(-50%); transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.menu-btn span { top: 50%; margin-top: -1px; }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }
body.menu-open .menu-btn span { background: transparent; }
body.menu-open .menu-btn span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
body.menu-open .menu-btn span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--blue); color: white;
  display: grid; grid-template-rows: 74px 1fr auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  clip-path: inset(0 0 100% 0); transition: clip-path 0.28s var(--ease-out);
  pointer-events: none;
}
body.menu-open .mobile-menu { clip-path: inset(0 0 0 0); pointer-events: auto; transition-duration: 0.45s; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .menu-btn { background: oklch(1 0 0 / 0.16); }
.mobile-menu__links { list-style: none; display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; }
.mobile-menu__links a { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 11vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.05; opacity: 0; transform: translateY(18px); transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out); }
.mobile-menu__links a:hover { color: var(--lime); }
body.menu-open .mobile-menu__links a { opacity: 1; transform: none; }
body.menu-open .mobile-menu__links li:nth-child(1) a { transition-delay: 0.12s; }
body.menu-open .mobile-menu__links li:nth-child(2) a { transition-delay: 0.18s; }
body.menu-open .mobile-menu__links li:nth-child(3) a { transition-delay: 0.24s; }
body.menu-open .mobile-menu__links li:nth-child(4) a { transition-delay: 0.30s; }
.mobile-menu__foot { padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-4); font-weight: 600; }
.mobile-menu__foot a { border-bottom: 2px solid var(--lime); padding-bottom: 2px; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--ink); color: white; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.hero__media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, oklch(0.12 0 0 / 0.15) 0%, oklch(0.12 0 0 / 0.35) 45%, oklch(0.1 0 0 / 0.92) 100%); }
.hero__inner { position: relative; min-height: min(92svh, 850px); display: flex; flex-direction: column; justify-content: flex-end; padding-block: clamp(6rem, 12vh, 9rem) clamp(2.5rem, 5vw, 4rem); }
.hero h1 { font-size: var(--step-5); font-weight: 800; letter-spacing: -0.035em; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__sub { margin-top: var(--sp-4); font-size: var(--step-1); max-width: 42ch; color: oklch(1 0 0 / 0.88); line-height: 1.45; }
.hero__cta { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__services { position: relative; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: var(--sp-4); border-top: 1px solid oklch(1 0 0 / 0.2); }
.hero__services span { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: oklch(1 0 0 / 0.62); transition: color 0.3s; }
.hero__services span:hover { color: white; }

.hero-scroll { position: absolute; right: clamp(1.15rem, 4vw, 2.5rem); bottom: clamp(2.5rem, 5vw, 4rem); z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(1 0 0 / 0.7); writing-mode: vertical-rl; display: flex; align-items: center; gap: 0.8rem; }
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(oklch(1 0 0 / 0.8), transparent); animation: scrolldrop 1.8s var(--ease-io) infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Interior page hero ---------- */
.page-hero { background: var(--ink); color: white; position: relative; overflow: hidden; }
.page-hero__inner { position: relative; padding-block: clamp(6rem, 13vh, 9rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { font-size: var(--step-5); letter-spacing: -0.04em; max-width: 15ch; }
.page-hero h1 em { font-style: normal; color: var(--lime); }
.page-hero p { margin-top: var(--sp-4); font-size: var(--step-1); max-width: 52ch; color: oklch(1 0 0 / 0.86); }
.page-hero__crumb { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; color: var(--lime); margin-bottom: var(--sp-3); display: inline-block; padding-bottom: 4px; border-bottom: 3px solid var(--lime); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: white; padding-block: 1rem; overflow: hidden; border-block: 1px solid oklch(1 0 0 / 0.12); }
.marquee--lime { background: var(--lime); color: var(--ink); border-color: var(--lime-deep); }
.marquee__row { display: flex; gap: 2.5rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee--lime .marquee__row { animation-duration: 28s; }
.marquee__row span { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 2rem); letter-spacing: -0.02em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee__row span::after { content: "/"; color: var(--pink); font-weight: 800; }
.marquee--lime .marquee__row span::after { color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__row { animation: none; } }

/* ---------- Section heading ---------- */
.sec-head { display: grid; gap: var(--sp-4); margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head__top { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.sec-head h2 { font-size: var(--step-4); letter-spacing: -0.035em; }
.sec-head p { max-width: 54ch; color: var(--ink-soft); font-size: var(--step-1); }

/* ---------- Services bento (feature + trio) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(0.8rem, 1.4vw, 1.1rem); }
.svc {
  position: relative; border-radius: var(--radius); padding: clamp(1.5rem, 2.6vw, 2.2rem);
  color: white; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px; transition: transform 0.22s var(--ease-out);
}
.svc--photo   { grid-column: 1 / -1; min-height: 340px; background: var(--blue); }
.svc--graphic { grid-column: span 2; background: var(--tang); color: var(--ink); }
.svc--web     { grid-column: span 2; background: var(--lime); color: var(--ink); }
.svc--app     { grid-column: span 2; background: var(--ink); }
.svc h3 { font-size: var(--step-2); letter-spacing: -0.03em; }
.svc--photo h3 { font-size: var(--step-3); }
.svc p { font-size: var(--step--1); max-width: 42ch; opacity: 0.95; margin-top: 0.4rem; line-height: 1.45; }
.svc__arrow { position: absolute; top: clamp(1.5rem, 2.6vw, 2.2rem); right: clamp(1.5rem, 2.6vw, 2.2rem); width: 2.4rem; height: 2.4rem; border-radius: var(--radius-sm); background: oklch(1 0 0 / 0.18); display: grid; place-items: center; transition: background 0.25s, transform 0.25s var(--ease-out); }
.svc--graphic .svc__arrow, .svc--web .svc__arrow { background: oklch(0.17 0 0 / 0.14); }
.svc:hover .svc__arrow { background: oklch(1 0 0 / 0.3); }

/* ---------- Work gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.filter {
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; padding: 0.5em 1em; border-radius: var(--radius-sm);
  border: 2px solid var(--line-2); background: var(--paper); color: var(--ink-soft); cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: white; }

.gallery { columns: 3; column-gap: clamp(0.8rem, 1.4vw, 1.1rem); }
.gallery__item { break-inside: avoid; margin-bottom: clamp(0.8rem, 1.4vw, 1.1rem); border-radius: var(--radius); overflow: hidden; position: relative; background: var(--paper-2); display: block; }
.gallery__item img { width: 100%; height: auto; transition: transform 0.35s var(--ease-out); }
.gallery__item::after { content: attr(data-cat); position: absolute; left: 0.7rem; bottom: 0.7rem; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 0.3em 0.6em; border-radius: var(--radius-sm); opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s var(--ease-out); }
.gallery__item:hover::after { opacity: 1; transform: none; }
.gallery__item.is-hidden { display: none; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: var(--step-4); }
.split__body h3 { font-size: var(--step-3); }

/* ---------- Colour band ---------- */
.band { background: var(--ink); color: white; }
.band--blue { background: var(--blue); }
.band--pink { background: var(--pink-deep); }

/* Standalone statement (manifesto) */
.statement { font-family: var(--font-display); font-weight: 800; font-size: var(--step-4); letter-spacing: -0.035em; line-height: 1.08; max-width: 20ch; }
.statement em { font-style: normal; color: var(--lime); }

/* ---------- Service detail (services page) ---------- */
.svc-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.svc-detail--rev .svc-detail__media { order: 2; }
.svc-detail__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6; }
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail__tag { position: absolute; top: 1rem; left: 1rem; display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.02em; padding: 0.4em 0.8em; border-radius: var(--radius-sm); }
.svc-detail__kick { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: var(--accent, var(--pink)); }
.svc-detail h2 { font-size: var(--step-4); margin-top: 0.3rem; }
.svc-detail ul { list-style: none; display: grid; gap: 0.7rem; margin-top: var(--sp-4); }
.svc-detail li { display: flex; gap: 0.7rem; align-items: baseline; font-size: var(--step-0); color: var(--ink-soft); }
.svc-detail li::before { content: ""; flex: none; width: 0.7rem; height: 0.7rem; background: var(--accent, var(--pink)); transform: translateY(1px); }

/* Poster showcase (real design work) */
.poster-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.8rem, 2vw, 1.4rem); }
.poster-pair img { width: 100%; border-radius: var(--radius); background: var(--paper-2); box-shadow: 0 20px 45px -25px oklch(0.17 0 0 / 0.55); }
.poster-pair a:nth-child(2) { transform: translateY(clamp(1rem, 4vw, 2.5rem)); }

/* Web / app mockups (kept, flat) */
.mock { width: 100%; height: 100%; position: relative; display: grid; place-items: center; padding: clamp(1.2rem, 3vw, 2.2rem); }
.mock--browser { background: var(--blue); }
.browser { width: 100%; max-width: 420px; border-radius: 10px; overflow: hidden; background: white; box-shadow: 0 24px 50px -24px oklch(0.17 0 0 / 0.6); }
.browser__bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.browser__bar i { width: 0.62rem; height: 0.62rem; border-radius: 50%; background: var(--line-2); }
.browser__bar i:nth-child(1) { background: var(--pink); } .browser__bar i:nth-child(2) { background: var(--tang); } .browser__bar i:nth-child(3) { background: var(--lime-deep); }
.browser__url { margin-left: 0.5rem; font-size: 0.72rem; color: var(--ink-mute); background: var(--paper); padding: 0.2rem 0.6rem; border-radius: var(--radius-sm); }
.browser__view { padding: 1.3rem; display: grid; gap: 0.7rem; }
.browser__hero { border-radius: 6px; background: var(--pink-deep); aspect-ratio: 16/8; display: flex; align-items: flex-end; padding: 0.9rem; }
.browser__hero b { font-family: var(--font-display); color: white; font-size: 1.3rem; letter-spacing: -0.03em; line-height: 1; }
.browser__rows { display: grid; gap: 0.45rem; }
.browser__rows span { height: 0.5rem; border-radius: 999px; background: var(--line-2); }
.browser__rows span:nth-child(1) { width: 80%; } .browser__rows span:nth-child(2) { width: 95%; } .browser__rows span:nth-child(3) { width: 60%; background: var(--pink); }

.mock--phone { background: var(--lime); }
.phone { width: min(230px, 62%); aspect-ratio: 9/19; border-radius: 30px; background: var(--ink); padding: 9px; box-shadow: 0 24px 50px -22px oklch(0.17 0 0 / 0.7); }
.phone__screen { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; background: white; display: flex; flex-direction: column; }
.phone__top { background: var(--blue); padding: 1.6rem 1rem 1rem; color: white; }
.phone__top small { font-weight: 600; opacity: 0.85; font-size: 0.7rem; }
.phone__top b { display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.03em; line-height: 1; margin-top: 0.2rem; }
.phone__body { padding: 0.8rem; display: grid; gap: 0.6rem; }
.phone__card { border-radius: 8px; height: 3.2rem; background: var(--paper-2); border: 1px solid var(--line); display: flex; align-items: center; gap: 0.6rem; padding: 0 0.7rem; }
.phone__card i { width: 2rem; height: 2rem; border-radius: 6px; flex: none; }
.phone__card:nth-child(1) i { background: var(--pink); } .phone__card:nth-child(2) i { background: var(--blue); } .phone__card:nth-child(3) i { background: var(--tang); }
.phone__card span { height: 0.45rem; width: 60%; border-radius: 999px; background: var(--line-2); }
.phone__tab { margin-top: auto; display: flex; justify-content: space-around; padding: 0.7rem 0; border-top: 1px solid var(--line); }
.phone__tab i { width: 1.1rem; height: 1.1rem; border-radius: 5px; background: var(--line-2); }
.phone__tab i:first-child { background: var(--blue); }

/* ---------- Process (numbered rows, no cards) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 2rem); }
.step { border-top: 3px solid oklch(1 0 0 / 0.35); padding-top: var(--sp-3); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: var(--step-1); color: var(--lime); line-height: 1; }
.step h3 { font-size: var(--step-1); margin-top: 0.5rem; }
.step p { font-size: var(--step--1); color: oklch(1 0 0 / 0.74); margin-top: 0.4rem; }

/* ---------- About ---------- */
.about-hero { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.about-hero h1 { font-size: var(--step-5); max-width: 18ch; }
.about-statement { background: var(--blue); color: white; border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); }
.about-statement p { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.02em; line-height: 1.2; max-width: 30ch; }
.about-statement p em { font-style: normal; color: var(--lime); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.value { padding: clamp(1.4rem, 2.4vw, 2rem); border-radius: var(--radius); color: white; }
.value:nth-child(1) { background: var(--pink-deep); }
.value:nth-child(2) { background: var(--blue); }
.value:nth-child(3) { background: var(--ink); }
.value h3 { font-size: var(--step-2); }
.value p { font-size: var(--step--1); opacity: 0.95; margin-top: 0.5rem; line-height: 1.45; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.photo-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: start; }
.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: 0.45rem; }
.field label, .field .label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.field .req { color: var(--pink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm); border: 2px solid var(--line-2);
  background: var(--paper); transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px oklch(0.55 0.19 249 / 0.16); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip-radio span { display: inline-flex; padding: 0.5em 0.9em; border-radius: var(--radius-sm); border: 2px solid var(--line-2); font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out); }
.chip-radio input:checked + span { background: var(--ink); color: white; border-color: var(--ink); }
.chip-radio input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.form__note { font-size: var(--step--1); color: var(--ink-mute); }
.form-success { display: none; padding: clamp(1.4rem,3vw,2rem); border-radius: var(--radius); background: var(--lime); color: var(--ink); font-family: var(--font-display); }
.form-success.is-visible { display: block; }
.form-success h3 { font-size: var(--step-2); }

.contact-card { border-radius: var(--radius); background: var(--ink); color: white; padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: var(--sp-4); }
.contact-card a.big { font-family: var(--font-display); font-weight: 800; font-size: var(--step-1); letter-spacing: -0.02em; word-break: break-word; }
.contact-line { display: grid; gap: 0.2rem; }
.contact-line > span:first-child { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(1 0 0 / 0.6); font-family: var(--font-display); font-weight: 700; }
.contact-card .placeholder { color: var(--lime); }
.socials a { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.6em 1em; border-radius: var(--radius-sm); background: oklch(1 0 0 / 0.1); font-weight: 600; font-size: 0.95rem; transition: background 0.25s, transform 0.25s var(--ease-out); }
.socials a:hover { background: oklch(1 0 0 / 0.2); }

/* Instagram glyph inline in links */
.ig-icon { width: 1.05em; height: 1.05em; flex: none; vertical-align: -0.2em; }
.footer-col a { display: inline-flex; align-items: center; }
.footer-col a .ig-icon { margin-right: 0.5em; }

/* ---------- CTA band ---------- */
.cta { background: var(--pink-deep); color: white; border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.cta--blue { background: var(--blue); }
.cta--ink { background: var(--ink); }
.cta h2 { font-size: var(--step-5); letter-spacing: -0.04em; max-width: 16ch; margin-inline: auto; }
.cta p { margin-top: var(--sp-3); font-size: var(--step-1); color: oklch(1 0 0 / 0.9); max-width: 46ch; margin-inline: auto; }
.cta .btn { margin-top: var(--sp-5); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: white; padding-block: clamp(3rem, 6vw, 5rem) var(--sp-5); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-5); padding-bottom: var(--sp-6); border-bottom: 1px solid oklch(1 0 0 / 0.14); }
.footer-brand p { margin-top: var(--sp-3); color: oklch(1 0 0 / 0.68); max-width: 34ch; font-size: var(--step--1); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); }
.footer-col ul { list-style: none; margin-top: var(--sp-3); display: grid; gap: 0.6rem; }
.footer-col a { color: oklch(1 0 0 / 0.82); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; padding-top: var(--sp-5); font-size: 0.85rem; color: oklch(1 0 0 / 0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: opacity 0.3s ease; }
  .btn, .svc, .gallery__item img, .filter { transition: none; }
  .btn:active { transform: none; }
}

/* ---------- Hover-only motion (skip on touch to avoid stuck hover states) ---------- */
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover::after { transform: scaleX(1); }
  .svc:hover { transform: translateY(-6px); }
  .svc:hover .svc__arrow { transform: translate(4px, -4px); }
  .filter:hover { transform: translateY(-2px); }
  .gallery__item:hover img { transform: scale(1.05); }
  .socials a:hover { transform: translateY(-2px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .menu-btn { display: grid; }
  .nav__toggle { display: block; }
  .gallery { columns: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .svc, .svc--photo, .svc--graphic, .svc--web, .svc--app { grid-column: auto; min-height: 220px; }
  .split, .split--reverse .split__media, .svc-detail, .svc-detail--rev .svc-detail__media, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media, .svc-detail--rev .svc-detail__media { order: 0; }
  .split__media, .svc-detail__media { aspect-ratio: 16/11; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__services span { font-size: var(--step-0); }
  .poster-pair a:nth-child(2) { transform: none; }
}
