@font-face {
  font-family: "interstateregular";
  src: url("./assets/fonts/interstate-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YakuHanJPs";
  src: url("./assets/fonts/YakuHanJPs/YakuHanJPs-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YakuHanJPs";
  src: url("./assets/fonts/YakuHanJPs/YakuHanJPs-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YakuHanJPs";
  src: url("./assets/fonts/YakuHanJPs/YakuHanJPs-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f1ea;
  --bg-soft: #fff9f2;
  --bg-tint: #fff6d9;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffdf9;
  --ink: #332522;
  --muted: #75625c;
  --line: rgba(89, 56, 48, 0.12);
  --accent: #b86f61;
  --accent-deep: #7d3f46;
  --accent-alt: #d8b55d;
  --shadow: 0 24px 60px rgba(70, 33, 26, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --button-radius: 999px;
  --content-width: min(1120px, calc(100% - 40px));
  --font-body: "YakuHanJPs", "Helvetica Neue", Helvetica, Arial, "Yu Gothic", "YuGothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS PGothic", sans-serif;
  --font-ui: "interstateregular", "YakuHanJPs", "Helvetica Neue", Helvetica, Arial, "Yu Gothic", "YuGothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS PGothic", sans-serif;
  --font-display: "Monotype Modern W01 Ext", "Monotype Modern W01 Ext", "Times New Roman", Times, "Yu Mincho TT R", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  --font-soft: "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "メイリオ", Meiryo, Osaka, "MS PGothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at top right, rgba(255, 242, 213, 0.9), transparent 32%),
    radial-gradient(circle at 10% 16%, rgba(250, 226, 219, 0.7), transparent 26%),
    linear-gradient(180deg, #fdfaf6 0%, var(--bg) 38%, #fbfaf8 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.flow-section,
.flow-visual-panel,
.prep-section,
.cta-band,
.faq-section,
.about-section,
.reasons-section,
.access-section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  gap: 0;
  padding: 0;
  transition: background-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 242, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(70, 33, 26, 0.08);
}

.top-infobar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: rgb(255, 212, 203);
  color: #000000;
  font-size: 0.96rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.top-infobar-mobile {
  display: none;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 14px 20px;
  background: rgba(255, 252, 248, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(210px, 24vw, 360px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-family: var(--font-ui);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--button-radius);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff8f4;
  box-shadow: 0 12px 26px rgba(125, 63, 70, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 111, 97, 0.18);
}

.access-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

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

.hero-slider {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
}

.hero-slider-track {
  position: relative;
  aspect-ratio: 2100 / 984;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
}

.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 22, 20, 0.1), rgba(38, 22, 20, 0.28)),
    linear-gradient(90deg, rgba(255, 247, 234, 0.16), rgba(255, 247, 234, 0));
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  --hero-card-width: min(100%, 620px);
  --hero-card-pad: clamp(22px, 3.6vw, 34px);
  --hero-note-accent-gap: 18px;
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 84px) 0 clamp(110px, 15vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
}

.hero-slide-overlay-right {
  align-items: flex-end;
}

.hero-title-card,
.hero-note-card,
.hero-mini-card {
  position: relative;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-title-card {
  display: grid;
  gap: 10px;
  width: var(--hero-card-width);
  padding: clamp(22px, 3.6vw, 34px) var(--hero-card-pad);
  border-radius: 0;
}

.hero-title-card-compact {
  width: var(--hero-card-width);
}

.hero-title-card h1,
.hero-title-card h2 {
  max-width: 100%;
  font-size: clamp(2rem, 4.6vw, 2.4rem);
  color: #4f3438;
  line-height: 1.42;
  -webkit-text-stroke: 2px rgba(255, 248, 243, 0.94);
  paint-order: stroke fill;
  text-shadow: 0 10px 24px rgba(58, 32, 25, 0.12);
}

.hero-title-text {
  display: inline;
  padding: 16px;
  background-image: linear-gradient(transparent 18%, rgba(255, 212, 203, 0.96) 18%, rgba(255, 231, 225, 0.82) 88%, transparent 88%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-note-card {
  width: var(--hero-card-width);
  padding: 0 var(--hero-card-pad) 0 calc(var(--hero-card-pad) + var(--hero-note-accent-gap));
  border-radius: 0;
  color: #fffdf9;
  font-family: var(--font-soft);
  line-height: 1.8;
  font-weight: 700;
  text-shadow: 0 8px 22px rgba(32, 20, 18, 0.4);
}

.hero-note-card::before {
  content: "";
  position: absolute;
  left: var(--hero-card-pad);
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 212, 203, 0.98), rgba(184, 111, 97, 0.72));
}

.hero-mini-grid {
  width: var(--hero-card-width);
  display: grid;
  gap: 10px;
  padding: 0 var(--hero-card-pad);
}

.hero-mini-card {
  padding: 0 0 0 var(--hero-note-accent-gap);
  border-radius: 0;
  color: #fffdf9;
  font-family: var(--font-soft);
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 8px 18px rgba(32, 20, 18, 0.35);
}

.hero-mini-card::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: rgb(255, 212, 203);
  transform: rotate(45deg);
}

.hero-slider-ui {
  width: 100%;
  margin: 16px auto 0;
  position: static;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-dots {
  display: inline-flex;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-dot {
  width: 9.6px;
  height: 9.6px;
  padding: 0;
  border: 0;
  border-radius: var(--button-radius);
  background: rgba(125, 63, 70, 0.22);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--accent-deep);
}

.hero-slide-overlay-right .hero-title-card,
.hero-slide-overlay-right .hero-note-card {
  text-align: right;
}

.hero-slide-overlay-right .hero-title-card {
  justify-items: end;
}

.hero-slide-overlay-right .hero-note-card {
  padding: 0 calc(var(--hero-card-pad) + var(--hero-note-accent-gap)) 0 var(--hero-card-pad);
}

.hero-slide-overlay-right .hero-note-card::before {
  left: auto;
  right: var(--hero-card-pad);
}

.hero-slide-overlay-right .hero-mini-grid {
  justify-items: end;
}

.hero-slide-overlay-right .hero-mini-card {
  text-align: right;
  padding: 0 var(--hero-note-accent-gap) 0 0;
}

.hero-slide-overlay-right .hero-mini-card::before {
  left: auto;
  right: 1px;
}

.hero-slide-overlay > * {
  opacity: 0;
}

.hero-slide.is-active .hero-slide-overlay > :nth-child(1) {
  animation: hero-slide-enter-left 760ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  animation-delay: 120ms;
}

.hero-slide.is-active .hero-slide-overlay > :nth-child(2) {
  animation: hero-slide-enter-left 780ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
  animation-delay: 420ms;
}

.hero-slide.is-active .hero-slide-overlay > :nth-child(3) {
  animation: hero-slide-enter-left 820ms cubic-bezier(0.16, 0.8, 0.2, 1) both;
  animation-delay: 640ms;
}

.hero-slide.is-active .hero-slide-overlay-right > :nth-child(1) {
  animation-name: hero-slide-enter-right;
}

.hero-slide.is-active .hero-slide-overlay-right > :nth-child(2) {
  animation-name: hero-slide-enter-right;
}

.hero-slide.is-active .hero-slide-overlay-right > :nth-child(3) {
  animation-name: hero-slide-enter-right;
}

.hero-slide.is-active .hero-mini-card {
  opacity: 0;
  animation: hero-mini-enter 680ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-slide.is-active .hero-mini-card:nth-child(1) {
  animation-delay: 580ms;
}

.hero-slide.is-active .hero-mini-card:nth-child(2) {
  animation-delay: 780ms;
}

.hero-slide.is-active .hero-mini-card:nth-child(3) {
  animation-delay: 980ms;
}

@keyframes hero-slide-enter-left {
  0% {
    opacity: 0;
    transform: translate3d(-42px, 12px, 0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-slide-enter-right {
  0% {
    opacity: 0;
    transform: translate3d(42px, 12px, 0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-mini-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-slide-overlay > *,
  .hero-slide.is-active .hero-mini-card {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero,
.flow-section,
.prep-section,
.faq-section,
.about-section,
.reasons-section,
.access-section {
  padding: 28px clamp(20px, 3.4vw, 34px);
}

.hero-media,
.hero-copy,
.step-card,
.prep-card,
.faq-list,
.about-block,
.reason-item,
.access-card,
.cta-band-inner {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  min-height: clamp(420px, 62vw, 720px);
  overflow: hidden;
}

.hero-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 238, 228, 0.9)),
    var(--surface);
}

.hero-lead,
.section-heading p:last-child,
.step-body p,
.faq-item p,
.about-copy p,
.reason-item p,
.access-card p,
.site-footer {
  color: var(--muted);
  line-height: 1.85;
}

.hero-lead {
  margin-top: 16px;
}

.hero-actions,
.access-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.flow-section {
  max-width: 800px;
  position: relative;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
}

.flow-title-image {
  margin: 0;
}

.flow-title-image img {
  display: block;
  width: min(100%, 350px);
  height: auto;
  margin-inline: auto;
}

.flow-visual-panel {
  display: grid;
  gap: 18px;
  padding: 8px clamp(20px, 3.4vw, 34px) 12px;
  margin-bottom: 22px;
}

.flow-hero-image,
.flow-visual-card {
  margin: 0;
}

.flow-hero-image {
  width: min(100%, 700px);
  margin-inline: auto;
  padding-inline: 4px;
}

.flow-hero-image img,
.flow-visual-card img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flow-reservation-card {
  grid-column: 1 / -1;
  max-width: 100%;
  padding: 22px 20px;
  border: 2px solid rgba(89, 56, 48, 0.14);
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 223, 216, 0.92), rgba(255, 244, 238, 0.96));
  box-shadow: 0 14px 28px rgba(70, 33, 26, 0.08);
}

.flow-reservation-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.flow-reservation-head h3 {
  margin: 0;
  font-family: var(--font-soft);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.flow-reservation-head p,
.flow-opentable-note {
  color: rgba(51, 37, 34, 0.8);
  font-size: 0.94rem;
  line-height: 1.8;
}

.flow-access-card {
  grid-column: 1 / -1;
  padding: 24px 20px;
  border: 1px solid rgba(89, 56, 48, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 14px 28px rgba(70, 33, 26, 0.08);
}

.flow-access-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.flow-access-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-access-head h3 {
  margin: 0;
  font-size: 1.28rem;
}

.flow-access-main,
.flow-access-sub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.88fr);
  gap: 14px;
  align-items: start;
}

.flow-access-sub {
  margin-top: 14px;
}

.flow-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flow-access-subgrid {
  display: grid;
  gap: 12px;
}

.flow-access-item {
  padding: 14px 16px;
  border: 1px solid rgba(89, 56, 48, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.flow-access-label {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-access-item p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.flow-access-map-embed,
.flow-access-simplemap {
  margin: 0;
  border: 1px solid rgba(89, 56, 48, 0.1);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.flow-access-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}

.flow-access-simplemap img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-opentable {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 248, 236, 0.92);
}

.flow-opentable-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.flow-opentable th,
.flow-opentable td {
  border: 1px solid rgba(89, 56, 48, 0.12);
  text-align: center;
  padding: 10px 8px;
}

.flow-opentable th {
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-soft);
  font-weight: 400;
  white-space: nowrap;
}

.flow-opentable th:first-child {
  width: 34%;
  white-space: normal;
}

.flow-opentable .day {
  font-family: var(--font-ui);
  font-weight: 400;
}

.flow-opentable span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4em;
  color: var(--accent-deep);
  font-family: var(--font-ui);
  font-weight: 400;
}

.flow-opentable-note {
  margin-top: 10px;
}

.step-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 6px 0;
}

.step-list::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 24px;
  bottom: 24px;
  border-left: 2px dotted rgba(184, 111, 97, 0.34);
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 0;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 0;
  background: linear-gradient(135deg, rgb(255, 212, 203), rgb(249, 194, 186));
  color: #fff8f4;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 6px solid rgba(248, 241, 234, 0.96);
  box-shadow: 0 10px 22px rgba(125, 63, 70, 0.16);
  position: relative;
  z-index: 1;
}

.step-card:nth-child(1) .step-badge {
  background: linear-gradient(135deg, rgb(255, 212, 203), rgb(249, 194, 186));
}

.step-card:nth-child(2) .step-badge {
  background: linear-gradient(135deg, rgb(249, 194, 186), rgb(243, 176, 170));
}

.step-card:nth-child(3) .step-badge {
  background: linear-gradient(135deg, rgb(243, 176, 170), rgb(237, 158, 154));
}

.step-card:nth-child(4) .step-badge {
  background: linear-gradient(135deg, rgb(237, 158, 154), rgb(231, 140, 138));
}

.step-card:nth-child(5) .step-badge {
  background: linear-gradient(135deg, rgb(231, 140, 138), rgb(225, 122, 122));
}

.step-body {
  display: grid;
  gap: 10px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(89, 56, 48, 0.1);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 242, 0.9));
  box-shadow: 0 16px 32px rgba(70, 33, 26, 0.08);
}

.step-body h3 {
  color: var(--ink);
  font-family: var(--font-soft);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.5;
}

.step-content {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.step-image {
  margin: 0;
  border: 1px solid rgba(89, 56, 48, 0.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(70, 33, 26, 0.06);
}

.step-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.step-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.step-points,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.step-points li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.step-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--accent);
}

.step-points a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.step-note {
  color: var(--accent-deep);
  font-weight: 700;
}

.step-times {
  color: var(--accent-deep);
  line-height: 1.7;
  font-family: var(--font-soft);
}

.step-card-final {
  align-items: center;
}

.step-card-final .step-body {
  min-height: 78px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 246, 217, 0.6), rgba(255, 255, 255, 0.92));
}

.flow-cover-promo {
  position: relative;
  width: 100%;
  min-height: 431px;
  margin: 6px 0 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  background-image: url("./assets/ref-cover-price-bg.png");
  background-position: 52% 42%;
  background-repeat: no-repeat;
  background-size: cover;
}

.flow-cover-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 245, 0.1);
}

.flow-cover-promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, 1280px);
  min-height: 431px;
  margin: 0 auto;
  padding: 28px clamp(28px, 5vw, 72px);
}

.flow-cover-promo-inner img {
  display: block;
  width: min(833px, 63vw);
  height: auto;
}

.flow-cover-promo-mobile {
  display: none;
  margin: 0;
}

.flow-cover-promo-mobile img {
  display: block;
  width: 100%;
  height: auto;
}

.prep-section {
  width: 100%;
  padding: 44px 0 60px;
  background-color: #f7f4f4;
  background-image: url("./assets/ref-cover-soft-bg.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.prep-banner-grid {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.6vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.prep-banner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(226, 212, 223, 0.95);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 10px rgba(169, 180, 189, 0.1);
}

.prep-banner-card:first-child .prep-banner-item:last-child {
  margin-top: auto;
}

.prep-banner-item {
  margin: 0;
}

.prep-banner-item img {
  display: block;
  width: 100%;
  height: auto;
}

.prep-banner-copy {
  margin: 18px 0;
  color: #463937;
  text-align: center;
  line-height: 1.6;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 700;
}

.prep-banner-highlight {
  display: inline;
  padding: 0 0.08em;
  background-image: linear-gradient(transparent 62%, rgba(227, 194, 238, 0.5) 62%);
}

.prep-banner-note-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-top: auto;
  padding-top: 8px;
}

.prep-banner-note {
  margin: 0;
  padding: 0 clamp(4px, 1vw, 18px);
  color: #5a4e4c;
  line-height: 1.8;
  font-size: 0.94rem;
}

.prep-banner-my-number {
  width: clamp(92px, 11vw, 140px);
  margin: 0;
}

.prep-banner-payment-photo {
  width: clamp(132px, 16vw, 188px);
  margin: 0;
  border: 1px solid rgba(226, 212, 223, 0.95);
  box-shadow: 0 10px 22px rgba(70, 33, 26, 0.08);
  overflow: hidden;
}

.prep-banner-my-number img {
  display: block;
  width: 100%;
  height: auto;
}

.prep-banner-payment-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cta-band {
  padding: 22px clamp(20px, 3.4vw, 34px);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.94fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: 24px clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 251, 243, 0.98), rgba(252, 238, 228, 0.9)),
    var(--surface);
}

.cta-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.cta-band-copy h2 {
  max-width: 14em;
  font-size: clamp(1.15rem, 1.8vw, 1.72rem);
  line-height: 1.5;
  color: rgba(70, 33, 26, 0.88);
}

.cta-band-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.cta-band-actions .button {
  min-height: 78px;
  padding: 0 20px;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-band-actions .button-primary {
  box-shadow: 0 18px 36px rgba(125, 63, 70, 0.24);
}

.cta-band-actions .button-secondary {
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(184, 111, 97, 0.22);
  box-shadow: 0 12px 26px rgba(110, 70, 55, 0.08);
}

.faq-section {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 217, 0.3), rgba(255, 255, 255, 0.08));
}

.faq-title-image {
  margin: 0;
}

.faq-title-image img {
  display: block;
  width: min(100%, 501px);
  height: auto;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.faq-item {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.faq-item summary,
.reason-accordion summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 20px;
  font-family: var(--font-soft);
  font-weight: 400;
}

.faq-item summary::-webkit-details-marker,
.reason-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after,
.reason-accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after,
.reason-accordion[open] summary::after {
  content: "-";
}

.faq-item p,
.reason-accordion p {
  padding: 0 20px 20px;
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.about-block {
  overflow: hidden;
}

.about-copy {
  padding: 34px;
  text-align: left;
  border-top: 1px solid rgba(89, 56, 48, 0.1);
}

.about-media {
  margin: 0;
  overflow: hidden;
  min-height: clamp(280px, 40vw, 520px);
}

.gallery-section {
  width: 100%;
  margin: 0;
  padding: 28px 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 217, 0.18), rgba(255, 255, 255, 0.08));
  overflow: hidden;
}

.gallery-marquee {
  position: relative;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 12px 0 18px;
}

.gallery-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: gallery-marquee 74.6668s linear infinite;
}

.gallery-section.is-paused .gallery-marquee-track {
  animation-play-state: paused;
}

.gallery-slide {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(286px, 31.2vw, 416px);
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(184, 111, 97, 0.52);
  outline-offset: -3px;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

body.gallery-modal-open {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 16, 0.7), rgba(26, 18, 16, 0.82));
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.gallery-modal-close,
.gallery-modal-nav {
  border: 0;
  border-radius: var(--button-radius);
  background: rgba(255, 249, 242, 0.9);
  color: var(--accent-deep);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(24, 16, 14, 0.22);
}

.gallery-modal-close {
  position: absolute;
  top: -64px;
  right: 0;
  min-height: 42px;
  padding: 0 18px;
}

.gallery-modal-nav {
  min-width: 82px;
  min-height: 82px;
  padding: 0 18px;
}

.gallery-modal-figure {
  margin: 0;
  display: grid;
  gap: 14px;
}

.gallery-modal-image {
  display: block;
  width: 100%;
  max-height: min(76vh, 920px);
  object-fit: contain;
  background: rgba(255, 252, 248, 0.08);
  box-shadow: 0 26px 56px rgba(24, 16, 14, 0.26);
}

.gallery-modal-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff7f2;
  font-family: var(--font-soft);
  line-height: 1.6;
}

.gallery-modal-count {
  color: rgba(255, 231, 225, 0.82);
  font-family: var(--font-ui);
  white-space: nowrap;
}

.gallery-modal-close:focus-visible,
.gallery-modal-nav:focus-visible {
  outline: 3px solid rgba(255, 212, 203, 0.8);
  outline-offset: 3px;
}

@keyframes gallery-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track {
    animation: none;
  }

  .gallery-slide img {
    transition: none;
  }

  .gallery-modal {
    transition: none;
  }
}

.reasons-section {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.reasons-title-image {
  margin: 0;
}

.reasons-title-image img {
  display: block;
  width: min(100%, 568px);
  height: auto;
  margin-inline: auto;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reason-item {
  overflow: hidden;
}

.reason-point-label,
.reason-point-image {
  margin: 0;
}

.reason-point-label {
  padding: 18px 20px 8px;
}

.reason-point-label img {
  width: min(100%, 430px);
  height: auto;
}

.reason-point-image {
  border-top: 1px solid rgba(89, 56, 48, 0.08);
  border-bottom: 1px solid rgba(89, 56, 48, 0.08);
}

.reason-point-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.reason-highlight {
  background-image: linear-gradient(transparent 60%, rgba(247, 141, 167, 0.5) 60%);
}

.access-card {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(252, 240, 231, 0.92)),
    var(--surface);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.access-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

.access-actions {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 112px;
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, calc(100% - 24px));
  padding: 10px;
  border: 1px solid rgba(89, 56, 48, 0.08);
  border-radius: 0;
  background: rgba(255, 249, 242, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(64, 30, 25, 0.14);
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--button-radius);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.floating-cta a:first-child {
  background: rgba(255, 255, 255, 0.96);
}

.floating-cta a:last-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff8f4;
}

@media (max-width: 1080px) {
  .cta-band-inner,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .reasons-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-cover-promo {
    display: none;
  }

  .flow-cover-promo-mobile {
    display: block;
    width: 100%;
    margin: 6px 0 8px;
  }

  .cta-band-copy h2 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  :root {
    --content-width: 100%;
    --mobile-gutter: 12px;
  }

  .flow-section,
  .flow-visual-panel,
  .prep-section,
  .faq-section,
  .about-section,
  .reasons-section,
  .access-section {
    padding: 24px var(--mobile-gutter);
  }

  .flow-visual-panel {
    padding: 8px var(--mobile-gutter) 12px;
  }

  .site-header {
    position: static;
  }

  .site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .top-infobar {
    min-height: 38px;
    font-size: 0.82rem;
    line-height: 1.45;
    padding-inline: 12px;
    text-align: center;
  }

  .top-infobar-desktop {
    display: none;
  }

  .top-infobar-mobile {
    display: block;
  }

  .header-main {
    min-height: 86px;
    padding: 12px 16px;
  }

  .hero-slider-track {
    aspect-ratio: 1080 / 1300;
  }

  .hero-slide-overlay {
    --hero-card-pad: 18px;
    --hero-note-accent-gap: 14px;
    width: min(100%, calc(100% - 32px));
    padding: 24px 0 110px;
  }

  .hero-title-card h1,
  .hero-title-card h2 {
    font-size: clamp(1.8rem, 5.25vw, 2.2rem);
    line-height: 1.34;
  }

  .hero-title-text {
    padding: 12px;
  }

  .hero-title-card,
  .hero-note-card {
    max-width: 100%;
  }

  .hero-slide-overlay-right {
    align-items: flex-end;
  }

  .hero-slide-overlay-right .hero-title-card,
  .hero-slide-overlay-right .hero-note-card {
    text-align: right;
  }

  .hero-slide-overlay-right .hero-title-card {
    justify-items: end;
  }

  .hero-slide-overlay-right .hero-note-card {
    padding: 0 calc(var(--hero-card-pad) + var(--hero-note-accent-gap)) 0 var(--hero-card-pad);
  }

  .hero-slide-overlay-right .hero-note-card::before {
    left: auto;
    right: var(--hero-card-pad);
  }

  .hero-mini-card {
    width: 100%;
  }

  .step-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .step-content {
    grid-template-columns: 1fr;
  }

  .step-list::before {
    left: 26px;
    top: 18px;
    bottom: 18px;
  }

  .step-badge {
    width: 56px;
    height: 56px;
    border-width: 5px;
  }

  .step-body {
    padding: 16px 16px 18px;
  }

  .prep-section {
    padding: 28px 0 36px;
  }

  .about-copy {
    padding: 26px 22px;
  }

  .faq-list {
    padding: 10px;
  }

  .prep-banner-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prep-banner-note-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .prep-banner-note {
    padding: 0;
  }

  .prep-banner-my-number {
    width: 112px;
  }

  .cta-band-actions {
    grid-template-columns: 1fr;
  }

  .reasons-list {
    grid-template-columns: 1fr;
  }

  .flow-visual-grid {
    grid-template-columns: 1fr;
  }

  .flow-reservation-card {
    grid-column: auto;
  }

  .flow-access-grid {
    grid-template-columns: 1fr;
  }

  .flow-access-main,
  .flow-access-sub {
    grid-template-columns: 1fr;
  }

  .flow-opentable th,
  .flow-opentable td {
    font-size: 0.88rem;
  }

  .gallery-slide {
    width: clamp(240px, 72vw, 340px);
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-modal-dialog {
    gap: 12px;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .gallery-modal-close {
    top: -54px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .gallery-modal-nav {
    min-width: 56px;
    min-height: 56px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .gallery-modal-caption {
    gap: 14px;
    font-size: 0.92rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title-card,
  .hero-note-card,
  .hero-slider-dots,
  .step-card,
  .faq-list,
  .about-copy,
  .about-media,
  .gallery-slide,
  .reason-item,
  .access-card,
  .cta-band-inner {
    border-radius: 0;
  }

  .hero-title-card,
  .hero-note-card,
  .access-card,
  .cta-band-inner {
    padding: 18px;
  }

  .hero-title-card h1,
  .hero-title-card h2 {
    font-size: clamp(1.58rem, 7vw, 1.9rem);
  }

  .hero-title-text {
    padding: 10px;
  }

  .hero-slider-ui {
    margin-top: 14px;
  }

  .hero-mini-grid {
    gap: 8px;
  }

  .hero-mini-card {
    width: 100%;
    text-align: center;
  }

  .hero-note-card {
    padding: 0 var(--hero-card-pad) 0 calc(var(--hero-card-pad) + var(--hero-note-accent-gap));
    line-height: 1.75;
  }

  .hero-note-card::before {
    left: var(--hero-card-pad);
    right: auto;
    top: 0.24em;
    bottom: 0.24em;
  }

  .hero-slide-overlay-right .hero-note-card {
    padding: 0 calc(var(--hero-card-pad) + var(--hero-note-accent-gap)) 0 var(--hero-card-pad);
  }

  .hero-slide-overlay-right .hero-note-card::before {
    left: auto;
    right: var(--hero-card-pad);
  }

  .flow-hero-image {
    padding-inline: 10px;
  }

  .reason-point-label {
    padding: 14px 14px 6px;
  }

  .step-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .prep-banner-card {
    padding: 18px 16px 20px;
    border-radius: 0;
  }

  .prep-banner-grid {
    padding: 0 12px;
  }

  .prep-banner-copy {
    margin: 14px 0;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .prep-banner-note {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .cta-band-actions .button {
    min-height: 66px;
  }

  .step-list::before {
    left: 23px;
  }

  .step-badge {
    width: 50px;
    height: 50px;
  }

  .flow-visual-grid {
    grid-template-columns: 1fr;
  }

  .flow-reservation-card {
    grid-column: auto;
  }

  .flow-access-grid {
    grid-template-columns: 1fr;
  }

  .flow-access-main,
  .flow-access-sub {
    grid-template-columns: 1fr;
  }

  .flow-reservation-card {
    padding: 18px 14px;
  }

  .flow-opentable th,
  .flow-opentable td {
    padding: 8px 5px;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  .flow-opentable th:first-child {
    width: 38%;
    line-height: 1.35;
  }

  .gallery-modal {
    padding: 14px 12px;
  }

  .gallery-modal-dialog {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .gallery-modal-close {
    position: static;
    justify-self: end;
  }

  .gallery-modal-nav {
    position: absolute;
    top: calc(50% - 24px);
    z-index: 2;
    min-width: 48px;
    min-height: 48px;
    font-size: 0.68rem;
  }

  .gallery-modal-nav-prev {
    left: 8px;
  }

  .gallery-modal-nav-next {
    right: 8px;
  }

  .gallery-modal-figure {
    gap: 10px;
  }

  .gallery-modal-image {
    max-height: 68vh;
  }

  .gallery-modal-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .access-actions,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .floating-cta a {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.92rem;
  }

  .floating-cta {
    width: calc(100% - 24px);
    bottom: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 8px;
  }
}
