:root {
  color-scheme: dark;
  --ink: #0A0A0C;
  --paper: #F2F0EA;
  --blue: #1F2FE0;
  --line: rgba(242, 240, 234, 0.3);
  --muted: rgba(242, 240, 234, 0.66);
  --mono: "Space Mono", monospace;
  --display: "Bricolage Grotesque", sans-serif;
  --gutter: clamp(1rem, 4vw, 3.5rem);
  --nav-height: 3.5rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-padding-top: var(--nav-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
a {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.site-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  margin-block-end: calc(var(--nav-height) * -1);
  padding-inline: var(--gutter);
  background: transparent;
}

.site-nav.is-solid {
  background: var(--ink);
}

.nav-brand {
  font-family: var(--display);
  /* full name, not "MLV": scales down on phones so it fits next to SUARA + RESERVASI */
  font-size: clamp(0.95rem, 4.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sound-toggle {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper);
  padding: 0.55rem 0.8rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.2;
  text-decoration: none;
}

.sound-toggle {
  cursor: pointer;
}

.nav-reserve {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  padding: 0.55rem 0.8rem;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.2;
  text-decoration: none;
}

.sound-toggle[hidden] {
  display: none;
}

.sound-toggle.is-blinking {
  animation: sound-blink 1.2s ease-in-out 2;
}

@keyframes sound-blink {
  50% {
    opacity: 0.38;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  padding-block-start: var(--nav-height);
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: -2rem;
  background: url("assets/hero-poster.jpg") center / cover no-repeat;
  content: "";
  opacity: 0;
  transform: scale(1.08);
}

.hero-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(10, 10, 12, 0.3);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 60rem);
  align-self: flex-end;
  margin-inline: var(--gutter);
  margin-block-end: clamp(1.25rem, 4.5svh, 3.5rem);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 7.1vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title:focus {
  outline: none;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  max-width: 48rem;
  gap: 0;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.68);
}

.hero-info > div {
  display: flex;
  min-height: 2.75rem;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  border-inline-end: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
}

.hero-info > div:last-child {
  border-inline-end: 0;
}

.hero-info dt,
.hero-info dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.45;
}

.hero-info dt {
  color: var(--muted);
}

.hero-info dd {
  color: var(--paper);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blue);
  color: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 24s linear infinite;
}

.marquee-track p {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0.95rem 1.25rem;
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  white-space: nowrap;
}

.marquee-track span {
  font-weight: 700;
}

@keyframes marquee-run {
  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  padding-inline: var(--gutter);
}

.theme-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  padding-block: clamp(5rem, 11vw, 10rem);
}

.theme-section .door-reveal-content {
  position: relative;
  z-index: 1;
}

/* Old-film intro behind "COME AS YOU WERE": a washed-out black-and-white photo that flickers,
   blooms into colour, then dims so the headline can sit on top. Only opacity/transform are animated. */
.come-film {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink);
}

.come-film-photo,
.come-film-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.come-film-photo img {
  object-fit: cover;
  object-position: center 62%;
}

.come-film-bw {
  opacity: 0;
}

.come-film-white,
.come-film-flicker-wrap,
.come-film-flicker,
.come-film-black {
  position: absolute;
  inset: 0;
}

.come-film-white {
  background: var(--paper);
  opacity: 0;
}

.come-film-flicker-wrap {
  opacity: 0;
}

.come-film-flicker {
  background: var(--paper);
  animation: film-flicker 0.9s steps(1) infinite;
}

.come-film-grain {
  position: absolute;
  inset: -50%;
  background: url("assets/come/grain.jpg") repeat;
  mix-blend-mode: overlay;
  opacity: 0.55;
  animation: film-grain 0.6s steps(1) infinite;
}

/* Final state (also what reduced-motion / no-GSAP visitors see): colour photo dimmed, headline on top. */
.come-film-black {
  background: var(--ink);
  opacity: 0.72;
}

@keyframes film-flicker {
  0% { opacity: 0.12; }
  12% { opacity: 0.02; }
  24% { opacity: 0.22; }
  36% { opacity: 0.06; }
  52% { opacity: 0.16; }
  68% { opacity: 0; }
  84% { opacity: 0.26; }
}

@keyframes film-grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-6%, 4%); }
  40% { transform: translate(5%, -7%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(7%, 5%); }
}

.door-scene {
  position: relative;
}

.door-stage {
  position: relative;
}

.door-panels,
.door-panels[hidden] {
  display: none;
}

.door-scene.is-animated {
  height: 260svh;
}

.door-scene.is-animated .door-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: clip;
  isolation: isolate;
}

.door-scene.is-animated .theme-section {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-block: clamp(2rem, 7svh, 6rem);
}

.door-scene.is-animated .door-reveal-content {
  width: 100%;
  opacity: 0;
  transform: scale(0.96);
}

.door-scene.is-animated .come-film-bw {
  opacity: 1;
}

.door-scene.is-animated .come-film-white {
  opacity: 0.35;
}

.door-scene.is-animated .come-film-flicker-wrap {
  opacity: 1;
}

.door-scene.is-animated .come-film-black {
  opacity: 0;
}

.door-scene.is-animated .door-panels {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.door-leaf {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.door-leaf-left {
  transform-origin: left center;
}

.door-leaf-right {
  transform-origin: right center;
}

.door-leaf picture,
.door-leaf img {
  display: block;
  width: 100%;
  height: 100%;
}

.door-leaf img {
  object-fit: cover;
}

.door-leaf-left img {
  object-position: right 48%;
}

.door-leaf-right img {
  object-position: left 48%;
}

.door-shadow {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.4);
  opacity: 0;
  pointer-events: none;
}

.theme-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(13rem, 0.65fr);
  align-items: end;
  gap: 2rem;
  margin-block-start: 1.5rem;
}

.theme-layout h2,
.section-heading h2,
.price-heading h2,
.recap-heading h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
  text-transform: uppercase;
}

.theme-layout p {
  max-width: 25rem;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  line-height: 1.8;
}

.theme-layout .theme-stamp {
  margin: 0 0 0.75rem;
  color: var(--blue);
  line-height: 1;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.tables-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.price-heading h2,
.recap-heading h2,
.faq-heading h2 {
  margin-block-start: 1rem;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.84;
}

.tables-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.table-plan {
  width: min(100%, 24rem);
  margin: 0;
}

.table-plan-link {
  display: block;
}

.table-plan-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85svh;
  border: 1px solid var(--line);
  object-fit: contain;
}

.table-plan-link:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.table-plan figcaption {
  margin-block-start: 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.6;
}

.table-plan figcaption small {
  display: inline-block;
  margin-block-start: 0.35rem;
  font-size: 0.58rem;
}

.table-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  border-block-start: 1px solid var(--line);
  padding: 1rem 0.5rem 1rem 0;
  font-size: 0.72rem;
  line-height: 1.5;
  white-space: nowrap;
}

thead th {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 400;
}

tbody th {
  font-weight: 400;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-block-end: 1px solid var(--line);
}

.price-section {
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 8vw, 8rem);
  padding-block: clamp(5rem, 11vw, 10rem);
}

.price-heading h2 {
  font-size: clamp(3.25rem, 7vw, 6.5rem);
}

.age-note {
  display: inline-block;
  margin: 2rem 0 0;
  border: 1px solid var(--blue);
  padding: 0.65rem 0.8rem;
  color: var(--paper);
  font-size: 0.7rem;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 0.75rem;
  border-block-end: 1px solid var(--line);
  padding-block: 0.75rem;
}

.bottle-thumb,
.bottle-thumb-slot {
  display: block;
  width: 64px;
  height: 96px;
  flex: 0 0 64px;
}

.bottle-thumb {
  object-fit: contain;
}

.bottle-thumb-empty {
  background: transparent;
}

.bottle-name {
  min-width: 0;
  flex: 1 1 auto;
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  line-height: 1.4;
}

.bottle-prices {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: clamp(0.55rem, 2vw, 1.5rem);
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  white-space: nowrap;
}

.bottle-prices del {
  color: var(--muted);
}

.bottle-prices strong {
  color: var(--paper);
}

.price-footnote {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.recap-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--ink);
}

.recap-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 3rem;
}

.recap-heading > p {
  max-width: 17rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.recap-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 15rem 13rem;
  gap: clamp(0.65rem, 2vw, 1.5rem);
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #18181c;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.8rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.82));
  color: var(--paper);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.gallery-item-wide {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.gallery-item-tall {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item:nth-of-type(3) {
  grid-column: 3;
  grid-row: 2;
}

/* Full-bleed Vol.1 poster behind the FAQ, pre-blurred and darkened so its old date / venue can't be read. */
.faq-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--ink) url("assets/faq/faq-bg.jpg") center / cover no-repeat;
}

.faq-list details {
  border-block-start: 1px solid var(--line);
}

.faq-list details:last-child {
  border-block-end: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  line-height: 1.5;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 0;
  content: "+";
  color: var(--paper);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 40rem;
  margin: 0;
  padding: 0 2rem 1.3rem 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.8;
}

.site-footer {
  overflow: hidden;
  border-block-start: 1px solid var(--line);
  padding-block: 2.5rem 1rem;
}

.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-tagline,
.footer-contact-label,
.footer-phone {
  margin: 0;
}

.footer-tagline {
  font-size: clamp(0.72rem, 1vw, 0.85rem);
}

.footer-contact-label {
  margin-block-start: 2rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.footer-phone {
  margin-block-start: 0.45rem;
  font-size: 0.75rem;
}

.social-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.social-links a {
  font-size: 0.65rem;
  text-decoration: none;
}

.footer-wordmark {
  width: max-content;
  max-width: 100%;
  margin: clamp(3rem, 9vw, 7rem) 0 1rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 13.2vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.75;
  white-space: nowrap;
}

.asset-credit {
  margin: 0;
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.6;
}

.entry-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  background: #0A0A0C;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

/* Vol.1 balloon pool photo with the tilted "2016" marks baked in; the centre is already darkened for the logo. */
.entry-gate::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("assets/entry/entry-bg.jpg") center / cover no-repeat;
  content: "";
}

@media (max-aspect-ratio: 1 / 1) {
  .entry-gate::before {
    background-image: url("assets/entry/entry-bg-mobile.jpg");
  }
}

.entry-gate.is-leaving {
  opacity: 0;
  transform: translateY(-1.25rem);
}

.entry-logo {
  margin: 0 0 2.5rem;
  color: var(--paper);
  font-family: var(--display);
  /* "MAISON" / "LA VIDA" on two lines; 22vw keeps MAISON inside a 360px screen */
  font-size: clamp(3.5rem, 22vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-align: center;
  text-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.5);
}

.entry-logo span {
  display: block;
}

.entry-button {
  min-width: min(20rem, calc(100vw - 2rem));
  min-height: 4rem;
  border: 0;
  padding: 1rem 2rem;
  background: var(--blue);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.entry-caption {
  margin: 0.85rem 0 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.7);
}

.entry-gate[hidden] {
  display: none;
}

@media (min-aspect-ratio: 1 / 1) {
  .hero-copy {
    margin-block-end: clamp(2rem, 6svh, 5rem);
  }
}

@media (max-aspect-ratio: 1 / 1) {
  :root {
    --nav-height: 3.5rem;
  }

  .sound-toggle {
    min-height: 3rem;
    padding-inline: 0.65rem;
    font-size: 0.58rem;
  }

  .nav-reserve {
    min-height: 3rem;
    padding-inline: 0.65rem;
    font-size: 0.58rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .hero {
    display: grid;
    height: 100svh;
    min-height: 36rem;
    padding-block-start: var(--nav-height);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    inset: auto;
    grid-row: 1;
    min-height: 0;
    background: var(--ink);
  }

  .hero.has-mobile-source .hero-media {
    position: absolute;
    inset: var(--nav-height) 0 0;
    grid-row: auto;
  }

  .hero-media::before {
    opacity: 1;
    filter: blur(40px) brightness(0.5);
    transform: scale(1.2);
  }

  .hero-video {
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: none;
  }

  .hero-video.is-mobile-source {
    aspect-ratio: auto;
    object-fit: cover;
  }

  /* portrait video runs full screen behind the title: darken the bottom so the text stays readable */
  .hero.has-mobile-source .hero-shade {
    background: linear-gradient(rgba(10, 10, 12, 0.15) 35%, rgba(10, 10, 12, 0.88) 78%);
  }

  .hero-shade {
    background: rgba(10, 10, 12, 0.12);
  }

  .hero-copy {
    z-index: 3;
    grid-row: 2;
    width: auto;
    align-self: auto;
    margin: 0 var(--gutter) 1rem;
  }

  .hero-title {
    margin-block-end: 0.75rem;
    font-size: clamp(2rem, 8.7vw, 3.25rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
  }

  .hero-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block-end: 0.75rem;
  }

  .hero-info > div {
    min-height: 2.45rem;
    border-inline-end: 1px solid var(--line);
    border-block-end: 1px solid var(--line);
    padding: 0.35rem 0.55rem;
  }

  .hero-info > div:nth-child(2n) {
    border-inline-end: 0;
  }

  .hero-info > div:nth-last-child(-n + 1) {
    border-block-end: 0;
  }

  .hero-info dt,
  .hero-info dd {
    font-size: 0.56rem;
  }

  .theme-section {
    padding-block: 5rem;
  }

  .come-film-photo img {
    object-position: center bottom;
  }

  .door-scene.is-animated {
    height: 240svh;
  }

  .theme-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .theme-layout h2 {
    font-size: clamp(3.8rem, 17vw, 7rem);
  }

  .section-heading {
    align-items: start;
  }

  .tables-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .price-section,
  .faq-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .price-heading h2,
  .faq-heading h2 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .age-note {
    margin-block-start: 1.25rem;
  }

  .recap-heading {
    align-items: start;
  }

  .recap-heading h2 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .recap-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 12rem 10rem;
    gap: 0.65rem;
  }

  .gallery-item-wide {
    grid-column: span 2;
    grid-row: 1;
  }

  .gallery-item-tall {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-item:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .bottle-thumb,
  .bottle-thumb-slot {
    width: 48px;
    height: 72px;
    flex-basis: 48px;
  }

  .price-list li {
    min-height: 5.75rem;
    gap: 0.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-wordmark {
    font-size: clamp(3rem, 13vw, 6rem);
  }
}

@media (max-width: 380px) and (max-aspect-ratio: 1 / 1) {
  .hero-title {
    font-size: 1.92rem;
  }

  /* "DUDUK DI MANA?" is the longest heading line; keep it on one line down to 320px */
  .section-heading h2 {
    font-size: 13vw;
  }

  .hero-info dt,
  .hero-info dd {
    font-size: 0.52rem;
  }

  .hero-info > div {
    padding-inline: 0.42rem;
  }

  .bottle-prices {
    gap: 0.45rem;
  }

  .bottle-name,
  .bottle-prices {
    font-size: 0.59rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none;
  }

  .gallery-item img {
    transition: none;
  }

  .entry-gate {
    transition-duration: 1ms;
  }

  .sound-toggle.is-blinking {
    animation: none;
  }

  .door-scene.is-animated {
    height: auto;
  }

  .door-scene.is-animated .door-stage {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .door-scene.is-animated .theme-section {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .door-scene.is-animated .door-panels {
    display: none;
  }

  .door-scene.is-animated .door-reveal-content {
    opacity: 1;
    transform: none;
  }

  .come-film-flicker,
  .come-film-grain {
    animation: none;
  }

  .door-scene.is-animated .come-film-bw,
  .door-scene.is-animated .come-film-white,
  .door-scene.is-animated .come-film-flicker-wrap {
    opacity: 0;
  }

  .door-scene.is-animated .come-film-black {
    opacity: 0.72;
  }
}
