/* Block Studios — Nexsas design system */

:root {
  --brand: #864ffe;
  --brand-hover: #7040e8;
  --brand-soft: rgba(134, 79, 254, 0.1);
  --gravity: #32d74b;
  --gravity-soft: rgba(50, 215, 75, 0.08);
  --trip: #30b0c7;
  --trip-soft: rgba(48, 176, 199, 0.08);
  --ink: #1a1a1c;
  --bg: #f2f5fa;
  --paper: #fcfcfc;
  --panel: #f4f5f8;
  --text: #1a1a1c;
  --muted: #5c6370;
  --line: #dfe4eb;
  --font: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1140px;
  --pad-x: clamp(20px, 4vw, 32px);
  --section: clamp(48px, 6vw, 80px);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 24px rgba(26, 26, 28, 0.05);
  --shadow-phone: 0 24px 56px rgba(26, 26, 28, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: min(var(--max), 100% - var(--pad-x) * 2);
  margin-inline: auto;
}

.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.skip:focus { top: 16px; }

/* Header — Nexsas floating pill */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  transition: top 0.3s var(--ease);
}

.header.is-scrolled { top: 12px; }

.header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 10px 10px 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(26, 26, 28, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.brand img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav__links { display: flex; gap: 20px; }

.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--ink);
  border-color: var(--line);
  background: var(--panel);
}

.nav__cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.nav__cta:hover { background: var(--brand-hover); }

.nav__cta:active { transform: scale(0.98); }

.burger {
  display: none;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.burger:hover { transform: scale(1.04); }

.burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0.72;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(26, 26, 28, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop[hidden] { display: none !important; }

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  padding: 20px var(--pad-x) 32px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.35s var(--ease);
}

.menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.menu__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0.72;
}

.menu__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.menu__label {
  position: relative;
  margin-bottom: 16px;
  padding-right: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu__label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 56px;
  right: 0;
  height: 1px;
  background: var(--line);
}

.menu__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu__links a {
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu__cta {
  margin-top: 24px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-pill);
}

/* Type */
.display {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

.h2 {
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}

.body-lg {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.body { font-size: 14px; line-height: 1.6; color: var(--muted); }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(134, 79, 254, 0.18);
  border-radius: var(--radius-pill);
}

.section-head { margin-bottom: 32px; }
.section-head .body-lg { margin-top: 10px; }
.section-head--tight { margin-bottom: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  color: #fff;
  background: var(--ink);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 26, 28, 0.2);
}

.btn--ghost {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: #d7dde5;
  background: #fff;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--ink);
}

.store-btn--outline {
  background: transparent;
  color: var(--ink);
}

.store-btn__icon { width: 20px; height: 20px; }

.store-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-btn__text small {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}

/* Device */
.device {
  margin: 0;
  padding: 9px;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow-phone);
}

.device img {
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(108px, 14vw, 128px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(94, 92, 230, 0.1), transparent 70%),
    radial-gradient(ellipse 40% 35% at 30% 70%, rgba(48, 176, 199, 0.06), transparent 65%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  filter: saturate(0.5);
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}

.hero__rings {
  position: absolute;
  width: min(520px, 70vw);
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  opacity: 0.45;
}

.orb--brand {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -100px;
  right: 10%;
  border-radius: 50%;
  background: rgba(134, 79, 254, 0.14);
  filter: blur(60px);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.hero__copy .eyebrow { margin-bottom: 12px; }
.hero__copy .display { margin-bottom: 14px; }
.hero__copy .lede { margin-bottom: 24px; max-width: 48ch; font-size: 15px; color: var(--muted); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tags li {
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  max-height: 420px;
}

.device--back {
  position: absolute;
  width: 175px;
  right: 14%;
  transform: rotate(8deg);
  opacity: 0.88;
  z-index: 0;
}

.device--front {
  position: relative;
  z-index: 1;
  width: 195px;
  transform: rotate(-4deg);
}

/* Capabilities */
.capabilities {
  padding: 0 0 var(--section);
  margin-top: -8px;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cap {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cap:hover {
  border-color: #d7dde5;
  box-shadow: 0 8px 32px rgba(26, 26, 28, 0.06);
}

.cap__icon {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
}

.cap h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.cap p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Work */
.work {
  padding: var(--section) 0;
  background: #fcfcfd;
  border-block: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.product-row:first-of-type { border-top: none; padding-top: 0; }

.product-row--trip .product-row__copy { order: 1; }
.product-row--trip .product-row__visual { order: 2; }

.product-row__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-row__illus {
  position: absolute;
  width: 55%;
  max-width: 200px;
  top: -6%;
  right: 0;
  opacity: 0.5;
  pointer-events: none;
}

.product-row--trip .product-row__illus {
  left: 0;
  right: auto;
}

.product-row__visual .device {
  width: min(220px, 80%);
  position: relative;
  z-index: 1;
}

.product-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.product-row__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.product-row__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.product-row__copy .body-lg { margin-bottom: 16px; }

.product-row__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.product-row__list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: var(--text);
}

.product-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.product-row--gravity {
  background: linear-gradient(90deg, var(--gravity-soft), transparent 50%);
  border-radius: var(--radius-lg);
  padding-inline: 20px;
}

.product-row--trip {
  background: linear-gradient(270deg, var(--trip-soft), transparent 50%);
  border-radius: var(--radius-lg);
  padding-inline: 20px;
}

.product-row__shots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.product-row__shots img {
  width: 56px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: 0 6px 16px rgba(10, 10, 12, 0.1);
}

/* Studio */
.studio {
  padding: var(--section) 0;
}

.studio__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
}

.studio__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.studio__stats article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.studio__stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.studio__stats span {
  font-size: 12px;
  color: var(--muted);
}

/* Craft */
.craft {
  padding: var(--section) 0;
  background: #f9fafb;
  border-top: 1px solid var(--line);
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.craft__card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.craft__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 10px;
}

.craft__card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.craft__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact */
.contact {
  padding: var(--section) 0;
}

.contact__panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fcfcfc;
}

.contact__panel .eyebrow {
  color: rgba(252, 252, 252, 0.85);
  background: rgba(134, 79, 254, 0.2);
  border-color: rgba(134, 79, 254, 0.35);
}

.contact__panel .h2 { color: #fcfcfc; }
.contact__panel .body-lg { color: rgba(252, 252, 252, 0.72); }
.contact__panel .btn-text { color: #c4b0ff; }

.contact__panel .store-btn {
  background: var(--brand);
  border-color: var(--brand);
}

.contact__panel .store-btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.contact__panel .store-btn--outline {
  background: transparent;
  color: #fcfcfc;
  border-color: rgba(252, 252, 252, 0.35);
}

.contact__panel .store-btn--outline:hover {
  border-color: rgba(252, 252, 252, 0.6);
  background: rgba(252, 252, 252, 0.06);
}

.contact__copy .eyebrow { margin-bottom: 10px; }
.contact__copy .h2 { margin-bottom: 10px; }
.contact__copy .body-lg { margin-bottom: 20px; }

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.device--contact {
  width: min(200px, 100%);
  margin-inline: auto;
}

/* Footer */
.footer {
  padding: 32px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.footer__brand span {
  font-size: 12px;
  color: var(--muted);
}

.footer__nav {
  display: flex;
  gap: 22px;
  justify-self: center;
}

.footer__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.footer__nav a:hover,
.footer__nav a.is-active { color: var(--ink); }

.footer__copy {
  justify-self: end;
  font-size: 12px;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.reveal.is-in,
html.is-ready .reveal,
html.no-motion .reveal {
  opacity: 1;
  transform: none;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line > span { display: block; }

html.is-ready .split-line > span,
html.no-motion .split-line > span {
  transform: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .header { top: 12px; width: calc(100% - 24px); }
  .header__shell { min-height: 58px; padding: 8px 8px 8px 14px; }
  .brand__text { display: none; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
  .menu { max-width: min(420px, 100%); border-radius: 24px 0 0 24px; }

  .hero {
    padding-top: 96px;
    padding-bottom: 36px;
    overflow: visible;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__visual {
    order: -1;
    width: 100%;
    min-height: 0;
    max-height: none;
    height: auto;
    padding: 0 0 6px;
    overflow: visible;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(14px, 4vw, 22px);
  }
  .hero__rings { display: none; }
  .orb--brand {
    width: 220px;
    height: 220px;
    top: 40px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0.55;
  }
  .hero__visual .device {
    padding: 7px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(26, 26, 28, 0.1);
  }
  .hero__visual .device img { border-radius: 16px; }
  .device--back {
    display: block;
    position: relative;
    right: auto;
    width: min(112px, 26vw);
    opacity: 1;
    transform: none;
    flex-shrink: 0;
  }
  .device--front {
    position: relative;
    width: min(124px, 28vw);
    margin: 0;
    transform: none;
    flex-shrink: 0;
  }
  .hero__copy .display { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero__copy .lede { max-width: none; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn { width: 100%; }

  .capabilities__grid { grid-template-columns: 1fr; }
  .product-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 0;
    border-radius: var(--radius-md);
  }
  .product-row--trip .product-row__copy,
  .product-row--trip .product-row__visual { order: unset; }
  .product-row__visual { order: -1; }
  .product-row__visual .device { width: min(200px, 72vw); }
  .product-row__illus { display: none; }
  .product-row__shots { flex-wrap: wrap; }

  .studio__grid { grid-template-columns: 1fr; gap: 24px; }
  .studio__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .craft__grid { grid-template-columns: 1fr; }
  .contact__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .device--contact {
    order: -1;
    width: min(180px, 58vw);
  }
  .contact__actions { width: 100%; }
  .contact__actions .store-btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer__nav { justify-self: center; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer__copy { justify-self: center; }
}

@media (max-width: 520px) {
  :root { --pad-x: 16px; --section: 40px; }

  .header__shell { min-height: 54px; }
  .brand img { width: 36px; height: 36px; }
  .hero { padding-top: 88px; }

  .hero__visual { gap: 14px; }
  .device--back,
  .device--front { transform: none; }
  .device--back { width: min(100px, 24vw); }
  .device--front { width: min(110px, 26vw); }
  .hero__tags { gap: 6px; }
  .hero__tags li { padding: 5px 11px; font-size: 10px; }

  .display { font-size: clamp(1.85rem, 8.8vw, 2.35rem); }
  .h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-head { margin-bottom: 24px; }

  .studio__stats { grid-template-columns: 1fr; }
  .studio__stats article { padding: 18px; }

  .product-row { padding-block: 24px; }
  .product-row__title { font-size: 1.35rem; }

  .contact__panel { padding: 20px 16px; border-radius: var(--radius-md); }
  .footer__nav { gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .menu { transition: none; }
  .menu__links a, .menu__cta { opacity: 1; transform: none; transition: none; }
  .menu-backdrop { transition: none; }
  html { scroll-behavior: auto; }
}