@charset "utf-8";

@font-face {
  font-family: "Third Sans";
  src: url("fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #15120f;
  --muted: #675d51;
  --paper: #f4eee2;
  --cream: #fff9eb;
  --stone: #ded2bf;
  --mist: #dbe1d4;
  --sun: #f5cc6a;
  --orange: #ff5a1f;
  --blue: #1d6072;
  --charcoal: #11100e;
  --line: rgba(21,18,15,.24);
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
section { scroll-margin-top: 74px; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Third Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--orange);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { transform: none; }

.draw-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 0;
  background: transparent;
  padding: 4px 7px;
  cursor: pointer;
  isolation: isolate;
}
.draw-link::after {
  content: "";
  position: absolute;
  inset: -7px -12px;
  z-index: -1;
  border: 1.4px solid currentColor;
  border-radius: 49% 51% 44% 56% / 58% 43% 57% 42%;
  opacity: 0;
  transform: rotate(-4deg) scale(.86);
  transition: opacity .22s var(--ease), transform .22s var(--ease), border-radius .22s var(--ease);
}
.draw-link:hover::after,
.draw-link:focus-visible::after,
.draw-link.is-active::after {
  opacity: 1;
  transform: rotate(-2deg) scale(1);
  border-radius: 58% 42% 52% 48% / 45% 60% 40% 55%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(92px, 150px) 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 8px clamp(16px, 4vw, 54px);
  color: var(--cream);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255,249,235,.94);
  border-bottom: 1px solid rgba(21,18,15,.18);
  backdrop-filter: blur(14px);
}
.brand {
  width: clamp(80px, 9vw, 126px);
  display: grid;
}
.brand img {
  grid-area: 1 / 1;
  width: 100%;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.36));
  transition: opacity .25s var(--ease);
}
.brand .logo-dark { opacity: 0; filter: none; }
.site-header.is-scrolled .logo-light { opacity: 0; }
.site-header.is-scrolled .logo-dark { opacity: 1; }
.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.language-picker {
  position: relative;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
#languageToggle {
  min-width: 44px;
  min-height: 30px;
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 116px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(21,18,15,.15);
}
.language-menu.is-open { display: grid; }
.language-menu button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}
.language-menu button:last-child { border-bottom: 0; }
.language-menu button:hover,
.language-menu button.is-active {
  background: var(--orange);
  color: white;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}
.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 100px 26px 32px;
  color: var(--cream);
  background: var(--charcoal);
  transform: translateX(105%);
  transition: transform .38s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-size: clamp(2rem, 9.5vw, 4rem);
  line-height: .95;
  font-weight: 830;
  letter-spacing: -.06em;
}
.mobile-cta {
  margin-top: auto;
  color: var(--sun);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: var(--cream);
  background: var(--charcoal);
  padding: 110px clamp(16px, 4vw, 54px) 30px;
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: .84;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(255,90,31,.2), transparent 30vw),
    linear-gradient(90deg, rgba(17,16,14,.96), rgba(17,16,14,.63) 42%, rgba(17,16,14,.2)),
    linear-gradient(180deg, rgba(17,16,14,.1), rgba(17,16,14,.92));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(900px, 100%);
  margin-left: clamp(0px, 8vw, 140px);
  margin-bottom: clamp(58px, 10vw, 112px);
}
h1 {
  min-height: 2.2em;
  margin: 0;
  max-width: 940px;
  font-size: clamp(3.3rem, 8vw, 9.5rem);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 830;
  white-space: pre-wrap;
}
h1::after,
.typing-active::after {
  content: "";
  display: inline-block;
  width: .52ch;
  height: .86em;
  margin-left: .14em;
  transform: translateY(.12em);
  background: currentColor;
  animation: cursorBlink .9s steps(2, start) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }
.hero-action {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 78px);
  top: 52%;
  transform: translateY(-50%);
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.showreel-link {
  gap: 10px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 430;
  letter-spacing: .12em;
}
.showreel-link span {
  font-size: .85em;
  transform: translateY(-.03em);
}
.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255,249,235,.22);
  background: rgba(17,16,14,.42);
  color: rgba(255,249,235,.74);
}
.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker span {
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.scene {
  min-height: 130svh;
  position: relative;
  overflow: clip;
  background: var(--cream);
  border-top: 1px solid rgba(21,18,15,.16);
}
.scene-shell {
  min-height: 100svh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding: clamp(74px, 7vw, 96px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 76px);
}
.scene-panel {
  width: min(1400px, 100%);
  margin: 0 auto;
  transition: transform .95s var(--ease), opacity .7s var(--ease);
}
body.js-ready .scene:not(.scene-active) .scene-panel { opacity: .25; }
body.js-ready .scene-left:not(.scene-active) .scene-panel { transform: translateX(-18vw); }
body.js-ready .scene-right:not(.scene-active) .scene-panel { transform: translateX(18vw); }
.studio-scene { background: var(--cream); }
.highlights-scene { background: var(--paper); }
.cinema-scene { background: var(--mist); }
.production-scene { background: var(--stone); }
.publicity-scene { background: #f8f5ec; }
.publicity-scene .section-heading {
  margin-bottom: clamp(14px, 2.2vw, 26px);
}
.publicity-scene .section-heading h2 {
  font-size: clamp(2.4rem, 4.65vw, 5.1rem);
  min-height: 1.15em;
}
.publicity-scene .list-row strong {
  font-size: clamp(2rem, 4.1vw, 4.55rem);
}
.contact-scene {
  min-height: 112svh;
  background: var(--sun);
}

.studio-index {
  border-top: 1px solid rgba(21,18,15,.38);
  width: min(820px, 66%);
}
.index-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.05fr) minmax(220px, .6fr);
  gap: clamp(14px, 3vw, 44px);
  align-items: baseline;
  min-height: clamp(70px, 11vh, 118px);
  border-bottom: 1px solid rgba(21,18,15,.28);
  padding: clamp(14px, 2.3vh, 24px) 0;
}
.index-lead {
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: clamp(150px, 24vh, 260px);
  align-items: start;
}
.index-row span,
.section-heading span,
.work-card span,
.contact-copy span {
  display: block;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.index-lead h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.index-lead p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.42;
}
.index-row strong {
  font-size: clamp(1.75rem, 4.1vw, 4.9rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.index-row em {
  justify-self: end;
  color: var(--muted);
  font-style: normal;
  line-height: 1.3;
  text-align: right;
}
.studio-scene .scene-panel {
  position: relative;
  min-height: 70svh;
}
.studio-images {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42%, 560px);
  pointer-events: none;
}
.studio-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: transparent;
}
.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.studio-image.tall {
  width: 45%;
  height: 62%;
  right: 10%;
  top: 2%;
}
.studio-image:nth-child(2) {
  width: 43%;
  height: 28%;
  right: 48%;
  bottom: 12%;
}
.studio-image:nth-child(3) {
  width: 37%;
  height: 24%;
  right: 2%;
  bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(100px, 170px) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(22px, 3.4vw, 42px);
}
.section-heading h2 {
  min-height: 1.45em;
  margin: 0;
  max-width: 960px;
  font-size: clamp(2.45rem, 5.35vw, 5.9rem);
  line-height: .94;
  letter-spacing: -.075em;
  white-space: pre-wrap;
}
.work-grid {
  max-height: 52svh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.work-card {
  min-height: 26svh;
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  cursor: pointer;
}
.work-card.wide { grid-row: span 2; }
.work-card img {
  width: 100%;
  height: 100%;
  min-height: 26svh;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}
.work-card:hover img { transform: scale(1.035); filter: saturate(1.08) contrast(1.08); }
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(17,16,14,.84));
}
.work-card div {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2.5vw, 30px);
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  color: var(--cream);
}
.work-card div span,
.work-card div p {
  display: none;
}
.work-card h3 {
  margin: 8px 0;
  font-size: clamp(2rem, 5vw, 5.6rem);
  line-height: .86;
  letter-spacing: -.075em;
}
.work-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255,249,235,.76);
}
.rail {
  max-height: 52svh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rail-card {
  min-height: 46svh;
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  cursor: pointer;
}
.rail-card img {
  width: 100%;
  height: 100%;
  min-height: 46svh;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.rail-card:hover img { transform: scale(1.035); }
.rail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0,0,0,.78));
}
.rail-card h3 {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.production-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  grid-template-rows: repeat(2, minmax(150px, 21svh));
  gap: 14px;
}
.production-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 0;
}
.production-grid img:first-child { grid-row: span 2; }
.production-grid img:nth-child(3) { grid-column: 2; }
.production-grid img:nth-child(4) { grid-column: 3; grid-row: 1; }
.production-note {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  position: relative;
  max-width: 35ch;
  margin: 0;
  color: rgba(21,18,15,.76);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.42;
  text-align: left;
  text-wrap: balance;
  font-style: italic;
  transform: rotate(5deg);
  padding: 26px 30px;
}
.production-note::before {
  content: "";
  position: absolute;
  inset: 14px 0 2px -4px;
  border: 1.5px solid rgba(21,18,15,.7);
  border-radius: 54% 46% 50% 50% / 48% 54% 46% 52%;
  transform: rotate(-3.4deg);
  pointer-events: none;
}
.commercial-list {
  border-top: 1px solid rgba(21,18,15,.34);
}
.list-row {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr minmax(180px, .44fr);
  gap: 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(21,18,15,.34);
  background: transparent;
  padding: clamp(9px, 1.45vh, 15px) 0;
  cursor: pointer;
  text-align: left;
}
.list-row strong {
  font-size: clamp(1.9rem, 4.45vw, 4.9rem);
  line-height: .9;
  letter-spacing: -.075em;
}
.list-row em {
  font-style: normal;
  color: var(--muted);
}
.list-row:hover strong { color: var(--orange); }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}
.contact-copy h2 {
  min-height: 0;
  max-width: 880px;
  margin: 18px 0 0;
  font-size: clamp(2.6rem, 5.7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -.065em;
  white-space: pre-wrap;
}
.contact-copy p {
  max-width: 560px;
  margin-top: clamp(22px, 3vw, 38px);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.45;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.contact-actions p {
  margin: 18px 0 0;
  color: rgba(21,18,15,.72);
  line-height: 1.5;
}
.floating-whatsapp {
  position: fixed;
  z-index: 85;
  right: clamp(22px, 3vw, 44px);
  bottom: 74px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-weight: 860;
  font-size: 13px;
  letter-spacing: .04em;
  box-shadow: 5px 5px 0 rgba(21,18,15,.16);
}
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}
body.is-contact .floating-whatsapp { display: none; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header {
  color: var(--cream);
  background: var(--charcoal);
}
.cookie-question {
  position: fixed;
  z-index: 120;
  left: 18px;
  bottom: 18px;
  width: min(560px, calc(100vw - 36px));
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 9px 9px 0 rgba(21,18,15,.16);
  padding: 16px;
}
.cookie-question.is-visible { display: grid; }
.cookie-question strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.cookie-question p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-actions button::after {
  content: "";
  position: absolute;
  inset: 1px -4px;
  border: 1px solid currentColor;
  border-radius: 52% 48% 44% 56% / 50% 45% 55% 50%;
}
.video-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10,9,8,.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease);
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.modal-frame {
  width: min(1100px, 96vw);
  aspect-ratio: 16 / 9;
  background: black;
}
.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: white;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .74s var(--ease), transform .74s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.typing-active { white-space: pre-wrap; }
.typing-active::after {
  content: "";
  display: inline-block;
  width: .52ch;
  height: .86em;
  margin-left: .14em;
  transform: translateY(.12em);
  background: currentColor;
  animation: cursorBlink .9s steps(2, start) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: minmax(88px, 1fr) auto auto; }
  .menu-toggle { display: inline-flex; }
  .scene,
  .contact-scene { min-height: auto; }
  .scene-shell {
    position: relative;
    min-height: 100svh;
  }
  body.js-ready .scene:not(.scene-active) .scene-panel {
    opacity: 1;
    transform: none;
  }
  .studio-index,
  .work-grid,
  .rail,
  .production-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .studio-index {
    width: 100%;
  }
  .studio-scene .scene-panel {
    min-height: auto;
  }
  .studio-images {
    position: relative;
    inset: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .studio-image,
  .studio-image.tall,
  .studio-image:nth-child(2),
  .studio-image:nth-child(3) {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: 220px;
  }
  .studio-image.tall {
    grid-row: span 2;
    height: auto;
    min-height: 452px;
  }
  .index-lead,
  .work-card.wide,
  .production-grid img:first-child,
  .production-grid img:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }
  .work-grid,
  .rail {
    max-height: none;
  }
  .work-card,
  .rail-card,
  .work-card img,
  .rail-card img {
    min-height: 360px;
  }
  .production-grid {
    grid-template-rows: none;
  }
  .production-grid img {
    min-height: 230px;
  }
  .production-note {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
    max-width: 100%;
    text-align: left;
    transform: none;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-height: 830px) and (min-width: 900px) {
  .scene-shell {
    padding-top: 72px;
    padding-bottom: 44px;
  }
  .section-heading {
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: clamp(2.25rem, 4.75vw, 5.25rem);
    min-height: 1.25em;
  }
  .work-grid,
  .rail {
    max-height: 50svh;
  }
  .rail-card,
  .rail-card img {
    min-height: 45svh;
  }
  .production-grid {
    grid-template-rows: repeat(2, minmax(134px, 19.5svh));
  }
  .list-row {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .list-row strong {
    font-size: clamp(1.8rem, 3.9vw, 4.3rem);
  }
}

@media (max-width: 680px) {
  section { scroll-margin-top: 64px; }
  .site-header { padding: 9px 14px; }
  .brand { width: 92px; }
  .hero { padding: 94px 14px 32px; }
  h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
    min-height: 3.2em;
  }
  .hero-action {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    align-self: center;
    justify-self: center;
    margin: clamp(28px, 8vw, 48px) 0 44px;
  }
  .hero-copy {
    margin-left: 0;
  }
  .scene-shell { padding: 86px 14px 36px; }
  .index-row {
    grid-template-columns: 40px 1fr;
  }
  .index-row em {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
  .index-lead { min-height: 190px; }
  .studio-images {
    grid-template-columns: 1fr;
  }
  .studio-image.tall,
  .studio-image,
  .studio-image:nth-child(2),
  .studio-image:nth-child(3) {
    min-height: 0;
    height: 230px;
  }
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 11vw, 4.4rem);
    line-height: 1.04;
  }
  .list-row {
    grid-template-columns: 42px 1fr;
    gap: 8px 14px;
  }
  .list-row em { grid-column: 2; }
  .cookie-question {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
  }
  .cookie-actions { justify-content: flex-start; }
  .floating-whatsapp {
    right: 18px;
    bottom: 74px;
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  body.js-ready .scene:not(.scene-active) .scene-panel,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
