/* ============================================================
   mojave8 — UI/UX & SEO studio, Lanzarote
   Volcanic minimalism: warm black, bone, lava orange.
   ============================================================ */

@font-face {
  font-family: 'Syne';
  src: url('../fonts/syne-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --c-bg: #0e0c0a;
  --c-bg-2: #15110e;
  --c-ink: #ede6dc;
  --c-muted: #8d8378;
  --c-lava: #ff4d00;
  --c-lava-soft: #ff7a3c;
  --c-line: rgba(237, 230, 220, 0.14);
  --font-display: 'Syne', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --pad-x: clamp(1.25rem, 4vw, 4.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--c-lava); color: var(--c-bg); }

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, blockquote, figure, ul, p, address { margin: 0; padding: 0; }
ul { list-style: none; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--c-lava);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--c-bg);
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.preloader__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
}
.preloader__logo em { font-style: normal; color: var(--c-lava); }
.preloader__count {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--c-muted);
  font-variant-numeric: tabular-nums;
}

/* ---------- Cursor ---------- */

.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-lava);
  pointer-events: none;
  display: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background-color 0.3s;
  will-change: transform;
}
.cursor__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-bg);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cursor.is-active {
  width: 76px; height: 76px;
  background: var(--c-ink);
}
.cursor.is-active .cursor__label { opacity: 1; }
@media (pointer: fine) {
  .cursor { display: block; }
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad-x);
  transition: transform 0.5s var(--ease-out), background-color 0.4s;
}
.header.is-scrolled {
  background: rgba(14, 12, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header.is-hidden { transform: translateY(-110%); }

.header__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 0.4rem 0; /* ≥24px tap target */
}
.header__logo em { font-style: normal; color: var(--c-lava); }
.header__logo sup { font-size: 0.5em; color: var(--c-muted); margin-left: 1px; }

.header__nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.92rem;
}
.header__nav a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--c-muted);
  transition: color 0.3s;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--c-lava);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.header__nav a:hover { color: var(--c-ink); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--pill {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--c-line);
  border-radius: 99px;
  font-size: 0.88rem;
  background: transparent;
  transition: background-color 0.35s var(--ease-out), color 0.35s, border-color 0.35s;
}
.btn--pill:hover {
  background: var(--c-lava);
  border-color: var(--c-lava);
  color: var(--c-bg);
}

.burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--c-ink);
  transition: transform 0.35s var(--ease-out);
}
.burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem var(--pad-x) 3rem;
  background: var(--c-bg-2);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
}
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.02em;
}
.mobile-menu__nav a span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--c-lava);
}
.mobile-menu__footer { color: var(--c-muted); font-size: 0.9rem; }
.mobile-menu__footer a { color: var(--c-ink); display: inline-block; padding: 0.4rem 0; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  /* fallback when WebGL is unavailable */
  background:
    radial-gradient(70% 55% at 50% 95%, rgba(255, 77, 0, 0.22), transparent 70%),
    radial-gradient(40% 35% at 80% 20%, rgba(255, 122, 60, 0.08), transparent 70%),
    var(--c-bg);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 7.5rem var(--pad-x) 3rem;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-lava);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.6); }
  60% { box-shadow: 0 0 0 9px rgba(255, 77, 0, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  /* sized so the longest line ("experiences", ≈11.9em in Syne 800) always fits */
  font-size: clamp(1.4rem, calc((100vw - 2 * var(--pad-x)) / 12.1), 9.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-block: 0.04em; /* keep descenders/ascenders inside the clip */
}
.hero__line-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
  will-change: transform;
}
.hero__line--outline .hero__line-inner {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-ink);
}
.hero__accent {
  font-style: italic;
  font-weight: 500;
  font-size: 0.72em;
  color: var(--c-lava);
  letter-spacing: -0.01em;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(1.8rem, 5vh, 3.5rem);
}
.hero__sub {
  max-width: 26rem;
  color: var(--c-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}
.hero__scroll { flex-shrink: 0; }
.hero__scroll-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(86px, 9vw, 116px);
  aspect-ratio: 1;
}
.hero__scroll-ring svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  fill: var(--c-muted);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: spin 14s linear infinite;
}
.hero__scroll-arrow { font-size: 1.3rem; color: var(--c-lava); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--c-line);
  padding: 1.1rem 0;
  background: var(--c-bg-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee__track i {
  font-style: normal;
  color: var(--c-lava);
  margin: 0 0.6em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections (shared) ---------- */

.section {
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
}
.section__head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.section__label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.section__label span { color: var(--c-lava); font-variant-numeric: tabular-nums; }
.section__label--center { justify-content: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  /* longest word ("everywhere.", ≈12.4em) must fit on small screens */
  font-size: clamp(1.3rem, calc((100vw - 2 * var(--pad-x)) / 13), 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* split-text lines (built by JS) */
.split-line { display: block; overflow: hidden; padding-block: 0.05em; }
.split-line > span { display: block; will-change: transform; }

html.js:not(.no-motion) [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

/* no JS → no preloader, everything visible */
html:not(.js) .preloader { display: none; }

/* ---------- Work ---------- */

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
.work-card { display: block; }
.work-card:nth-child(even) { margin-top: clamp(0rem, 6vw, 5rem); }

.work-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
}
.work-card__visual {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out);
  transform: scale(1.04);
}
.work-card:hover .work-card__visual { transform: scale(1.12); }

/* abstract poster art, pure CSS */
.wc-shape { position: absolute; display: block; }

.work-card__visual--timanfaya { background: linear-gradient(160deg, #1c120b 10%, #3a1505 60%, #6e2407); }
.wc-shape--sun {
  top: 12%; right: 14%;
  width: 26%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffb267, var(--c-lava) 70%);
  box-shadow: 0 0 70px rgba(255, 77, 0, 0.55);
}
.wc-shape--ridge, .wc-shape--ridge2 {
  bottom: -14%; left: -10%;
  width: 130%; height: 55%;
  background: #120c08;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.wc-shape--ridge2 { left: 30%; height: 38%; background: #1d130c; }

.work-card__visual--atlantico { background: linear-gradient(180deg, #101b1e, #0c2a31 70%, #0e3b42); }
.wc-shape--wave {
  bottom: 18%; left: -25%;
  width: 150%; height: 22%;
  border-radius: 100% 100% 0 0;
  background: linear-gradient(90deg, transparent, rgba(237, 230, 220, 0.22), transparent);
}
.wc-shape--wave2 { bottom: 6%; left: -10%; opacity: 0.5; }
.wc-shape--moon {
  top: 14%; left: 16%;
  width: 18%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 230, 220, 0.65);
}

.work-card__visual--vulkan { background: linear-gradient(135deg, #161210, #241a12 55%, #160f0a); }
.wc-shape--rings {
  top: 50%; left: 50%;
  width: 78%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle,
      transparent 0 9%,
      rgba(255, 122, 60, 0.28) 9% 9.8%);
}
.wc-shape--cone {
  bottom: 0; left: 50%;
  width: 46%; height: 42%;
  transform: translateX(-50%);
  background: #0d0a07;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.work-card__visual--jameos { background: linear-gradient(200deg, #14110d, #1f1c24 60%, #11131c); }
.wc-shape--grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 230, 220, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 230, 220, 0.07) 1px, transparent 1px);
  background-size: 12.5% 16.6%;
}
.wc-shape--orb {
  top: 28%; left: 34%;
  width: 32%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7e93ff33, #ff4d0044 75%);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(237, 230, 220, 0.18);
}

.work-card__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.1rem 1rem;
  padding-top: 1.1rem;
}
.work-card__info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  letter-spacing: -0.01em;
}
.work-card__info p {
  grid-column: 1;
  color: var(--c-muted);
  font-size: 0.9rem;
}
.work-card__year {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: start;
  font-size: 0.85rem;
  color: var(--c-muted);
  border: 1px solid var(--c-line);
  border-radius: 99px;
  padding: 0.25rem 0.8rem;
}

/* ---------- Studio ---------- */

.studio { background: var(--c-bg-2); }
.studio__manifesto {
  max-width: 56rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.studio__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: clamp(3rem, 8vh, 5.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--c-lava);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- Services ---------- */

.services__list { border-top: 1px solid var(--c-line); }
.service {
  border-bottom: 1px solid var(--c-line);
  transition: background-color 0.4s;
}
.service__row {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3.5vh, 2.2rem) 0;
}
.service__index {
  font-size: 0.85rem;
  color: var(--c-muted);
  min-width: 3.2rem;
  font-variant-numeric: tabular-nums;
}
.service__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: transform 0.5s var(--ease-out), color 0.4s;
}
.service__arrow {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--c-muted);
  transition: transform 0.5s var(--ease-out), color 0.4s;
}
.service:hover .service__name {
  transform: translateX(0.6rem);
  color: var(--c-lava-soft);
}
.service:hover .service__arrow {
  transform: translate(0.3rem, -0.3rem) rotate(45deg);
  color: var(--c-lava);
}
.service__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out);
}
.service__detail > * { overflow: hidden; }
.service__detail p {
  max-width: 38rem;
  color: var(--c-muted);
}
.service:hover .service__detail,
.service:focus-within .service__detail {
  grid-template-rows: 1fr;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.1rem 0 1.6rem;
}
.service__tags li {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
}

/* ---------- Quote ---------- */

.quote {
  background:
    radial-gradient(60% 80% at 50% 110%, rgba(255, 77, 0, 0.16), transparent 70%),
    var(--c-bg);
  text-align: center;
}
.quote__text {
  max-width: 52rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.9rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.quote__author {
  margin-top: 2rem;
  color: var(--c-muted);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */

.contact {
  text-align: center;
  padding-bottom: clamp(4rem, 10vh, 7rem);
}
.contact__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 12.5vw, 11rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.contact__line { display: block; }
.contact__line--accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-lava);
  transition: color 0.45s var(--ease-out);
}
.contact__big:hover .contact__line--accent { color: var(--c-lava); }
.contact__email { margin-top: clamp(2rem, 5vh, 3.5rem); }
.contact__email a {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  border-bottom: 1px solid var(--c-lava);
  padding: 0.35rem 0 0.3rem; /* ≥24px tap target */
  transition: color 0.3s;
}
.contact__email a:hover { color: var(--c-lava-soft); }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--c-line);
  padding: clamp(3rem, 7vh, 5rem) var(--pad-x) 2rem;
  background: var(--c-bg-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
}
.footer__logo em { font-style: normal; color: var(--c-lava); }
.footer__logo sup { font-size: 0.5em; color: var(--c-muted); }
.footer__tag { color: var(--c-muted); max-width: 16rem; margin-top: 0.6rem; }
.footer__col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col nav { display: flex; flex-direction: column; gap: 0.45rem; }
.footer__col a { color: var(--c-ink); transition: color 0.3s; font-size: 0.95rem; }
.footer__col a:hover { color: var(--c-lava-soft); }
.footer__col address { color: var(--c-muted); font-size: 0.95rem; }
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-line);
  font-size: 0.82rem;
  color: var(--c-muted);
}
.footer__coords { font-variant-numeric: tabular-nums; }
.footer__top { color: var(--c-ink); display: inline-block; padding: 0.45rem 0; }
.footer__top:hover { color: var(--c-lava-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .header__nav, .header__cta { display: none; }
  .burger { display: flex; }

  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { align-self: flex-end; margin-top: -1.5rem; }

  .work__grid { grid-template-columns: 1fr; }
  .work-card:nth-child(even) { margin-top: 0; }

  .studio__stats { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* hover-expansion doesn't exist on touch — keep details visible */
  .service__detail { grid-template-rows: 1fr; }
  .service__detail p { font-size: 0.95rem; }
}

@media (max-width: 600px) {
  .hero__coords { display: none; }
  .studio__stats { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__big { font-size: clamp(2.4rem, 11.5vw, 4rem); }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__line-inner, .split-line > span { transform: none !important; }
  [data-reveal], [data-hero-fade] { opacity: 1 !important; transform: none !important; }
}
