:root {
  --bg: #080604;
  --bg-soft: #14100b;
  --surface: #211910;
  --surface-2: #2b2117;
  --ink: #fff8ed;
  --muted: #d8c7aa;
  --gold: #d7a84f;
  --gold-soft: #f0d18a;
  --red: #8f1c16;
  --line: rgba(255, 239, 202, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --container: 1180px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(215, 168, 79, 0.06), transparent 38%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 12px;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid rgba(255, 239, 202, 0.12);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}

.desktop-nav,
.header-actions,
.hero-cta,
.hero-facts,
.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 28px;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 0.98rem;
}

.desktop-nav a {
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.header-actions {
  gap: 10px;
}

.lang-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.language-select {
  width: 176px;
  min-height: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #160d05;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255, 240, 196, 0.32);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(215, 168, 79, 0.18);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: brightness(0.78) saturate(1.08) contrast(1.04);
  transform: scale(1.045);
  transition: opacity 1600ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 43%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62) 64%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.1) 48%, #080604 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 96px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(1.95rem, 3.45vw, 3.55rem);
  line-height: 1.22;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.85vw, 2.85rem);
  line-height: 1.18;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.35;
}

.lead {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.hero-trust {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px 10px;
  align-items: center;
  margin-top: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(244, 208, 130, 0.34);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(8, 6, 4, 0.48);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-trust strong {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 900;
}

.hero-trust > span:last-child {
  grid-column: 1 / -1;
  color: rgba(247, 232, 205, 0.76);
  font-size: 0.82rem;
}

.star-row {
  color: var(--gold);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.hero-cta {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .hero-cta {
  display: none;
}

.hero-facts {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero .hero-facts {
  display: none;
}

.hero-facts span {
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
  content: "";
  animation: scrollLine 1.65s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  35% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: translateY(24px) scaleY(0.35);
  }
}

.section-head p,
.feature-card p,
.course-card p:not(.price):not(.course-name):not(.badge) {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.concept-section {
  overflow: hidden;
  padding: 66px 0 64px;
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 28, 22, 0.28), transparent 30%),
    linear-gradient(180deg, #080604 0%, #171413 100%),
    var(--charcoal);
}

.concept-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.concept-copy {
  position: relative;
  max-width: 640px;
  padding-left: clamp(18px, 3vw, 42px);
  text-align: left;
}

.concept-copy::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(244, 208, 130, 0.8), transparent);
  content: "";
}

.concept-section .section-kicker {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.concept-copy h2 {
  margin-bottom: 24px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(1.85rem, 3.35vw, 3.35rem);
  font-weight: 800;
  line-height: 1.14;
}

.concept-copy p:not(.section-kicker) {
  margin-bottom: 14px;
  color: rgba(255, 252, 246, 0.9);
  font-size: clamp(0.96rem, 1.16vw, 1.14rem);
  line-height: 1.86;
}

.concept-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.concept-signature span {
  border: 1px solid rgba(244, 208, 130, 0.32);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr;
  grid-template-rows: 1fr 0.82fr;
  gap: 14px;
  min-height: clamp(320px, 36vw, 500px);
}

.concept-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 208, 130, 0.16);
  background: #0d0906;
}

.concept-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.14));
  content: "";
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.08) contrast(1.04);
}

.concept-photo-main {
  grid-row: 1 / 3;
}

.concept-photo-room {
  transform: translateY(-18px);
}

.concept-photo-course {
  transform: translateX(-34px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.two-col,
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

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

.feature-card,
.course-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 270px;
  overflow: hidden;
  padding: 0;
}

.card-number {
  display: inline-block;
  margin: 22px 24px 18px;
  color: var(--gold);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 900;
}

.feature-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card h3,
.feature-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.feature-card p {
  padding-bottom: 26px;
}

.lineup-section {
  padding-top: 16px;
  background:
    linear-gradient(180deg, rgba(8, 6, 4, 0), rgba(143, 28, 22, 0.12) 100%),
    #080604;
}

.lineup-showcase {
  display: grid;
  gap: clamp(58px, 8vw, 112px);
}

.lineup-board {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.lineup-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(22px, 4vw, 46px) 0;
}

.lineup-panel.reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.lineup-panel.reverse .lineup-copy {
  order: 2;
}

.lineup-panel.reverse .lineup-media {
  order: 1;
}

.lineup-copy {
  max-width: 560px;
}

.lineup-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.lineup-copy > p:not(.section-kicker) {
  margin-bottom: 34px;
  color: rgba(247, 232, 205, 0.82);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 2;
}

.menu-preview-list {
  display: grid;
  gap: 10px;
  margin: -8px 0 28px;
}

.menu-preview-list button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(244, 208, 130, 0.18);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-preview-list button:hover {
  border-color: rgba(244, 208, 130, 0.52);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.menu-preview-list span {
  font-weight: 800;
}

.menu-preview-list strong {
  color: var(--gold-soft);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.92rem;
}

.lineup-more {
  display: inline-flex;
  min-width: 230px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 0 22px;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.lineup-more::after {
  content: ">";
  color: rgba(247, 232, 205, 0.58);
}

.lineup-media {
  display: grid;
  gap: 18px;
}

.lineup-main,
.lineup-thumbs img {
  width: 100%;
  object-fit: cover;
}

.lineup-main {
  aspect-ratio: 16 / 10.5;
}

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

.lineup-thumbs img {
  aspect-ratio: 16 / 10;
  filter: brightness(0.92) saturate(0.92);
}

.lineup-tile {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  align-items: end;
  border: 1px solid rgba(244, 208, 130, 0.16);
  background: #100b08;
}

.lineup-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
  content: "";
}

.lineup-tile .lineup-media {
  position: absolute;
  inset: 0;
}

.lineup-tile .lineup-main {
  height: 100%;
  aspect-ratio: auto;
  filter: brightness(1.03) saturate(1.08) contrast(1.04);
}

.lineup-tile .lineup-thumbs {
  display: none;
}

.lineup-tile .lineup-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  align-content: end;
  max-width: none;
  min-height: 100%;
  padding: clamp(22px, 3.3vw, 40px);
}

.lineup-tile .lineup-copy h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.8vw, 4.35rem);
  line-height: 1.06;
}

.lineup-tile .lineup-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 252, 246, 0.86);
  font-size: 1rem;
  line-height: 1.8;
}

.lineup-tile .menu-preview-list {
  max-width: 520px;
  margin: 0 0 22px;
}

.lineup-tile .menu-preview-list button {
  background: rgba(10, 7, 4, 0.62);
  backdrop-filter: blur(10px);
}

.lineup-tile .lineup-more {
  width: min(260px, 100%);
  background: rgba(10, 7, 4, 0.5);
  backdrop-filter: blur(10px);
}

.lineup-board .tile-course {
  grid-column: span 7;
}

.lineup-board .tile-lunch {
  grid-column: span 5;
}

.lineup-board .tile-drink {
  grid-column: span 5;
  min-height: 420px;
}

.lineup-board .tile-space {
  grid-column: span 7;
  min-height: 420px;
}

.lineup-board .lineup-panel.reverse .lineup-copy,
.lineup-board .lineup-panel.reverse .lineup-media {
  order: initial;
}

.gallery-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #080604 0%, #120d09 48%, #080604 100%);
}

.editorial-head {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  max-width: none;
}

.customer-gallery-motion {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 4px 0;
}

.customer-gallery-motion::before,
.customer-gallery-motion::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(52px, 12vw, 180px);
  content: "";
  pointer-events: none;
}

.customer-gallery-motion::before {
  left: 0;
  background: linear-gradient(90deg, #080604 0%, rgba(8, 6, 4, 0) 100%);
}

.customer-gallery-motion::after {
  right: 0;
  background: linear-gradient(270deg, #080604 0%, rgba(8, 6, 4, 0) 100%);
}

.customer-gallery-row {
  overflow: hidden;
}

.customer-gallery-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: customerGalleryFlow 46s linear infinite;
}

.customer-gallery-row.reverse .customer-gallery-track {
  animation-name: customerGalleryFlowReverse;
  animation-duration: 52s;
}

.customer-gallery-motion:hover .customer-gallery-track {
  animation-play-state: paused;
}

.customer-photo {
  width: clamp(260px, 32vw, 520px);
  height: clamp(172px, 20vw, 292px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 208, 130, 0.12);
  border-radius: 6px;
  background: #0f0b08;
}

.customer-gallery-row.reverse .customer-photo {
  width: clamp(220px, 27vw, 430px);
  height: clamp(150px, 17vw, 242px);
}

.customer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.92);
  transform: scale(1.02);
  transition: filter 220ms ease, transform 220ms ease;
}

.customer-photo:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.055);
}

.review-section {
  background:
    linear-gradient(180deg, #080604 0%, #160d09 100%);
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid rgba(244, 208, 130, 0.2);
  border-bottom: 1px solid rgba(244, 208, 130, 0.2);
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.review-score {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.review-number {
  color: var(--gold-soft);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(5.2rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
}

.review-score p:last-child {
  margin: 0;
  color: rgba(247, 232, 205, 0.72);
  font-weight: 800;
}

.review-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.review-copy > p {
  max-width: 760px;
  color: rgba(247, 232, 205, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.9;
}

.review-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.review-points span {
  border: 1px solid rgba(244, 208, 130, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.review-link {
  min-width: 260px;
}

@keyframes customerGalleryFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes customerGalleryFlowReverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(143, 28, 22, 0.34), transparent 34%),
    #080604;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 7vw, 110px);
}

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

.faq-list details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 42px 22px 0;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  color: var(--gold);
  content: "+";
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -6px 0 22px;
  color: var(--muted);
}

.dark {
  background:
    linear-gradient(180deg, rgba(143, 28, 22, 0.16), rgba(8, 6, 4, 0)),
    var(--bg-soft);
}

.course-card {
  position: relative;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.course-card.featured {
  border-color: rgba(215, 168, 79, 0.7);
  background: linear-gradient(180deg, rgba(215, 168, 79, 0.18), rgba(143, 28, 22, 0.12));
}

.course-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course-body {
  padding: 24px;
}

.badge {
  display: inline-block;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 2px 10px;
  color: #1b1007;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.course-name {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.price {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(2.05rem, 3.25vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  margin-left: 8px;
  font-size: 0.85rem;
}

.course-detail-button {
  margin-top: 14px;
  min-height: 42px;
  cursor: pointer;
}

.course-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.course-modal.is-open {
  display: flex;
}

.course-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(7px);
}

.course-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  color: #27211a;
  background: #fffdf8;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #2b2117;
  background: rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.course-dialog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 34px 36px 22px;
}

.modal-label {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 3px 9px;
  color: #fff;
  background: #2b6fae;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
}

.course-dialog h2 {
  margin: 0;
  color: #27211a;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.modal-price-row {
  display: grid;
  justify-items: end;
  align-self: end;
  color: #64584c;
}

.modal-price-row strong {
  color: #27211a;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.8rem;
}

.course-modal-image {
  width: calc(100% - 72px);
  max-height: 420px;
  margin: 0 36px;
  object-fit: cover;
}

.course-dialog-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px 36px 28px;
}

.course-dialog-body h3 {
  color: #27211a;
}

.course-dialog-body p {
  color: #4f463d;
}

.course-menu-box {
  padding: 20px;
  background: #f6f2eb;
}

.course-menu-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #4f463d;
}

.course-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 36px 34px;
}

body.modal-open {
  overflow: hidden;
}

.access {
  background: #080604;
}

.access-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.info-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--gold);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  white-space: pre-line;
}

.info-list dd strong,
.info-list dd span {
  display: block;
}

.info-list dd strong {
  color: var(--paper);
  font-size: 1.05rem;
}

.info-list dd span {
  margin-top: 3px;
  color: rgba(247, 232, 205, 0.62);
}

.info-list a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(244, 208, 130, 0.35);
  text-underline-offset: 4px;
}

.location-media {
  position: static;
  display: grid;
  gap: 16px;
}

.shop-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 208, 130, 0.18);
  border-radius: 6px;
  background: #120d09;
}

.shop-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
}

.map-card {
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 10.4;
  border: 1px solid rgba(244, 208, 130, 0.18);
  border-radius: 6px;
  filter: grayscale(0.2) contrast(1.04) brightness(0.88);
}

.site-footer {
  padding: 28px 0 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  gap: 18px;
}

.mobile-reserve {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 112px 0 96px;
  }

  .section-head.two-col,
  .editorial-head,
  .faq-grid,
  .feature-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .concept-inner,
  .concept-visuals,
  .lineup-board,
  .lineup-panel,
  .lineup-panel.reverse,
  .review-panel {
    grid-template-columns: 1fr;
  }

  .concept-copy {
    max-width: none;
  }

  .concept-visuals {
    min-height: auto;
  }

  .concept-photo {
    min-height: 240px;
  }

  .concept-photo-main,
  .concept-photo-room,
  .concept-photo-course {
    grid-row: auto;
    transform: none;
  }

  .lineup-board .tile-course,
  .lineup-board .tile-lunch,
  .lineup-board .tile-drink,
  .lineup-board .tile-space {
    grid-column: auto;
    min-height: 480px;
  }

  .lineup-panel.reverse .lineup-copy,
  .lineup-panel.reverse .lineup-media {
    order: initial;
  }

  .location-media {
    position: static;
  }

  .section {
    padding: 72px 0;
  }

  .concept-section {
    padding: 64px 0 56px;
  }

  .feature-card,
  .course-card {
    min-height: auto;
  }

  .course-dialog-body,
  .course-dialog-head {
    grid-template-columns: 1fr;
  }

  .modal-price-row {
    justify-items: start;
  }

  .course-modal-image {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .course-dialog-head,
  .course-dialog-body,
  .course-dialog-actions {
    padding-right: 16px;
    padding-left: 16px;
  }

  .course-dialog-actions {
    flex-direction: column;
  }

  .card-number {
    margin-bottom: 18px;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-reserve {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(8, 6, 4, 0.84);
    backdrop-filter: blur(16px);
  }

  .mobile-reserve a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 900;
  }

  .mobile-reserve a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-reserve a:last-child {
    color: #160d05;
    background: var(--gold);
  }
}

@media (max-width: 760px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand {
    min-width: auto;
    font-size: 0.68rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .language-select {
    width: 96px;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .lineup-panel {
    gap: 22px;
    padding: 30px 0;
  }

  .lineup-copy h3 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .lineup-copy > p:not(.section-kicker) {
    margin-bottom: 22px;
    line-height: 1.8;
  }

  .lineup-more {
    width: 100%;
  }

  .lineup-thumbs {
    gap: 8px;
  }

  .hero-slide {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.56)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 50%, #080604 100%);
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .hero-facts span {
    width: 100%;
  }

  .info-list div,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .customer-gallery-motion {
    gap: 10px;
  }

  .customer-gallery-track {
    gap: 10px;
    animation-duration: 38s;
  }

  .customer-gallery-row.reverse .customer-gallery-track {
    animation-duration: 44s;
  }

  .customer-photo,
  .customer-gallery-row.reverse .customer-photo {
    width: 72vw;
    height: 48vw;
    max-height: 260px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
