:root {
  --ink: #17232a;
  --muted: #6a7a82;
  --line: rgba(30, 55, 65, 0.14);
  --paper: #fbfdff;
  --pearl: #f4f8f8;
  --aqua: #bfeaf1;
  --blue: #5eb4c7;
  --gold: #b99758;
  --gold-soft: #ead8af;
  --shadow: 0 18px 54px rgba(21, 61, 75, 0.18);
  --max: 1180px;
  --notice-height: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.intro-playing {
  height: 100vh;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
}

.progress span {
  display: block;
  width: calc(var(--page-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.demo-notice {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 78;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--notice-height);
  padding: 8px 18px;
  color: rgba(23, 35, 42, 0.78);
  background: rgba(251, 253, 255, 0.9);
  border-bottom: 1px solid rgba(185, 151, 88, 0.18);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(14px);
}

.site-header {
  position: fixed;
  top: calc(var(--notice-height) + 3px);
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 42px;
  color: var(--ink);
  background: rgba(251, 253, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  transition: padding 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  padding: 14px 42px;
  background: rgba(251, 253, 255, 0.82);
  box-shadow: 0 8px 26px rgba(18, 57, 74, 0.08);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(23, 35, 42, 0.76);
  font-size: 0.84rem;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 16px;
  color: var(--ink);
  border: 1px solid rgba(185, 151, 88, 0.54);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
}

.section-full {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.section-pad {
  position: relative;
  padding: 118px 42px;
}

.hero {
  display: block;
  min-height: 100vh;
  overflow: visible;
  background: #eaf8fa;
}

.hero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-video-layer,
.hero-video,
.cta-image,
.cta-image img {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.cta-image img {
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  opacity: 0;
  transform: translate3d(
      var(--hero-bg-x, 0px),
      calc(var(--motion-y, 0px) + var(--hero-bg-y, 0px)),
      0
    )
    scale(var(--hero-scale, var(--motion-scale, 1.03)));
  transform-origin: center;
  will-change: transform, filter;
}

.hero-video-layer {
  z-index: 1;
  overflow: hidden;
  transform-origin: center;
  background: #eaf8fa;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

body.intro-playing .progress,
body.intro-playing .demo-notice,
body.intro-playing .site-header,
body.intro-playing .hero-inner {
  opacity: 0;
  pointer-events: none;
}

body.intro-playing .hero-video-layer {
  z-index: 5;
  background: #eaf8fa;
}

body.intro-playing .hero-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: none;
}

body.intro-playing.intro-video-started .hero-video,
body.intro-complete .hero-video {
  opacity: 1;
}

body.intro-playing .hero-video-layer::after {
  opacity: 0;
}

body.intro-complete .hero-inner,
body.intro-complete .site-header,
body.intro-complete .demo-notice {
  animation: introReveal 720ms ease both;
}

@keyframes introReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-bg::after,
.hero-video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.86) 0%, rgba(251, 253, 255, 0.42) 34%, rgba(251, 253, 255, 0.08) 58%),
    linear-gradient(0deg, rgba(251, 253, 255, 0.74) 0%, rgba(251, 253, 255, 0) 22%);
}

.hero-video-layer::after {
  opacity: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 132px clamp(24px, 5.8vw, 84px) 48px;
}

.hero-copy {
  max-width: 380px;
  padding: 24px 26px 26px;
  background: rgba(251, 253, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(21, 61, 75, 0.12);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: 2.42rem;
  line-height: 1.12;
}

h2 {
  margin-bottom: 26px;
  font-size: 2.82rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.35;
  text-wrap: balance;
}

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

.lead {
  max-width: 360px;
  color: rgba(23, 35, 42, 0.78);
  font-size: 1.04rem;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-dark {
  color: #fff;
  background: #17232a;
  border: 1px solid #17232a;
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 35, 42, 0.16);
}

.hero-metrics {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 430px);
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 50px rgba(22, 79, 96, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro-text {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.sticky-story {
  position: relative;
  min-height: 280vh;
  background: #eaf8fa;
}

.sticky-media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.sticky-media img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--motion-y, 0), 0) scale(var(--motion-scale, 1.04));
}

.sticky-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.76), rgba(251, 253, 255, 0.1) 48%, rgba(251, 253, 255, 0.58)),
    linear-gradient(0deg, rgba(251, 253, 255, 0.78), rgba(251, 253, 255, 0) 28%);
}

.story-track {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: -100vh auto 0;
  padding: 20vh 42px 22vh;
}

.story-panel {
  width: min(400px, 100%);
  min-height: 294px;
  margin-bottom: 34vh;
  padding: 36px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.story-panel-right {
  margin-left: auto;
}

.story-panel p:not(.eyebrow) {
  color: var(--muted);
}

.story-panel h2 {
  margin-bottom: 18px;
  font-size: 2.24rem;
  line-height: 1.2;
}

.split,
.design-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 68px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split-copy p,
.design-copy p,
.water-copy p,
.cta-copy p {
  color: var(--muted);
  text-wrap: pretty;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 0;
  color: rgba(23, 35, 42, 0.86);
  border-top: 1px solid var(--line);
  text-wrap: pretty;
}

.split-image,
.label-shot {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--float-y, 0), 0);
}

.split-image img,
.label-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.design {
  overflow: hidden;
  background: var(--pearl);
}

.design-bg {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  transform: translate3d(0, var(--motion-y, 0), 0) scale(1.08);
}

.design-bg img {
  height: 100%;
  object-fit: cover;
}

.design::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 253, 255, 0.62);
}

.design-grid {
  position: relative;
  z-index: 2;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.spec-row span {
  padding: 9px 12px;
  color: rgba(23, 35, 42, 0.74);
  border: 1px solid rgba(185, 151, 88, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}

.water-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
}

.water-band > img {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  height: 116%;
  object-fit: cover;
  transform: translate3d(0, var(--motion-y, 0), 0) scale(1.06);
}

.water-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(251, 253, 255, 0.78), rgba(251, 253, 255, 0.26), rgba(251, 253, 255, 0.7));
}

.water-copy {
  width: min(620px, calc(100% - 48px));
  padding: 0 20px;
  text-align: center;
}

.experience {
  background: #fff;
}

.experience-head {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps article {
  min-height: 238px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6fbfc);
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.steps p {
  color: var(--muted);
}

.cta {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.cta-image {
  transform: translate3d(0, var(--motion-y, 0), 0) scale(var(--motion-scale, 1.03));
}

.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.86), rgba(251, 253, 255, 0.35) 48%, rgba(251, 253, 255, 0.12)),
    linear-gradient(0deg, rgba(251, 253, 255, 0.76), rgba(251, 253, 255, 0) 28%);
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 58px;
  width: min(100%, var(--max));
  padding: 100px 42px 64px;
}

.cta-text h2 {
  max-width: 390px;
}

.reserve-form {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(100%, 470px);
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.reserve-form label {
  display: grid;
  gap: 6px;
  color: rgba(23, 35, 42, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 6px;
  font: inherit;
}

.reserve-form textarea {
  min-height: 88px;
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: rgba(94, 180, 199, 0.72);
  outline: 3px solid rgba(94, 180, 199, 0.18);
}

.reserve-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  padding: 8px 12px;
  color: rgba(23, 35, 42, 0.66);
  background: rgba(234, 248, 250, 0.76);
  border: 1px solid rgba(94, 180, 199, 0.2);
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  color: rgba(23, 35, 42, 0.78);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 35, 42, 0.12);
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-status[data-type="success"] {
  color: #235042;
  background: rgba(224, 247, 235, 0.86);
  border-color: rgba(58, 138, 102, 0.22);
}

.form-status[data-type="error"] {
  color: #6c2f2f;
  background: rgba(255, 235, 232, 0.86);
  border-color: rgba(170, 72, 64, 0.2);
}

.hidden-field {
  display: none;
}

.check-field {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  line-height: 1.55;
}

.check-field input {
  width: auto;
  min-height: auto;
  margin-top: 7px;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: calc(var(--notice-height) + 118px) 24px 80px;
  background: #eaf8fa;
}

.thanks-panel {
  width: min(100%, 680px);
  padding: 52px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
}

.thanks-panel p:not(.eyebrow) {
  color: var(--muted);
}

.admin-page {
  min-height: 100vh;
  padding: calc(var(--notice-height) + 112px) 24px 80px;
  background: linear-gradient(180deg, #eaf8fa, #fbfdff 38%, #f4f8f8);
}

.admin-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-head h1 {
  margin-bottom: 0;
  font-size: 2.8rem;
}

.admin-card {
  margin-bottom: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
}

.admin-login label {
  display: grid;
  gap: 8px;
  color: rgba(23, 35, 42, 0.78);
  font-weight: 700;
}

.admin-login input,
.admin-toolbar select,
.admin-table select {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 6px;
  font: inherit;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-toolbar p {
  margin: 0;
  color: var(--muted);
}

.admin-toolbar p[data-type="success"] {
  color: #235042;
}

.admin-toolbar p[data-type="error"] {
  color: #6c2f2f;
}

.admin-toolbar div {
  display: flex;
  gap: 10px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: rgba(23, 35, 42, 0.62);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.admin-table span {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

[data-float] {
  --float-y: 22px;
  transition: transform 900ms ease;
}

[data-float].is-visible {
  --float-y: 0;
}

@media (max-width: 980px) {
  :root {
    --notice-height: 44px;
  }

  .site-header {
    padding: 18px 22px;
  }

  .site-header.is-scrolled {
    padding: 12px 22px;
  }

  .nav {
    gap: 14px;
  }

  .section-pad {
    padding: 86px 24px;
  }

  .hero-inner {
    padding: 118px 24px 42px;
  }

  .hero-copy {
    max-width: 380px;
  }

  h1 {
    font-size: 2.36rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .intro,
  .split,
  .design-grid,
  .steps,
  .cta-copy {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    gap: 30px;
  }

  .reserve-form {
    justify-self: stretch;
    width: 100%;
  }

  .admin-head,
  .admin-login,
  .admin-toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-toolbar div {
    flex-wrap: wrap;
  }

  .intro {
    gap: 18px;
  }

  .intro-text {
    margin-top: 0;
  }

  .story-track {
    padding-left: 24px;
    padding-right: 24px;
  }

  .story-panel,
  .story-panel-right {
    margin-left: 0;
  }

  .story-panel h2 {
    font-size: 2.02rem;
  }

  .split-image {
    order: -1;
  }
}

@media (max-width: 680px) {
  :root {
    --notice-height: 58px;
  }

  .demo-notice {
    padding: 7px 14px;
    font-size: 0.72rem;
  }

  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .nav {
    justify-content: flex-end;
    gap: 9px;
    font-size: 0.72rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-bg::after,
  .hero-video-layer::after,
  .cta-image::after {
    background:
      linear-gradient(180deg, rgba(251, 253, 255, 0.82) 0%, rgba(251, 253, 255, 0.3) 42%, rgba(251, 253, 255, 0.88) 100%),
      linear-gradient(90deg, rgba(251, 253, 255, 0.74), rgba(251, 253, 255, 0.08));
  }

  .hero-bg img,
  .cta-image img,
  .sticky-media img {
    object-position: 62% center;
  }

  .hero-video-layer {
    transform: none;
  }

  .hero-video {
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  body.intro-playing .hero-video,
  body.intro-complete .hero-video {
    object-fit: contain;
    object-position: center;
  }

  body.intro-complete .hero-video-layer::after {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(234, 248, 250, 0.02) 0%, rgba(234, 248, 250, 0.08) 58%, rgba(234, 248, 250, 0.82) 82%, #eaf8fa 100%),
      linear-gradient(90deg, rgba(251, 253, 255, 0.48), rgba(251, 253, 255, 0.04) 52%, rgba(251, 253, 255, 0.32));
  }

  body.intro-complete .hero {
    min-height: auto;
  }

  body.intro-complete .hero-sticky {
    position: relative;
    display: block;
    min-height: auto;
    overflow: visible;
    padding-top: calc(var(--notice-height) + 72px);
  }

  body.intro-complete .hero-video-layer {
    position: relative;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 98px 18px 28px;
  }

  body.intro-complete .hero-inner {
    display: block;
    min-height: auto;
    padding: 24px 18px 42px;
    background: #eaf8fa;
  }

  .hero-copy {
    max-width: 100%;
    padding: 18px;
    background: rgba(251, 253, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(21, 61, 75, 0.14);
  }

  h1 {
    font-size: 1.96rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .story-panel {
    padding: 28px;
  }

  .story-panel h2 {
    font-size: 1.68rem;
  }

  .cta-copy {
    padding: 94px 18px 38px;
  }

  .reserve-form {
    padding: 22px;
  }

  .admin-page {
    padding: calc(var(--notice-height) + 92px) 18px 58px;
  }

  .admin-head h1 {
    font-size: 2rem;
  }

  .admin-card {
    padding: 18px;
  }

  .admin-toolbar div,
  .admin-toolbar select,
  .admin-toolbar .button {
    width: 100%;
  }

  .thanks-panel {
    padding: 34px 22px;
  }
}

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

  [data-motion],
  [data-motion] img,
  .hero-video-layer,
  .hero-video,
  [data-float] {
    transform: none !important;
  }
}
