:root {
  --bg-start: #0d0d0d;
  --bg-end: #1a1a1a;
  --surface-1: #1a1f24;
  --surface-2: #1e2530;
  /* Classic, slightly muted gold palette */
  --gold-light: #f1e6c6;
  --gold: #bfa56b;
  --gold-dark: #7e6a3a;
  --text: #f2f2f2;
  --muted: #c8c2b8;
  --shadow: rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(255,215,128,0.06), transparent 70%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
  line-height: 1.75;
  min-height: 100dvh;
}
section { scroll-margin-top: 80px; position: relative; isolation: isolate; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 48px; background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease;
  z-index: 1000;
}
.site-header.scrolled { padding: 8px 42px; background: rgba(12,12,12,0.82); border-bottom-color: rgba(192,160,96,0.2); backdrop-filter: blur(6px); box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.logo { font-size: 22px; font-weight: 700; letter-spacing: .08em; color: var(--gold); transition: font-size .4s ease, transform .4s ease, letter-spacing .4s ease; text-decoration: none; font-family: 'Cinzel', 'Playfair Display', serif; }
.logo.glossy-gold { background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.site-header.scrolled .logo { font-size: 18px; transform: translateY(-2px); letter-spacing: .5px; }

.gnav { position: relative; }
.gnav .menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--gold); cursor: pointer; }
.gnav .nav-list { display: flex; list-style: none; margin: 0; padding: 0; }
.gnav .nav-list li { margin-left: 20px; }
.gnav .nav-list a { color: var(--gold); text-decoration: none; font-weight: 500; transition: color .3s ease, transform .3s ease; position: relative; letter-spacing: .04em; font-family: 'Noto Serif JP', serif; }
.gnav .nav-list a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width .3s ease; }
.gnav .nav-list a:hover { color: var(--gold-light); transform: translateY(-2px); }
.gnav .nav-list a:hover::after { width: 100%; }
@media (max-width: 768px) {
  .gnav .menu-toggle { display: block; }
  .gnav .nav-list { position: absolute; top: 100%; right: 0; background: #1a1a1a; flex-direction: column; width: 220px; padding: 16px; border: 1px solid var(--gold-dark); display: none; }
  .gnav .nav-list.show { display: flex; animation: fadeIn .3s ease; }
  .gnav .nav-list li { margin: 12px 0; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px);} to {opacity:1; transform:none;} }

/* Hero 100vh with media layer */
.hero { min-height: 100svh; position: relative; display: grid; place-items: center; text-align: center; overflow: clip; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__parallax { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__parallax { background: center / cover no-repeat; transform: translateY(0) scale(1.1); }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(1200px 600px at 50% -10%, rgba(0,0,0,0.1), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65)); }
.hero__media, .hero__video, .hero__parallax, .hero__overlay { pointer-events: none; }
.hero__content { position: relative; z-index: 1; padding: 24px; }
/* Hero logo: slightly smaller, classic gold */
.hero__logo { display: inline-block; margin: 0 0 10px; font-weight: 700; font-family: 'Cinzel', 'Playfair Display', serif; text-transform: none; letter-spacing: .08em; line-height: 1.02; font-size: clamp(40px, 8vw, 110px); background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 42%, var(--gold-dark) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 2px 4px rgba(0,0,0,.45); }
/* Tagline: calmer white tone and smaller */
.hero__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(16px, 3.6vw, 28px); line-height: 1.2; margin: 0 0 8px; color: rgba(255,255,255,.86); letter-spacing: .01em; background: none; -webkit-text-fill-color: rgba(255,255,255,.86); }
.hero__cta { margin-top: 10px; }
.hero__scroll-indicator { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); background: none; border: none; color: var(--gold); font-weight: 600; letter-spacing: .2em; cursor: pointer; opacity: .85; }
.hero__scroll-indicator::after { content: ""; display: block; width: 2px; height: 36px; background: linear-gradient(180deg, var(--gold), transparent); margin: 6px auto 0; border-radius: 2px; animation: pulseDown 1.6s ease-in-out infinite; }
@keyframes pulseDown { 0% { transform: translateY(0);} 50% { transform: translateY(6px);} 100% { transform: translateY(0);} }

/* Headings */
h2, h3 { font-weight: 600; margin-bottom: 12px; color: var(--gold); }
h2 { font-size: clamp(26px, 5vw, 38px); }
h2.glossy-gold, h3.glossy-gold { background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold); }

/* Container */
.container { max-width: 980px; margin: 40px auto; padding: 0 16px; }
.container--wide { max-width: 1200px; }

/* Sections */
.section { padding: 96px 16px; background: var(--surface-1); opacity: .96; transition: opacity .6s ease, transform .6s ease; }
.section.alt { background: var(--surface-2); }
.section.is-section-active { opacity: 1; transform: translateY(0); }
.section.is-section-exiting { opacity: .88; }
.section.section--angled::before { content: ""; position: absolute; inset: -4vw 0 auto 0; height: 10vw; z-index: 0; background: inherit; filter: brightness(1.02); -webkit-clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%); clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%); }
.section .container, .section .menu-slider { position: relative; z-index: 1; }
.lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.8vw, 26px); color: rgba(242,236,224,.9); line-height: 1.9; margin-top: 12px; }

/* Features grid */
.features .grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-top: 24px; }
@media (max-width:1024px){ .features .grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width:640px){ .features .grid { grid-template-columns: 1fr;} }
.card { background:#222a34; border:1px solid var(--gold-dark); border-radius:12px; padding:28px 24px 24px; box-shadow:0 8px 24px rgba(0,0,0,.25); transition:transform .25s ease, box-shadow .25s ease; }
.card p { font-size: 15px; line-height: 1.8; color: rgba(242,236,224,.85); }
.card:hover { transform: translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.35); }
.card h3 { color: var(--gold); margin-top: 0; font-family: 'Playfair Display', serif; }
.features .card { cursor: pointer; }

/* Menu grid (home) */
.menu-grid { display: grid; gap: 24px; margin-top: 16px; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-cta { margin-top: 20px; text-align: center; }
.menu-card { display:block; text-decoration:none; color:inherit; background:#222a34; border:1px solid var(--gold-dark); border-radius:12px; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,.25); text-align:center; transition: transform .25s ease, box-shadow .25s ease; }
.menu-card:hover { transform: translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.35); }
.menu-card img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; border-bottom:1px solid var(--gold-dark); transition: transform .4s ease; }
.menu-card:hover img { transform: scale(1.05); }
.menu-card h3 { margin:12px 0 6px; color: var(--gold); font-family: 'Playfair Display', serif; }
.menu-card .price { font-weight:bold; color: var(--gold-light); margin-bottom:12px; }
.menu-meta { padding: 8px 12px 16px; }

/* Menu page hero */
.menu-hero { min-height: 40svh; position: relative; display: grid; place-items: center; text-align: center; overflow: clip; background: var(--surface-2); }
.menu-hero__media { position: absolute; inset: 0; z-index: 0; }
.menu-hero__parallax { position: absolute; inset: 0; background: center/cover no-repeat; transform: scale(1.08); }
.menu-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6)); }
.menu-hero__media, .menu-hero__parallax, .menu-hero__overlay { pointer-events: none; }
.menu-hero__content { position: relative; z-index: 1; padding: 24px; }
.menu-hero__title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(28px, 6.4vw, 64px); background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 0; }
.menu-hero__subtitle { font-size: clamp(13px, 2.2vw, 18px); color: rgba(255,255,255,.88); margin-top: 8px; }

/* Dish sections */
.dish-grid { display: grid; gap: clamp(28px, 6vw, 56px); }
.dish { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(16px, 3vw, 28px); align-items: center; }
.dish.alt { grid-template-columns: 1.2fr 1fr; }
.dish.alt .dish-media { order: 2; }
.dish.alt .dish-content { order: 1; }
.dish-media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 16px; border: 1px solid var(--gold-dark); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.dish-media:hover img { transform: scale(1.03); }
.dish-content { padding: clamp(4px, 1vw, 8px); display: grid; gap: 8px; align-content: start; }
.dish-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4.2vw, 36px); display: flex; align-items: baseline; gap: 12px; margin: 0 0 8px; }
.dish-price { font-size: .9em; color: var(--gold-light); font-weight: 600; }
.dish-desc { color: rgba(255,255,255,.9); margin: 8px 0 12px; line-height: 1.9; }
.dish-points { margin: 0 0 12px 18px; color: rgba(255,255,255,.9); }
.dish-points li { margin: 4px 0; }
.dish-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--gold-dark); color: var(--gold-light); background: rgba(255,215,128,.06); font-size: 12px; letter-spacing: .02em; }

@media (max-width: 960px) {
  .dish, .dish.alt { grid-template-columns: 1fr; }
}

/* Buttons */
.btn-gold { display:inline-block; margin-top:14px; padding:12px 28px; border-radius:999px; font-weight:600; text-decoration:none; color:#1a1a1a; background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%); box-shadow:0 6px 18px rgba(192,160,96,.25); border:1px solid var(--gold-dark); transition: transform .15s ease, box-shadow .2s ease, filter .2s ease; }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow:0 10px 24px rgba(192,160,96,.35); }

/* Footer */
.site-footer { padding:24px 16px; text-align:center; background:#222a34; color:var(--gold); border-top:1px solid var(--gold-dark); }
.footer-info { margin: 0 0 8px; font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* Modal */
.hidden { display: none; }
.modal { position: fixed; inset: 0; display: grid; align-items: start; z-index: 1500; }
@media (min-width: 640px){ .modal { align-items: center; } }
.modal.hidden { display: none; }
.modal .backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .35s cubic-bezier(.2,.6,.2,1); }
.modal .panel { position: relative; z-index: 1; max-width: 520px; margin: 8% auto; background: #222a34; color: var(--text); padding: 24px; border-radius: 12px; border: 1px solid var(--gold-dark); box-shadow: 0 10px 30px rgba(0,0,0,.5); opacity: 0; transform: translateY(8px) scale(.98); transition: opacity .35s cubic-bezier(.2,.6,.2,1), transform .35s cubic-bezier(.2,.6,.2,1); }
.modal .close { position:absolute; right:12px; top:8px; font-size:20px; background:none; border:none; cursor:pointer; color:var(--gold); }
.modal.is-open .backdrop { opacity: 1; }
.modal.is-open .panel { opacity: 1; transform: none; }
/* Feature modal */
#feature-modal .panel { max-width: 720px; padding: 28px; position: relative; overflow: hidden; background: #222a34; }
#feature-modal .panel::before { content:""; position:absolute; inset:0; background: var(--feature-bg, none) center/cover no-repeat; opacity: .28; filter: blur(2px) saturate(1.05) contrast(1.02); transform: scale(1.06); }
#feature-modal .panel::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 50% -10%, rgba(0,0,0,0.25), transparent 60%), linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.5)); }
#feature-modal .panel > * { position: relative; z-index: 1; }
.feature-title { margin: 0 0 6px; font-family: 'Playfair Display', serif; font-size: clamp(20px, 3.6vw, 30px); text-shadow: 0 1px 2px rgba(0,0,0,.6); }
.feature-lead { color: rgba(255,255,255,.92); line-height: 1.9; margin: 6px 0 12px; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.feature-list { margin: 0; padding-left: 18px; color: rgba(255,255,255,.9); }
.feature-list li { margin: 6px 0; position: relative; }
.feature-list li::marker { color: var(--gold); }
/* Inline feature media layout */
#feature-modal .feature-content { display: grid; gap: 14px; align-items: start; }
@media (min-width: 720px){ #feature-modal .feature-content { grid-template-columns: minmax(220px, 40%) 1fr; } }
.feature-media { margin: 0; border: 1px solid var(--gold-dark); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,.35); aspect-ratio: 16 / 9; max-height: min(40vh, 320px); }
.feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Menu hero CTA spacing */
.menu-hero__content .btn-gold { margin-top: 14px; }

/* Reserve form */
#reserve-form { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
#reserve-form label { color: var(--gold-light); font-weight: 500; font-size: 14px; }
#reserve-form input, #reserve-form select, #reserve-form textarea { background: #111; border: 1px solid var(--gold-dark); color: #fff; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-family: inherit; }
#reserve-form input:focus, #reserve-form select:focus, #reserve-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 4px var(--gold); }
.datetime-wrapper { position: relative; }
.calendar-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #fff; cursor: pointer; font-size: 18px; }
.calendar-icon:hover { color: var(--gold); }

/* Image modal for zoomable images */
.image-modal { display: none; position: fixed; inset: 0; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.85); backdrop-filter: blur(6px); z-index: 2000; opacity: 0; transform: scale(0.97); transition: opacity 0.4s ease, transform 0.4s ease; }
.image-modal.show { display: flex; opacity: 1; transform: scale(1); animation: zoomFadeIn .35s ease; }
.image-modal.hide { opacity: 0; transform: scale(0.97); }
.image-modal .close { position: absolute; top: 20px; right: 30px; color: var(--gold-light); font-size: 40px; cursor: pointer; transition: color 0.3s ease; }
.image-modal .close:hover { color: var(--gold); }
.image-modal .modal-content { max-width: 80%; max-height: 80%; border-radius: 12px; border: 1px solid var(--gold-dark); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); transition: transform 0.35s ease, opacity 0.35s ease; opacity: 0; transform: scale(0.96); }
.image-modal.show .modal-content { opacity: 1; transform: scale(1); }

/* Clickable zoom affordance */
.zoomable { cursor: zoom-in; }

@keyframes zoomFadeIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

/* Flatpickr custom */
.flatpickr-calendar { background: #111 !important; border: 1px solid var(--gold-dark) !important; color: #fff !important; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.flatpickr-day { color: #fff !important; border-radius: 6px !important; }
.flatpickr-day:hover { background: var(--gold-dark) !important; color: #000 !important; }
.flatpickr-day.today { border: 1px solid var(--gold) !important; color: var(--gold) !important; }
.flatpickr-day.selected { background: var(--gold) !important; color: #000 !important; }
.flatpickr-time input { background: #222 !important; color: #fff !important; border: 1px solid var(--gold-dark) !important; }
#datetime { color: #fff !important; caret-color: var(--gold) !important; background: #111 !important; border: 1px solid var(--gold-dark) !important; }
#datetime::placeholder { color: var(--gold) !important; opacity: 0.8; }
.flatpickr-current-month, .flatpickr-monthDropdown-months, .flatpickr-weekday { color: var(--gold) !important; }
.flatpickr-time input:focus { outline: none !important; border-color: var(--gold) !important; box-shadow: 0 0 4px var(--gold); }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--gold) !important; stroke: var(--gold) !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--gold-light) !important; stroke: var(--gold-light) !important; }

/* Accessibility */
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { position:fixed; left:16px; top:16px; width:auto; height:auto; padding:8px 12px; background:#000; color:#fff; border-radius:6px; z-index:2000; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-gold:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Map */
.map-embed { margin-top: 16px; border:1px solid var(--gold-dark); border-radius:12px; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,.25); }
.map-embed iframe { width:100%; height:360px; border:0; display:block; }
@media (max-width:640px){ .map-embed iframe { height:300px; } }

/* Subtle steam background (static, no animation) */
.concept { position: relative; }
.concept::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 20% 110%, rgba(255,255,255,0.14), rgba(255,255,255,0) 60%),
    radial-gradient(50% 70% at 80% -10%, rgba(255,255,255,0.10), rgba(255,255,255,0) 65%),
    radial-gradient(40% 60% at 50% 100%, rgba(255,255,255,0.08), rgba(255,255,255,0) 70%);
  opacity: .5;
}

/* Section divider */
.section + .section { box-shadow: 0 -1px 0 rgba(126,106,58,.2); }

/* Concept grid */
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px); align-items: center; }
.concept-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--gold-dark); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.concept-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; transition: transform .4s ease; }
.concept-img:hover img { transform: scale(1.03); }
@media (max-width: 768px) { .concept-grid { grid-template-columns: 1fr; } }

/* Staff section */
.staff-card { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 36px); align-items: center; margin-top: 16px; }
.staff-photo { width: clamp(120px, 20vw, 180px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-dark); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-role { color: var(--gold); font-size: 14px; letter-spacing: .06em; margin: 4px 0 12px; }
.staff-desc { color: rgba(242,236,224,.88); line-height: 1.9; }
@media (max-width: 640px) { .staff-card { grid-template-columns: 1fr; justify-items: center; text-align: center; } }

/* Feature card icons */
.card-icon { display: block; width: 50px; height: 50px; margin-bottom: 14px; }

/* Menu category nav */
.menu-nav { display: flex; justify-content: center; gap: 12px; padding: 16px; background: var(--surface-1); border-bottom: 1px solid rgba(126,106,58,.2); position: sticky; top: 56px; z-index: 500; }
.menu-nav a { color: var(--gold); text-decoration: none; padding: 8px 20px; border-radius: 999px; border: 1px solid var(--gold-dark); font-size: 14px; font-weight: 500; transition: background .2s ease, color .2s ease; }
.menu-nav a:hover { background: var(--gold-dark); color: var(--text); }

/* Dish category heading */
.dish-category { font-family: 'Playfair Display', serif; font-size: clamp(18px, 3vw, 24px); margin: 12px 0 0; padding-bottom: 8px; border-bottom: 1px solid rgba(126,106,58,.25); }

/* SNS section */
.sns-icons { display: flex; gap: 16px; justify-content: center; margin-top: 20px; }
.sns-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold-dark); color: var(--gold); transition: background .2s ease, color .2s ease, transform .2s ease; }
.sns-icon:hover { background: var(--gold-dark); color: var(--text); transform: translateY(-2px); }
.sns-timeline { margin-top: 28px; width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; }
.sns-timeline-label { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--gold); letter-spacing: .06em; text-align: center; margin-bottom: 12px; }
.sns-grid { display: flex; gap: 14px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.sns-grid-track { display: flex; gap: 14px; animation: snsScroll 28s linear infinite; }
.sns-grid-track img { flex-shrink: 0; width: 280px; height: 280px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(126,106,58,.2); }
.sns-grid:hover .sns-grid-track { animation-play-state: paused; }
@keyframes snsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 7px)); } }
.sns-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; opacity: .7; }

/* Sub lead */
.sub-lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(13px, 2vw, 16px); color: var(--muted); margin-top: 6px; letter-spacing: .03em; }

/* Form note */
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; opacity: .7; }

/* CTA section */
.cta { text-align: center; }
.cta .container { max-width: 640px; padding: 20px 16px; border: 1px solid rgba(126,106,58,.2); border-radius: 16px; background: rgba(34,42,52,.6); }
.cta p { font-size: 15px; color: rgba(242,236,224,.85); }

/* Menu page body */
.menu-page { background: linear-gradient(180deg, var(--bg-start), var(--bg-end)); }

/* Back to top */
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold-dark); background: rgba(26,31,36,.92); color: var(--gold); font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease, background .2s ease; z-index: 900; }
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); color: var(--text); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *:not(.reveal) { animation: none !important; transition: none !important; }
  .reveal { animation: none !important; }
  .hero__parallax { transform: none !important; }
  .sns-grid-track { animation: none !important; }
}
