:root {
  --ink: #1f2d37;
  --soft-ink: #5f6d69;
  --coral: #ef716a;
  --mint: #8dbfb1;
  --mint-dark: #5b9989;
  --cream: #fff9f1;
  --beige: #ead8bf;
  --wood: #d2ad79;
  --shadow: 0 22px 55px rgba(45, 55, 55, 0.12);
  --soft-shadow: 0 16px 38px rgba(45, 55, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  color: var(--ink);
  background: #fffdf8;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Hiragino Sans",
    system-ui, serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(141, 191, 177, 0.16), transparent 22rem),
    radial-gradient(circle at 92% 34%, rgba(239, 113, 106, 0.08), transparent 22rem),
    linear-gradient(180deg, #fffdf8 0%, #fffaf2 42%, #fff 100%);
}

body.opening-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fffdf8;
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-light {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 246, 198, 0.92), transparent 24rem),
    radial-gradient(circle at 80% 18%, rgba(141, 191, 177, 0.2), transparent 20rem),
    linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0 30%, rgba(255, 249, 239, 0.76) 48%, rgba(255, 255, 255, 0.94) 100%);
  animation: openingLight 3600ms ease both;
}

.opening-film {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.opening-shot {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: 0 24px 72px rgba(45, 55, 55, 0.12);
  opacity: 0;
  transform: translateY(22px) scale(1.04);
  animation: openingPhoto 3600ms ease both;
}

.opening-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 253, 248, 0.48), transparent 58%);
  content: "";
}

.opening-shot-window {
  top: 13%;
  right: 8%;
  width: min(480px, 38vw);
  height: min(330px, 34vh);
  background: url("./assets/hikari-hero-cafe.png") center / cover no-repeat;
}

.opening-shot-table {
  left: 10%;
  bottom: 13%;
  width: min(340px, 30vw);
  height: min(240px, 28vh);
  background: url("./assets/hikari-latte-sweets.png") center / cover no-repeat;
  animation-delay: 360ms;
}

.opening-shot-salon {
  right: 17%;
  bottom: 10%;
  width: min(300px, 26vw);
  height: min(210px, 24vh);
  background: url("./assets/hikari-salon-corner.png") center / cover no-repeat;
  animation-delay: 720ms;
}

.opening-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(720px, calc(100% - 48px));
  color: var(--ink);
  text-align: center;
  text-shadow: 0 1px 16px rgba(255, 253, 248, 0.72);
  opacity: 0;
  transform: translateY(18px);
  animation: openingCopy 3600ms ease both;
}

.opening-copy span {
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.opening-copy p {
  margin: 16px 0 0;
  font-size: clamp(30px, 4.7vw, 58px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  word-break: keep-all;
}

.opening-character {
  position: absolute;
  right: clamp(18px, 8vw, 96px);
  bottom: clamp(64px, 10vw, 108px);
  z-index: 3;
  width: clamp(82px, 10vw, 132px);
  height: auto;
  opacity: 0;
  transform: translateY(18px) rotate(-2deg);
  animation: openingCharacter 3600ms ease both;
}

.opening-skip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  min-width: 88px;
  min-height: 42px;
  border: 1px solid rgba(91, 153, 137, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--mint-dark);
  cursor: pointer;
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  backdrop-filter: blur(12px);
}

.site-header,
main,
.mobile-cta {
  transition: opacity 700ms ease, transform 700ms ease;
}

body.opening-lock .site-header,
body.opening-lock main,
body.opening-lock .mobile-cta {
  opacity: 0;
  transform: translateY(14px);
}

.light-cursor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 62%) var(--my, 28%), rgba(255, 245, 199, 0.42), transparent 22rem);
  transition: background 500ms ease;
}

@keyframes openingLight {
  0% {
    filter: brightness(1.08);
    opacity: 0;
    transform: scale(1.04);
  }
  16%,
  78% {
    opacity: 1;
  }
  100% {
    filter: brightness(1.16);
    opacity: 0.86;
    transform: scale(1);
  }
}

@keyframes openingPhoto {
  0%,
  12% {
    opacity: 0;
    transform: translateY(22px) scale(1.04);
  }
  32%,
  76% {
    opacity: 0.88;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes openingCopy {
  0%,
  18% {
    opacity: 0;
    transform: translateY(18px);
  }
  34%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes openingCharacter {
  0%,
  44% {
    opacity: 0;
    transform: translateY(18px) rotate(-2deg);
  }
  58%,
  82% {
    opacity: 0.95;
    transform: translateY(0) rotate(-2deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) rotate(-2deg);
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
  border: 1px solid rgba(141, 191, 177, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 36px rgba(46, 58, 58, 0.08);
  backdrop-filter: blur(14px);
  padding: 12px 16px 12px 22px;
}

.brand {
  display: grid;
  gap: 2px;
  letter-spacing: 0.28em;
}

.brand span {
  font-size: 22px;
}

.brand small {
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--soft-ink);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  min-height: 42px;
  background: var(--coral);
  color: #fff;
  padding: 0 22px;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 100svh;
  padding: 122px clamp(24px, 7vw, 116px) 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow,
.section-label,
.section-heading span,
.reserve-card span {
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  word-break: keep-all;
}

h1 span,
h2 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p:not(.eyebrow),
.section-copy p,
.section-heading p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 2;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-info div {
  border: 1px solid rgba(91, 153, 137, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  padding: 14px 16px;
}

.hero-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-info strong {
  display: block;
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  min-width: 178px;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(239, 113, 106, 0.28);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(91, 153, 137, 0.42);
  background: rgba(255, 255, 255, 0.68);
  color: var(--mint-dark);
}

.hero-visual {
  position: relative;
  min-height: 68vh;
}

.photo-stage {
  position: sticky;
  top: 118px;
  height: min(680px, 72vh);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 1200ms ease;
}

.photo-panel.active {
  opacity: 1;
  transform: scale(1);
}

.photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.68), transparent 45%);
  content: "";
}

.photo-panel-main {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.58), rgba(255, 253, 248, 0.03) 48%),
    url("./assets/hikari-hero-cafe.png") center / cover no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 18%, transparent 19% 82%, rgba(255, 255, 255, 0.52) 83%),
    radial-gradient(circle at 54% 52%, rgba(98, 143, 104, 0.45) 0 24px, transparent 25px),
    linear-gradient(180deg, #fff8e9 0 54%, #d8b27f 55% 100%);
}

.photo-panel-latte {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.36), rgba(255, 253, 248, 0.05) 48%),
    url("./assets/hikari-latte-sweets.png") center / cover no-repeat,
    radial-gradient(circle at 47% 48%, #f9eee0 0 42px, #b87845 43px 58px, transparent 59px),
    radial-gradient(circle at 62% 44%, #fff 0 64px, #d6b989 65px 88px, transparent 89px),
    linear-gradient(135deg, #fffaf1 0%, #e3c399 100%);
}

.photo-panel-salon {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.38), rgba(255, 253, 248, 0.07) 52%),
    url("./assets/hikari-salon-corner.png") center / cover no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 22%, transparent 23% 78%, rgba(255, 255, 255, 0.78) 79%),
    radial-gradient(circle at 70% 28%, rgba(139, 185, 158, 0.55) 0 28px, transparent 29px),
    linear-gradient(180deg, #fff9ee 0 62%, #efe0cc 63% 100%);
}

.hero-photo-list {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(420px, calc(100% - 44px));
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--soft-shadow);
  padding: 8px;
  backdrop-filter: blur(12px);
}

.hero-photo-list span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
}

.section-flow {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 128px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.access-card h2,
.reserve-card h2 {
  margin: 10px 0 24px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid rgba(91, 153, 137, 0.4);
  border-radius: 999px;
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 14px 24px;
}

.soft-collage {
  position: relative;
  min-height: 390px;
}

.collage-card {
  position: absolute;
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.collage-large {
  right: 20%;
  bottom: 20px;
  width: 58%;
  height: 250px;
  background: url("./assets/hikari-hero-cafe.png") center / cover no-repeat;
}

.collage-small {
  top: 0;
  right: 4%;
  width: 34%;
  height: 220px;
  background: url("./assets/hikari-latte-sweets.png") center / cover no-repeat;
}

.collage-tiny {
  right: 0;
  bottom: 0;
  width: 26%;
  height: 150px;
  background: url("./assets/hikari-salon-corner.png") center / cover no-repeat;
}

.section-heading {
  text-align: center;
}

.menu-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.menu-card,
.voice-card,
.access-card,
.reserve-card {
  border: 1px solid rgba(91, 153, 137, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 36px rgba(45, 55, 55, 0.08);
}

.menu-card {
  position: relative;
  overflow: hidden;
  padding: 0 20px 22px;
}

.menu-photo {
  height: 170px;
  margin: 0 -20px 20px;
  background: var(--beige);
}

.menu-photo-coffee,
.item-3 {
  background:
    url("./assets/hikari-latte-sweets.png") center / cover no-repeat,
    radial-gradient(circle at 48% 50%, #f7e9db 0 32px, #bd7b44 33px 45px, transparent 46px),
    linear-gradient(135deg, #fff8ee, #d8b27f);
}

.menu-photo-sweets,
.item-5 {
  background:
    url("./assets/hikari-latte-sweets.png") 76% center / cover no-repeat,
    radial-gradient(circle at 54% 48%, #f4d5b9 0 35px, transparent 36px),
    linear-gradient(135deg, #fffaf4, #e4ccb2);
}

.menu-photo-salon,
.item-4 {
  background:
    url("./assets/hikari-salon-corner.png") center / cover no-repeat,
    radial-gradient(circle at 70% 22%, rgba(141, 191, 177, 0.55) 0 22px, transparent 23px),
    linear-gradient(180deg, #fff9ef 0 62%, #e7d5c2 63%);
}

.menu-photo-relax,
.item-1,
.item-2 {
  background:
    url("./assets/hikari-hero-cafe.png") center / cover no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 20%, transparent 21% 79%, rgba(255, 255, 255, 0.7) 80%),
    radial-gradient(circle at 58% 40%, rgba(91, 153, 137, 0.5) 0 24px, transparent 25px),
    linear-gradient(180deg, #fff8ea 0 56%, #d7b37d 57%);
}

.menu-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.menu-card p {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.8;
}

.menu-card strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

.menu-card a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 34px;
  border: 1px solid rgba(91, 153, 137, 0.45);
  border-radius: 999px;
  color: var(--mint-dark);
  align-items: center;
  justify-content: center;
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 0 14px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  min-height: 170px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(45, 55, 55, 0.08);
  transition: transform 180ms ease;
  overflow: hidden;
  margin: 0;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}

.voice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.voice-card {
  margin: 0;
  padding: 34px;
}

.voice-card p {
  color: var(--soft-ink);
  line-height: 2;
}

.voice-card cite {
  color: var(--mint-dark);
  font-style: normal;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 52px);
}

dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
}

dt {
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--soft-ink);
}

.map-panel {
  position: relative;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(34deg, transparent 0 42%, rgba(239, 113, 106, 0.24) 42% 44%, transparent 44% 100%),
    linear-gradient(118deg, transparent 0 47%, rgba(91, 153, 137, 0.28) 47% 49%, transparent 49% 100%),
    linear-gradient(90deg, transparent 48%, rgba(91, 153, 137, 0.2) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(239, 113, 106, 0.14) 49% 51%, transparent 52%),
    #f2eadf;
}

.map-panel span {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-weight: 800;
  padding: 12px 18px;
}

.map-panel small {
  position: absolute;
  right: 22px;
  bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 10px 14px;
}

.reserve-section {
  padding: 0 clamp(18px, 7vw, 100px) 90px;
}

.reserve-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.reserve-card h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(91, 153, 137, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 36px rgba(45, 55, 55, 0.14);
  padding: 8px;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  min-height: 42px;
  border-radius: 999px;
  color: var(--mint-dark);
  font-family: "Hiragino Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.mobile-cta a:last-child {
  background: var(--coral);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .opening-shot {
    border-width: 7px;
    border-radius: 20px;
  }

  .opening-shot-window {
    top: 12%;
    right: -12%;
    width: 78vw;
    height: 32vh;
  }

  .opening-shot-table {
    left: -8%;
    bottom: 12%;
    width: 55vw;
    height: 24vh;
  }

  .opening-shot-salon {
    right: 4%;
    bottom: 18%;
    width: 42vw;
    height: 20vh;
  }

  .opening-copy p {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: 0.04em;
    line-height: 1.75;
  }

  .opening-character {
    right: 20px;
    bottom: 86px;
    width: 88px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .split-layout,
  .access-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 110px 20px 60px;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .photo-stage {
    position: relative;
    top: auto;
    height: 430px;
    border-radius: 28px;
  }

  .hero-photo-list {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .menu-grid,
  .voice-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .section-flow {
    padding: 76px 20px;
  }

  .soft-collage {
    min-height: 300px;
  }

  .reserve-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 520px) {
  .opening-copy {
    width: calc(100% - 36px);
  }

  .opening-copy span {
    font-size: 10px;
  }

  .opening-skip {
    right: 14px;
    bottom: 14px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.52;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-info div {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .opening-light,
  .opening-shot,
  .opening-copy,
  .opening-character {
    animation: none;
  }
}
