:root {
  --cream: #f3eee6;
  --paper: #faf7f2;
  --ink: #14120f;
  --muted: #6a645c;
  --sage: #6d7f58;
  --deep: #1c1a17;
  --line: rgba(20, 18, 15, 0.12);
  --nav: 86px;
  --logo-h: clamp(110px, 13vw, 188px);
  --logo-w: calc(var(--logo-h) * 0.83);
  --pad: clamp(16px, 4vw, 48px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav) + env(safe-area-inset-top, 0px) + 8px);
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: clip;
}
body.menu-open, body.viewer-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, .studio-index {
  font-family: Syne, system-ui, sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7.2vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0 0 1em; color: var(--muted); }
.wrap { width: min(1280px, calc(100% - 2 * var(--pad))); margin: 0 auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 40; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.intro { max-width: 46ch; margin-bottom: 0; }

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: visible;
  min-height: var(--nav);
  padding: calc(10px + env(safe-area-inset-top, 0px)) var(--pad) 10px;
  background: rgba(243, 238, 230, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background .35s, min-height .4s, box-shadow .35s;
}
.nav.scrolled, .nav.menu-open {
  --logo-h: 76px;
  background: rgba(243, 238, 230, 0.96);
  box-shadow: 0 10px 30px rgba(20, 18, 15, 0.06);
}
.nav-brand {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  justify-self: center;
  align-self: center;
  position: relative;
  display: block;
  width: var(--logo-w);
  height: 64px;
  overflow: visible;
  text-decoration: none;
}
.nav-brand img {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  height: var(--logo-h);
  width: auto;
  max-width: none;
  object-fit: contain;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  -webkit-mask: url("/images/stamp-mask.svg?v=2") center / 100% 100% no-repeat;
  mask: url("/images/stamp-mask.svg?v=2") center / 100% 100% no-repeat;
  filter:
    drop-shadow(0 0.6px 0 rgba(20, 18, 15, 0.22))
    drop-shadow(0 14px 28px rgba(20, 18, 15, 0.2));
  transition: height .4s cubic-bezier(.2,.8,.2,1), top .4s, transform .4s, filter .35s;
}
.nav.scrolled .nav-brand img,
.nav.menu-open .nav-brand img {
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0.6px 0 rgba(20, 18, 15, 0.18));
}
.nav-links {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}
.nav-links::before {
  content: "";
  grid-column: 2;
  width: var(--logo-w);
  height: 1px;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  pointer-events: auto;
}
.nav-cluster--left {
  grid-column: 1;
  justify-content: flex-end;
  padding-right: clamp(12px, 1.8vw, 32px);
}
.nav-cluster--right {
  grid-column: 3;
  justify-content: flex-start;
  padding-left: clamp(12px, 1.8vw, 32px);
}
.nav-cluster a {
  text-decoration: none;
  font-size: clamp(0.72rem, 0.55vw + 0.55rem, 0.9rem);
  position: relative;
  white-space: nowrap;
}
.nav-cluster a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: currentColor; transition: right .35s;
}
.nav-cluster a:not(.btn):hover::after { right: 0; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  grid-column: 3; grid-row: 1; justify-self: end; z-index: 3;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); margin: 6px 0; transition: .25s; }
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  border-radius: 999px; padding: 14px 24px; min-height: 48px;
  font: 500 0.92rem Outfit, sans-serif;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s, background .35s, color .35s;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; background: #fff;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.btn:hover { transform: translateY(-1px); }
.btn:hover::before { transform: translateX(0); }
.btn-nav { background: var(--ink); color: #fff !important; padding: 11px 20px; min-height: 42px; }
.btn-nav:hover { color: var(--ink) !important; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: #fff; }
.btn-light::before { background: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { color: var(--ink); border-color: #fff; }
.btn-ghost-dark {
  background: transparent; color: var(--paper); border: 1px solid rgba(250,247,242,.28);
  width: fit-content; margin-top: 8px;
}
.btn-ghost-dark:hover { color: var(--deep); border-color: #fff; }
.btn-solid { background: var(--ink); color: #fff; width: 100%; }
.btn-solid:hover { color: var(--ink); }

.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.hero-slides, .hero-slide, .hero-veil, .hero-grain { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.12);
  transition: opacity 1.4s ease, transform 9s ease;
  filter: saturate(1.05) contrast(1.04);
}
.hero-slide.s1 { background-image: url("/images/stanze/gelso/1.jpg"); }
.hero-slide.s2 { background-image: url("/images/stanze/mimosa/5.jpg"); }
.hero-slide.s3 { background-image: url("/images/stanze/glicine/1.jpg"); }
.hero-slide.is-on { opacity: 1; transform: scale(1); }
.hero-veil {
  background:
    linear-gradient(90deg, rgba(12,11,9,.62) 0%, rgba(12,11,9,.18) 55%, rgba(12,11,9,.35) 100%),
    linear-gradient(180deg, rgba(12,11,9,.2) 0%, rgba(12,11,9,.08) 40%, rgba(12,11,9,.72) 100%);
}
.hero-grain {
  opacity: .12; pointer-events: none; mix-blend-mode: overlay;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-copy {
  position: relative; z-index: 1;
  width: min(920px, calc(100% - 2 * var(--pad)));
  margin: 0 auto calc(11vh + env(safe-area-inset-bottom, 0px));
  padding-top: calc(var(--nav) + max(28px, var(--logo-h) * 0.42));
}
.hero-copy .eyebrow { color: #e7dcc4; }
.hero-copy h1 { color: #fff; max-width: 14ch; }
.hero-copy .lede { color: rgba(255,255,255,.86); max-width: 46ch; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.hero-meta {
  position: absolute; left: var(--pad); right: var(--pad);
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  z-index: 2; display: flex; justify-content: space-between; align-items: center;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 36px; height: 3px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.28);
}
.hero-dots button.on { background: #fff; }
.scroll-hint {
  color: #fff; text-decoration: none; letter-spacing: .22em;
  text-transform: uppercase; font-size: .68rem;
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 34px;
  background: #fff;
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.welcome, .structure, .around, .arrive, .rules, .book {
  padding: clamp(72px, 10vw, 128px) 0;
}
.welcome { background: var(--paper); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}
.note {
  font-family: Syne, sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.25;
}
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.facts article {
  background: var(--paper); padding: 28px 22px;
  transition: background .35s;
}
.facts article:hover { background: #efe8dc; }
.facts strong {
  display: block; font-family: Syne, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.05em;
}
.facts span { color: var(--muted); font-size: .9rem; }

.structure { background: var(--cream); }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 36px 0 0; list-style: none; }
.pills li {
  border: 1px solid var(--line); padding: 10px 16px; font-size: .88rem;
  transition: background .3s, color .3s, border-color .3s;
}
.pills li:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.rooms {
  background: var(--deep);
  color: var(--paper);
  padding: clamp(64px, 8vw, 96px) 0 0;
}
.rooms .eyebrow { color: #c4b48a; }
.rooms h2 { color: #fff; }
.rooms .intro { color: rgba(250,247,242,.68); margin-bottom: 40px; }
.rooms-head { margin-bottom: 8px; }

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 26rem);
  min-height: min(82vh, 820px);
  gap: 0;
}
.studio-frame {
  position: relative; overflow: hidden;
  min-height: clamp(280px, 62vh, 620px);
  background: #000;
}
.studio-photos, .studio-photos img { position: absolute; inset: 0; width: 100%; height: 100%; }
.studio-photos { cursor: pointer; }
.studio-photos img {
  object-fit: cover; opacity: 0; transform: scale(1.08);
  transition: opacity .85s ease, transform 6s ease;
  filter: saturate(1.06);
}
.studio-photos img.is-on { opacity: 1; transform: scale(1); }
.studio-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28); background: rgba(0,0,0,.28);
  color: #fff; font-size: 1.6rem; cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .3s, transform .3s;
  z-index: 2;
}
.studio-arrow:hover { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.06); }
.studio-arrow.prev { left: 18px; }
.studio-arrow.next { right: 18px; }
.studio-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.16);
}
.studio-progress i {
  display: block; height: 100%; width: 0; background: #fff;
  transform-origin: left;
}
.studio-count {
  position: absolute; left: 22px; bottom: 18px;
  font-family: Syne, sans-serif; letter-spacing: .12em; font-size: .78rem;
  z-index: 2;
}
.studio-panel {
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, #23201c, #171512);
}
.studio-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.studio-tabs button {
  border: 1px solid rgba(255,255,255,.14); background: transparent; color: rgba(255,255,255,.55);
  padding: 8px 14px; font: 500 .82rem Outfit, sans-serif; cursor: pointer;
  transition: .3s;
}
.studio-tabs button.on, .studio-tabs button:hover {
  color: #fff; border-color: #fff; background: rgba(255,255,255,.06);
}
.studio-index {
  font-size: clamp(3.4rem, 6vw, 5.5rem); color: rgba(255,255,255,.08);
  margin: 0 0 4px; line-height: .8;
}
.studio-panel h3 { color: #fff; margin-top: -18px; }
.studio-panel p { color: rgba(250,247,242,.7); }
.studio-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 8px 0 18px;
}
.studio-thumbs button {
  padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden;
  aspect-ratio: 1; opacity: .45; transition: opacity .3s, transform .35s;
}
.studio-thumbs button.on, .studio-thumbs button:hover { opacity: 1; transform: translateY(-3px); }
.studio-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.around { background: var(--paper); }
.around-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.around-grid article, .rule-grid article, .access {
  background: var(--cream); padding: 28px 24px;
  transition: transform .4s, box-shadow .4s;
}
.around-grid article:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,18,15,.08); }
.tag { color: var(--sage); font-weight: 600; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.around-grid ul, .steps { margin: 0; padding-left: 1.1em; color: var(--muted); }
.around-grid li, .steps li { margin: 0 0 .7em; }

.arrive { background: var(--cream); }
.address address { font-style: normal; margin: 0 0 8px; color: var(--ink); }
.address a { color: var(--ink); }
.map-frame { overflow: hidden; min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.25) contrast(1.05); }

.rules { background: var(--paper); }
.rule-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.span-2 { grid-column: span 2; }
.warn { background: #eadfd0; }
.access { margin-top: 14px; }

.book { background: var(--deep); color: var(--paper); }
.book h2, .book .eyebrow { color: #fff; }
.book p { color: rgba(250,247,242,.7); }
.platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.platform {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px 16px 12px 12px;
  text-decoration: none;
  color: #fff;
  border: 0;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s, box-shadow .35s, filter .35s;
}
.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.2) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.platform > * { position: relative; z-index: 1; }
.platform:hover { transform: translateY(-3px); }
.platform:hover::before { transform: translateX(120%); }
.platform-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  background: #fff;
}
.platform.booking .platform-mark { color: #003580; }
.platform.airbnb .platform-mark { color: #ff385c; }
.platform-mark svg { width: 28px; height: 28px; display: block; }
.platform-copy { display: grid; gap: 2px; min-width: 0; }
.platform-copy small {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}
.platform-copy strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.platform-go {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: .7;
  transition: transform .35s, opacity .35s;
}
.platform:hover .platform-go { transform: translateX(4px); opacity: 1; }
.platform.booking {
  background: linear-gradient(135deg, #003580 0%, #0066b3 100%);
  box-shadow: 0 14px 32px rgba(0, 53, 128, .32);
}
.platform.airbnb {
  background: linear-gradient(135deg, #d70466 0%, #ff385c 55%, #ff5a5f 100%);
  box-shadow: 0 14px 32px rgba(255, 56, 92, .28);
}
@media (min-width: 560px) {
  .platforms { grid-template-columns: 1fr 1fr; }
}
.card-form {
  background: #faf7f2; color: var(--ink); padding: clamp(22px, 3vw, 36px);
  display: grid; gap: 14px;
}
.card-form p { color: var(--muted); }
.card-form label { display: grid; gap: 6px; font-size: .86rem; font-weight: 500; color: var(--ink); }
.card-form input, .card-form select, .card-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 0;
  padding: 12px; font: inherit; font-size: 16px; background: #fff; min-height: 48px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp { position: absolute; left: -9999px; }
.form-msg { min-height: 1.4em; margin: 0; }
.form-msg.ok { color: var(--sage); }
.form-msg.err { color: #9a3b2f; }

.footer {
  background: #0e0d0b; color: #d8d0c4;
  padding: 48px 0 calc(28px + env(safe-area-inset-bottom, 0px));
}
.footer p { color: #d8d0c4; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.footer img { width: auto; height: 118px; object-fit: contain; margin-bottom: 12px; }
.tiny a { color: #b7a98c; }

.viewer {
  border: 0; padding: 0; width: 100%; height: 100%; max-width: none; max-height: none;
  background: #090807; color: #fff;
}
.viewer::backdrop { background: #090807; }
.viewer-stage {
  height: calc(100vh - 132px);
  display: grid; place-items: center; padding: 64px 80px 16px;
}
.viewer-stage img {
  max-width: min(92vw, 1200px); max-height: calc(100vh - 180px);
  object-fit: contain;
  animation: fadeUp .45s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: scale(.98); }
  to { opacity: 1; transform: none; }
}
.viewer-close, .viewer-arrow {
  position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.2);
  background: rgba(9,8,7,.4); color: #fff; cursor: pointer; backdrop-filter: blur(8px);
}
.viewer-close {
  top: 18px; right: 18px; padding: 10px 16px; font: 500 .85rem Outfit, sans-serif;
}
.viewer-arrow {
  top: 42%; width: 56px; height: 56px; border-radius: 50%; font-size: 1.7rem;
}
.viewer-arrow.prev { left: 18px; }
.viewer-arrow.next { right: 18px; }
.viewer-bar { padding: 8px 24px 20px; text-align: center; }
.viewer-bar p { color: #fff; margin: 0 0 12px; }
.viewer-film {
  display: flex; gap: 8px; justify-content: center; overflow-x: auto;
  padding-bottom: 6px;
}
.viewer-film button {
  flex: 0 0 72px; height: 54px; padding: 0; border: 2px solid transparent;
  background: none; cursor: pointer; opacity: .45;
}
.viewer-film button.on { opacity: 1; border-color: #fff; }
.viewer-film img { width: 100%; height: 100%; object-fit: cover; }

.reveal { opacity: 0; transform: translateY(22px); animation: rise .9s ease forwards; }
.reveal:nth-child(2) { animation-delay: .12s; }
.reveal:nth-child(3) { animation-delay: .22s; }
.reveal:nth-child(4) { animation-delay: .32s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1280px) {
  .around-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1200px) {
  :root { --nav: 78px; --logo-h: clamp(52px, 14vw, 72px); }
  .nav-toggle { display: block; }
  .nav-brand { width: var(--logo-w); height: 58px; align-self: center; }
  .nav-brand img {
    position: relative; left: auto; top: auto;
    transform: none; padding: 0; max-width: var(--logo-w); height: var(--logo-h);
    filter: drop-shadow(0 0.6px 0 rgba(20, 18, 15, 0.18));
  }
  .nav-links {
    position: fixed;
    top: calc(var(--nav) + env(safe-area-inset-top, 0px));
    inset-inline: 0; bottom: 0;
    background: var(--cream);
    display: none;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 18px var(--pad) 40px;
    gap: 6px;
    pointer-events: auto;
    overflow: auto;
  }
  .nav-links::before { display: none; }
  .nav-links.open { display: flex; flex-direction: column; }
  .nav-cluster {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 4px;
  }
  .nav-cluster a { font-size: clamp(1.1rem, 3.4vw, 1.4rem); padding: 12px 0; font-family: Syne, sans-serif; }
  .nav-links .btn-nav { width: 100%; margin-top: 12px; }
  .studio { grid-template-columns: 1fr; min-height: 0; }
  .studio-frame { min-height: min(58vh, 520px); }
  .split, .grid-2, .around-grid, .rule-grid, .footer-grid, .row { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
}

@media (max-width: 700px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .studio-frame { min-height: min(48vh, 420px); }
  .studio-arrow { width: 44px; height: 44px; }
  .viewer-stage { padding: 72px 16px 12px; height: calc(100% - 160px); }
  .viewer-arrow { top: auto; bottom: 92px; }
  .map-frame, .map-frame iframe { min-height: 240px; }
  .hero-actions .btn { flex: 1 1 140px; }
  .hero-meta { flex-wrap: wrap; gap: 14px; }
  .hero-copy h1 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
}

@media (max-width: 480px) {
  .facts { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (max-height: 740px) {
  :root { --logo-h: clamp(72px, 18vh, 120px); }
  .hero { min-height: 100svh; }
  .studio-frame { min-height: min(52vh, 460px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .studio-photos img, .reveal { animation: none; transition: none; transform: none; opacity: 1; }
  .scroll-hint::after { animation: none; }
}
