:root {
  --bg: #050505;
  --bg-soft: #0b0b0a;
  --panel: #10100f;
  --panel-2: #151412;
  --line: rgba(190, 137, 45, 0.72);
  --line-soft: rgba(190, 137, 45, 0.28);
  --gold: #c99a3a;
  --gold-bright: #e0bd68;
  --gold-deep: #8a5b13;
  --ivory: #f4eee2;
  --muted: #b9ad9b;
  --dim: #746a5e;
  --wine: #6f1d1b;
  --emerald: #1b533c;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.48);
  --max: 1320px;
  --radius: 6px;
  --serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.018) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-14px, -8px, 0);
  }
}

@keyframes goldBreath {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 12px 28px rgba(201,154,58,0.16);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 18px 42px rgba(224,189,104,0.28);
  }
}

@keyframes pinPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(224,189,104,0));
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(224,189,104,0.46));
    transform: translate(-50%, -50%) scale(1.08);
  }
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(145deg, #020202 0%, #0b0b0b 42%, #040404 100%);
  background-size: 76px 76px, 76px 76px, auto;
  font-family: var(--serif);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.025), transparent 32%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,0.018) 23px, transparent 24px),
    linear-gradient(180deg, rgba(201,154,58,0.07), transparent 18%, rgba(111,29,27,0.04) 54%, transparent);
  opacity: 0.72;
}

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

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

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

.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-note {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  background: rgba(0,0,0,0.62);
  color: rgba(255,248,234,0.88);
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.72);
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 54px);
  background: rgba(3, 3, 3, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body.is-ready .site-header {
  animation: headerDrop 620ms cubic-bezier(.16, 1, .3, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-shadow: 0 1px 0 #000, 0 0 18px rgba(255,255,255,0.12);
  white-space: nowrap;
}

.brand-with-logo {
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 4px;
  object-fit: contain;
  border: 1px solid rgba(201,154,58,0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.98), rgba(237,229,207,0.92) 58%, rgba(196,170,112,0.9));
  box-shadow: 0 0 18px rgba(201,154,58,0.18);
}

.brand::first-letter {
  text-transform: lowercase;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav a,
.footer-nav a {
  position: relative;
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1;
  padding: 28px 0 24px;
  opacity: 0.88;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav a.is-active {
  color: var(--gold-bright);
  opacity: 1;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 31%, rgba(0,0,0,0.14) 62%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.68) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  filter: saturate(0.96) contrast(1.08);
  transform: scale(1.018);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201,154,58,0.08), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-photo-note {
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(14px, 2.4vw, 30px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-bright);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.eyebrow::before,
.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.96;
  font-weight: 400;
  text-shadow: 0 4px 32px rgba(0,0,0,0.68);
}

.hero .lead {
  margin: 26px 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.45;
}

.hero .body-copy {
  margin-top: 24px;
  max-width: 580px;
  color: var(--ivory);
  font-size: 1.1rem;
  line-height: 2;
  text-shadow: 0 2px 18px #000;
}

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

.page-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(32px, 1fr) auto minmax(32px, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 0 30px;
  color: var(--gold-bright);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.sub-title {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
}

.text-block {
  color: var(--ivory);
  font-size: 1.05rem;
  line-height: 2;
}

.gold-text {
  color: var(--gold-bright);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.media-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-frame .photo-frame {
  height: 100%;
  min-height: inherit;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.card,
.info-panel,
.form-panel,
.summary-panel,
.menu-card,
.faq-item,
.flow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), transparent 42%),
    linear-gradient(180deg, rgba(201,154,58,0.045), rgba(0,0,0,0.08)),
    rgba(13,13,12,0.92);
  box-shadow: 0 16px 42px rgba(0,0,0,0.32);
}

.card {
  min-height: 190px;
  padding: 30px 24px;
  text-align: center;
}

.card .line-icon {
  margin: 0 auto 18px;
}

.card h3,
.image-card h3,
.menu-card h3,
.flow-card h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.card p,
.image-card p,
.flow-card p {
  margin: 14px 0 0;
  color: var(--ivory);
  line-height: 1.8;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10,10,9,0.9);
}

.image-card .photo-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.image-card-body {
  padding: 18px 20px 22px;
  min-height: 132px;
}

.image-card.small .image-card-body {
  min-height: 88px;
  text-align: center;
}

.line-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.line-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-large {
  width: 70px;
  height: 70px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 220px;
  min-height: 58px;
  padding: 15px 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.24) 46%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
  pointer-events: none;
}

.button > span {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-bright);
  color: #fff;
}

.button:hover::before {
  transform: translateX(130%);
}

.button.primary {
  color: #fff8ea;
  background:
    linear-gradient(110deg, #a66d1a 0%, #e8ca72 42%, #9c6315 100%);
  border-color: rgba(255,220,130,0.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 12px 28px rgba(201,154,58,0.18);
  animation: goldBreath 3.6s ease-in-out infinite;
}

.button .chevron {
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  margin-top: 0;
}

.info-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 84px;
  padding: 16px;
  border-left: 1px solid var(--line-soft);
  font-size: 1.15rem;
}

.info-strip-item:first-child {
  border-left: 0;
}

.info-strip-item .line-icon {
  width: 34px;
  height: 34px;
  margin: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.store-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.store-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.store-row:last-child {
  border-bottom: 0;
}

.store-row .line-icon {
  width: 28px;
  height: 28px;
}

.store-row span {
  color: var(--gold-bright);
}

.store-row strong {
  font-weight: 400;
  color: var(--ivory);
}

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

.instagram-photo {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  border: 1px solid var(--line);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
}

.instagram-photo .photo-note {
  right: 6px;
  bottom: 6px;
  min-height: 19px;
  padding: 3px 6px;
  font-size: 0.64rem;
}

.instagram-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 1.55rem;
}

.cta-band {
  width: min(calc(100% - 48px), var(--max));
  margin: clamp(42px, 6vw, 76px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(201,154,58,0.12), rgba(0,0,0,0.28) 36%, rgba(111,29,27,0.13)),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 32%),
    #0d0d0c;
}

.cta-band h2 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.1;
}

.cta-band p {
  margin: 10px 0 0;
  color: var(--ivory);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 30px auto 0;
  padding: 26px 0 38px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.footer-nav {
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
}

.footer-nav a {
  padding: 10px 0;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--sans);
  font-size: 1.5rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.menu-card {
  display: grid;
  grid-template-columns: minmax(136px, 36%) minmax(0, 1fr);
  min-height: 230px;
  overflow: hidden;
}

.menu-card.wide {
  grid-column: span 2;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
}

.menu-card .photo-frame {
  height: 100%;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card .photo-note {
  right: 6px;
  bottom: 6px;
  min-height: 19px;
  padding: 3px 6px;
  font-size: 0.64rem;
}

.menu-content {
  padding: 24px 22px;
}

.menu-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.menu-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  font-size: 0.95rem;
  line-height: 1.45;
  word-break: normal;
  overflow-wrap: anywhere;
}

.menu-card.wide .menu-list {
  gap: 10px;
}

.menu-list li::before {
  content: none;
}

.menu-list li span:nth-child(2) {
  display: block;
  flex: 1 1 18px;
  min-width: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,58,0.58), transparent);
}

.menu-list span:first-child {
  flex: 0 1 auto;
  max-width: 58%;
  min-width: 0;
}

.menu-list span:last-child {
  flex: 0 1 auto;
  max-width: 48%;
  min-width: 0;
  text-align: right;
}

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

.food-grid .menu-card {
  grid-template-columns: 1fr;
  grid-template-rows: 158px auto;
  min-height: 390px;
}

.food-grid .menu-card .photo-frame {
  height: 158px;
}

.food-grid .menu-card img {
  height: 158px;
  object-position: center;
}

.food-grid .menu-content {
  padding: 20px 18px 22px;
}

.food-grid .menu-card.food-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 164px auto;
  min-height: 372px;
}

.food-grid .menu-card.food-card .photo-frame {
  height: 164px;
}

.food-grid .menu-card.food-card img {
  width: 100%;
  height: 164px;
  aspect-ratio: auto;
  object-fit: cover;
}

.food-grid .food-card .menu-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.food-grid .food-card h3 {
  min-height: 2.4em;
  font-size: clamp(1.42rem, 2vw, 1.82rem);
}

.food-grid .food-card .menu-list {
  gap: 12px;
  margin-top: 18px;
}

.food-grid .food-card .menu-list li {
  display: grid;
  grid-template-columns: max-content minmax(24px, 1fr) max-content;
  gap: 10px;
  align-items: baseline;
  font-size: 0.98rem;
  line-height: 1.45;
  overflow-wrap: normal;
}

.food-grid .food-card .menu-list li span:first-child,
.food-grid .food-card .menu-list li span:last-child {
  max-width: none;
  white-space: nowrap;
}

.food-grid .food-card .menu-list li span:nth-child(2) {
  width: auto;
  min-width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,58,0.58), transparent);
  transform: translateY(-0.18em);
}

.simple-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.simple-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ivory);
  line-height: 1.7;
}

.simple-list li::before {
  content: "✓";
  color: var(--gold);
}

.map-panel {
  min-height: 390px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0a09;
  box-shadow: var(--shadow);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 42px rgba(0,0,0,0.42);
}

.google-map {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 330px;
  height: auto;
  border: 0;
  filter: none;
}

.map-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(201,154,58,0.12), rgba(0,0,0,0.18)),
    #0c0c0b;
}

.map-footer span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.92rem;
  margin-bottom: 5px;
}

.map-footer strong {
  display: block;
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.45;
  font-size: 0.95rem;
}

.map-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(0,0,0,0.25);
}

.contact-layout,
.recruit-layout,
.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.access-section {
  align-items: stretch;
}

.access-section > div {
  display: grid;
  grid-template-rows: auto 1fr;
}

.access-section .access-card,
.access-section .map-panel {
  height: 100%;
  min-height: 420px;
}

.form-panel,
.summary-panel,
.info-panel {
  padding: clamp(22px, 3vw, 32px);
}

.form-title {
  margin: 0 0 24px;
  text-align: center;
  color: var(--gold-bright);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.form-grid.compact {
  gap: 16px 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--gold-bright);
  font-size: 1rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(201,154,58,0.72);
  border-radius: 3px;
  background: rgba(2,2,2,0.54);
  color: var(--ivory);
  outline: none;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(201,154,58,0.14);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

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

.chip,
.segment {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(0,0,0,0.28);
  color: var(--ivory);
}

.chip.is-selected,
.segment.is-selected {
  color: #fff7e4;
  background: linear-gradient(115deg, #a66d1a, #dfc06e 48%, #8d5a15);
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
}

.checkbox-line input {
  accent-color: var(--gold);
}

.form-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

.form-status.success {
  color: var(--gold-bright);
}

.form-status.error {
  color: #f1a1a1;
}

.backend-form.is-submitting {
  opacity: 0.72;
  pointer-events: none;
}

.button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
}

.summary-list {
  display: grid;
  border: 1px solid var(--line);
}

.summary-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row .line-icon {
  width: 32px;
  height: 32px;
}

.summary-row span {
  display: block;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.summary-row strong {
  font-weight: 400;
  font-size: 1.2rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
}

.booking-cell {
  padding: 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.booking-cell:nth-child(2n) {
  border-right: 0;
}

.booking-cell.full {
  grid-column: 1 / -1;
  border-right: 0;
}

.step-label {
  display: inline-grid;
  grid-template-columns: 34px auto;
  gap: 12px;
  align-items: center;
  color: var(--ivory);
  margin-bottom: 18px;
}

.step-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #b6802f, #e0bf68);
  color: #120c03;
  font-weight: 700;
}

.calendar-shell {
  display: grid;
  gap: 14px;
}

.calendar-nav {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
}

.calendar-nav strong {
  color: var(--ivory);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

.calendar-nav-button {
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(0,0,0,0.28);
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.calendar-nav-button:disabled {
  cursor: not-allowed;
  color: var(--dim);
  border-color: rgba(201,154,58,0.24);
  opacity: 0.45;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
  color: var(--ivory);
  text-align: center;
}

.calendar th,
.calendar td {
  width: 14.2%;
  height: 38px;
  color: var(--ivory);
  font-weight: 400;
}

.calendar .muted {
  color: var(--dim);
}

.calendar .unavailable {
  color: rgba(255,255,255,0.18);
}

.calendar-day {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  line-height: 1;
}

.calendar-day:disabled {
  cursor: not-allowed;
  color: rgba(255,255,255,0.24);
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,154,58,0.14);
}

.calendar-day:disabled:hover {
  border-color: transparent;
  color: rgba(255,255,255,0.24);
  box-shadow: none;
  transform: none;
}

.calendar-day.is-selected {
  color: #140c02;
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(224,189,104,0.26);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(56px, 1fr));
  gap: 10px;
}

.booking-time-field {
  margin-top: 20px;
}

.booking-time-field select {
  font-size: 1.08rem;
  cursor: pointer;
}

.guest-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.guest-stepper button {
  width: 56px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--gold-bright);
  font-size: 1.8rem;
}

.guest-count {
  font-size: 2.7rem;
  color: var(--ivory);
}

.seat-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.28);
}

.radio-mark {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(201,154,58,0.22);
}

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

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

.addon {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.24);
}

.addon .line-icon {
  width: 28px;
  height: 28px;
}

.addon input {
  accent-color: var(--gold);
}

.notes {
  padding: 20px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.42)),
    url("./assets/images/drink-selection.png") center / cover;
}

.notes ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--ivory);
  line-height: 1.85;
}

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

.flow-card {
  position: relative;
  min-height: 170px;
  padding: 24px 18px;
  text-align: center;
}

.flow-card .line-icon {
  margin: 12px auto 14px;
}

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

.faq-item {
  padding: 16px 20px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--gold-bright);
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--gold-bright);
  border-bottom: 1px solid var(--gold-bright);
  transform: rotate(45deg);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--ivory);
  line-height: 1.7;
}

.access-card {
  min-height: 320px;
  padding: clamp(26px, 3.6vw, 38px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.access-card .line-icon {
  width: 62px;
  height: 62px;
}

.address {
  font-size: clamp(1.1rem, 1.75vw, 1.42rem);
  line-height: 1.8;
  letter-spacing: 0;
}

.opening {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.mini-caption {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
}

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

.banner-card {
  min-height: 156px;
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,11,10,0.92);
}

.banner-card .photo-frame {
  height: 100%;
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-card .photo-note {
  right: 6px;
  bottom: 6px;
  min-height: 19px;
  padding: 3px 6px;
  font-size: 0.64rem;
}

.banner-card div {
  padding: 28px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: heroDrift 22s ease-in-out infinite alternate;
  }

  [data-animate] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    filter: blur(8px);
    transition:
      opacity 760ms cubic-bezier(.16, 1, .3, 1),
      transform 900ms cubic-bezier(.16, 1, .3, 1),
      filter 900ms cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--stagger, 0ms);
    will-change: opacity, transform, filter;
  }

  [data-animate="slide-right"] {
    transform: translate3d(-36px, 0, 0);
  }

  [data-animate="slide-left"] {
    transform: translate3d(36px, 0, 0);
  }

  [data-animate="hero-title"] {
    transform: translate3d(0, 38px, 0) scale(0.985);
    filter: blur(10px);
  }

  [data-animate="zoom-soft"] {
    transform: scale(0.965);
  }

  [data-animate="fade"] {
    transform: none;
  }

  [data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .card,
  .image-card,
  .menu-card,
  .flow-card,
  .faq-item,
  .info-panel,
  .form-panel,
  .summary-panel,
  .banner-card,
  .media-frame,
  .cta-band {
    transition:
      opacity 760ms cubic-bezier(.16, 1, .3, 1),
      transform 260ms ease,
      filter 900ms cubic-bezier(.16, 1, .3, 1),
      border-color 260ms ease,
      box-shadow 260ms ease;
  }

  .card[data-animate].is-visible:hover,
  .image-card[data-animate].is-visible:hover,
  .menu-card[data-animate].is-visible:hover,
  .flow-card[data-animate].is-visible:hover,
  .faq-item[data-animate].is-visible:hover,
  .banner-card[data-animate].is-visible:hover {
    transform: translateY(-6px);
    border-color: var(--gold-bright);
    box-shadow: 0 24px 58px rgba(0,0,0,0.5), 0 0 0 1px rgba(224,189,104,0.12);
  }

  .image-card img,
  .menu-card img,
  .banner-card img,
  .instagram-photo img,
  .media-frame img {
    transition: transform 850ms cubic-bezier(.16, 1, .3, 1), filter 400ms ease;
  }

  .image-card:hover img,
  .menu-card:hover img,
  .banner-card:hover img,
  .instagram-photo:hover img,
  .media-frame:hover img {
    transform: scale(1.055);
    filter: saturate(1.05) contrast(1.12);
  }

  .chip,
  .segment,
  .calendar-day,
  .guest-stepper button,
  .field input,
  .field select,
  .field textarea,
  .addon {
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease,
      color 180ms ease;
  }

  .chip:hover,
  .segment:hover,
  .calendar-day:hover,
  .guest-stepper button:hover,
  .addon:hover {
    transform: translateY(-2px);
    border-color: var(--gold-bright);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3), inset 0 0 28px rgba(201,154,58,0.08);
  }

  .line-icon svg {
    transition: transform 260ms ease, filter 260ms ease;
  }

  .card:hover .line-icon svg,
  .summary-row:hover .line-icon svg,
  .store-row:hover .line-icon svg,
  .addon:hover .line-icon svg {
    transform: translateY(-2px) scale(1.06);
    filter: drop-shadow(0 0 10px rgba(224,189,104,0.34));
  }
}

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 24px 22px;
    background: rgba(3,3,3,0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 0;
  }

  .grid-4,
  .feature-row,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-5,
  .food-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-layout,
  .recruit-layout,
  .reservation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 560px;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.48) 58%, rgba(0,0,0,0.34) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.72) 100%),
      var(--hero-image);
    filter: saturate(1.08) contrast(1.1) brightness(1.04);
  }

  .page-section,
  .hero-inner,
  .cta-band,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .grid-5,
  .feature-row,
  .food-grid,
  .flow-grid,
  .faq-grid,
  .two-banners {
    grid-template-columns: 1fr;
  }

  .info-strip,
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card.wide {
    grid-column: auto;
    grid-template-columns: minmax(132px, 34%) minmax(0, 1fr);
  }

  .booking-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-cell {
    border-right: 0;
  }

  .seat-option {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "radio status"
      "content content";
    align-items: start;
    gap: 16px;
  }

  .seat-option .radio-mark {
    grid-area: radio;
    align-self: center;
  }

  .seat-option > div {
    grid-area: content;
    min-width: 0;
  }

  .seat-option > .chip {
    grid-area: status;
    justify-self: end;
    width: auto;
    min-width: 96px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .time-grid,
  .option-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-actions,
  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .access-card {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .access-card .line-icon {
    margin: 0 auto;
  }

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

.access-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(200, 170, 100, 0.25);
}

.access-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.access-contact a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

  .access-section .access-card,
  .access-section .map-panel {
    min-height: auto;
  }

  .google-map {
    min-height: 300px;
  }

  .map-footer {
    grid-template-columns: 1fr;
  }

  .banner-card {
    grid-template-columns: 1fr;
  }

  .banner-card img {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0 16px;
  }

  .brand {
    font-size: 2rem;
  }

  .brand-with-logo {
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    padding: 3px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero .lead {
    font-size: 1.5rem;
  }

  .seat-option {
    padding: 18px;
  }

  .seat-option h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.45;
  }

  .seat-option p {
    margin: 0;
    line-height: 1.85;
  }

  .section-title {
    gap: 14px;
    font-size: 2rem;
  }

  .section-title::before,
  .section-title::after,
  .eyebrow::before {
    width: 44px;
  }

  .info-strip,
  .instagram-grid,
  .segmented,
  .segmented.two,
  .time-grid,
  .option-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card.wide {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .store-row {
    grid-template-columns: 34px 1fr;
  }

  .store-row strong {
    grid-column: 2;
  }
}

/* ===== Smart Line Breaking (日本語フレーズ改行制御) ===== */
/*
  word-break: auto-phrase  — Chrome 119+: 日本語を自然なフレーズ単位で改行
  overflow-wrap: break-word — 超長い単語が溢れる場合の安全弁
*/
.hero .body-copy,
.hero p,
.body-copy,
.lead,
.image-card-body,
.image-card-body p,
.card-text,
.notes li,
.reservation-cta-desc,
.policy-body p,
.policy-body li,
[class*="-desc"],
[class*="-text"] {
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

/* ===== Footer Policy Links ===== */
.footer-policy {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.footer-policy a {
  font-size: 1.1rem;
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-policy a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ===== Policy Pages ===== */
.policy-layout {
  display: flex;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) 24px;
}

.policy-card {
  max-width: 720px;
  width: 100%;
}

.policy-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-bright);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.policy-updated {
  font-size: 1.2rem;
  color: var(--text-muted, #888);
  margin: 0 0 40px;
}

.policy-body {
  color: var(--ivory);
  line-height: 2;
  font-size: 1.4rem;
}

.policy-body h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin: 32px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,154,58,0.3);
}

.policy-body p {
  margin: 0 0 12px;
}

.policy-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.policy-body li {
  margin-bottom: 6px;
}

.policy-body a {
  color: var(--gold);
  text-decoration: underline;
}

.policy-back {
  margin-top: 48px;
}

/* ===== Thank You Page ===== */
.thankyou-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 60px 24px;
}

.thankyou-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 560px;
  padding: 64px 48px;
  border: 1px solid var(--gold);
  background: var(--surface);
}

.thankyou-card .line-icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--gold);
}

.thankyou-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.thankyou-body {
  color: var(--text-muted);
  line-height: 2;
  font-size: 1.5rem;
}

.thankyou-actions {
  margin-top: 8px;
}

@media (max-width: 520px) {
  .thankyou-card {
    padding: 40px 24px;
  }

  .thankyou-title {
    font-size: 1.8rem;
  }
}

/* ===== Reservation CTA ===== */
.reservation-cta-section {
  text-align: center;
}

.reservation-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201,154,58,0.10), rgba(0,0,0,0.30) 50%, rgba(111,29,27,0.10)),
    #0d0d0c;
  max-width: 720px;
  margin: 0 auto;
}

.reservation-cta-desc {
  color: var(--ivory);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  line-height: 1.9;
  margin: 0;
}

.reservation-cta-desc .sp-br {
  display: none;
}

.reservation-cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-bright));
  color: #0d0d0c;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(201,154,58,0.35);
}

.reservation-cta-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,154,58,0.5);
}

.reservation-cta-btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.reservation-cta-store {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 680px) {
  .reservation-cta-btn {
    padding: 16px 32px;
    width: 100%;
    text-align: center;
  }

  .reservation-cta-desc .sp-br {
    display: inline;
  }
}

/* ==================== News ==================== */

.news-page .section-title {
  margin-bottom: 40px;
}

.news-loading,
.news-empty {
  color: var(--ivory);
  opacity: 0.7;
  text-align: center;
  padding: 40px 0;
  font-size: 1rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.news-card {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,154,58,0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.news-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,154,58,0.5);
}

.news-thumb {
  flex: 0 0 160px;
  width: 160px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  flex: 1;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 0.05em;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.5;
  margin: 0;
}

.news-excerpt {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.7;
  line-height: 1.7;
  margin: 0;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.news-content {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.85;
  line-height: 1.8;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.news-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
  border-radius: 6px;
}

.news-content p {
  margin: 0 0 8px;
}

.news-content figure {
  margin: 0;
}

@media (max-width: 680px) {
  .news-card {
    flex-direction: column;
    gap: 0;
  }

  .news-thumb {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .news-body {
    padding: 16px;
  }
}
