/* =================================================================
   Hilow — Hotpot & Grill Buffet
   Main stylesheet: design tokens, customer site, shared components
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --ember-deep: #8B1E1E;
  --ember: #9B2C2C;
  --ember-bright: #C8341F;
  --charcoal: #1A1614;
  --charcoal-soft: #2A2420;
  --cream: #F5EFE6;
  --paper: #FAF6F0;
  --paper-warm: #F0E7D8;
  --amber: #C8954A;
  --copper: #B87333;
  --ink: #2A2018;
  --ink-soft: #5C4E40;
  --muted: #8A7B6C;
  --line: #E2D6C4;
  --line-strong: #CBB89E;
  --green: #6B8E4E;
  --danger: #B23A2E;
  --shadow-sm: 0 2px 8px rgba(60, 30, 10, 0.08);
  --shadow-md: 0 8px 30px rgba(60, 30, 10, 0.12);
  --shadow-lg: 0 24px 60px rgba(60, 30, 10, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Spline Sans", system-ui, sans-serif;
  --maxw: 1200px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0 0 0.4em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--ember); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ember-bright); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }
code { font-family: "Spline Sans Mono", ui-monospace, monospace; background: var(--paper-warm); padding: 2px 6px; border-radius: 4px; font-size: .9em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.muted.light { color: rgba(245, 239, 230, 0.65); }
.small { font-size: .82rem; }
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 1rem;
}
.eyebrow.light { color: var(--amber); }
.ember-text { color: var(--ember); font-style: italic; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.55; max-width: 38ch; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.grain.dark { opacity: 0.25; mix-blend-mode: overlay; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--charcoal); }
.brand:hover { color: var(--ember); }
.brand-mark { color: var(--ember); display: flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand-sub { font-size: .68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 10px 16px; border-radius: 999px; color: var(--ink); font-weight: 500; font-size: .95rem;
  transition: background .2s, color .2s;
}
.site-nav a:hover { background: var(--paper-warm); color: var(--ember); }
.site-nav a.nav-admin {
  background: var(--charcoal); color: var(--cream);
}
.site-nav a.nav-admin:hover { background: var(--ember-deep); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: transform .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .2s ease; text-decoration: none;
  line-height: 1; white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--ember-deep); color: #fff; box-shadow: 0 6px 18px rgba(139,30,30,0.28); }
.btn-primary:hover { background: var(--ember); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(139,30,30,0.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--paper-warm); border-color: var(--copper); color: var(--ember); }
.btn-danger-outline { background: transparent; color: var(--danger); border-color: rgba(178,58,46,0.4); }
.btn-danger-outline:hover { background: var(--danger); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(200,52,31,0.18), transparent 60%),
    radial-gradient(90% 70% at 10% 100%, rgba(200,149,74,0.16), transparent 55%),
    linear-gradient(180deg, #2A1A14 0%, #4A1F18 45%, #6B2820 100%);
  color: var(--cream);
  padding: clamp(20px, 4vh, 50px) 0;
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,60,0.35), rgba(255,80,20,0.08) 50%, transparent 70%);
  filter: blur(30px); animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .7; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
.hero-inner { position: relative; z-index: 2; }
.hero-title { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(245,239,230,0.8); max-width: 52ch; margin: 1.5rem 0 2.2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero .btn-ghost { color: var(--cream); border-color: rgba(245,239,230,0.35); }
.hero .btn-ghost:hover { background: rgba(245,239,230,0.1); border-color: var(--amber); color: var(--amber); }
.hero-stats { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--amber); line-height: 1; }
.hero-stats span { font-size: .78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,239,230,0.6); margin-top: 6px; }

/* Steam effect */
.steam { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; pointer-events: none; z-index: 1; }
.steam span {
  position: absolute; bottom: -40px; width: 60px; height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(255,255,255,0.16), transparent 70%);
  filter: blur(14px); border-radius: 50%;
  animation: rise 7s ease-in infinite; opacity: 0;
}
.steam span:nth-child(1) { left: 18%; animation-delay: 0s; }
.steam span:nth-child(2) { left: 42%; animation-delay: 2s; width: 80px; }
.steam span:nth-child(3) { left: 64%; animation-delay: 4s; }
.steam span:nth-child(4) { left: 82%; animation-delay: 1s; width: 50px; }
@keyframes rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  30% { opacity: 0.9; }
  100% { transform: translateY(-260px) scale(1.6); opacity: 0; }
}

/* reveal on load */
.reveal { opacity: 0; transform: translateY(20px); animation: reveal .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal:nth-child(1) { animation-delay: .05s; }
.reveal:nth-child(2) { animation-delay: .15s; }
.reveal:nth-child(3) { animation-delay: .25s; }
.reveal:nth-child(4) { animation-delay: .35s; }
.reveal:nth-child(5) { animation-delay: .45s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ---------- About ---------- */
.about { padding: clamp(70px, 10vh, 120px) 0; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.about-text .section-title { margin-bottom: 0.6rem; }
.about-card {
  background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-card::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,149,74,0.4), transparent 70%); filter: blur(20px);
}
.about-card-top { position: relative; margin-bottom: 20px; }
.tag {
  display: inline-block; background: rgba(200,149,74,0.2); color: var(--amber);
  font-size: .68rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.about-card h3 { font-size: 1.6rem; color: var(--cream); }
.broth-list { position: relative; }
.broth-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(245,239,230,0.12);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
}
.broth-list li:last-child { border-bottom: 0; }
.about-card-link {
  position: relative; display: inline-block; margin-top: 20px;
  color: var(--amber); font-size: .9rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; border-bottom: 1px solid rgba(200,149,74,0.4); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.about-card-link:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Menu ---------- */
.menu { padding: clamp(40px, 6vh, 80px) 0 clamp(70px, 10vh, 120px); background: var(--paper-warm); position: relative; }
.section-head { text-align: center; margin: 0 auto clamp(40px, 6vh, 64px); }
.section-head .eyebrow { color: var(--copper); }

/* ---------- Gallery carousel (Signatures) ---------- */
.gallery-carousel { position: relative; }
.gallery-viewport { overflow: hidden; }
.gallery-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.gallery-slide { flex: 0 0 calc(100% / 3); margin: 0; padding: 0 6px; box-sizing: border-box; }
.gallery-slide img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-md);
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(26,22,20,0.55); color: var(--cream); font-size: 1.8rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background .2s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.gallery-nav:hover { background: rgba(26,22,20,0.82); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--line-strong); transition: background .2s, transform .2s;
}
.gallery-dot.is-active { background: var(--ember-deep); transform: scale(1.3); }

/* ---------- Hours / CTA ---------- */
.hours-cta { padding: clamp(70px, 10vh, 120px) 0; background: var(--paper); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hours-card {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
}
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.hours-list li:last-child { border-bottom: 0; }
.closed { color: var(--danger); font-weight: 600; }
.cta-card {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(200,52,31,0.25), transparent 55%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--ember-deep) 130%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream); padding: 64px 0 24px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(245,239,230,0.12); }
.footer-brand { font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.site-footer h4 { font-size: .8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.footer-link { color: rgba(245,239,230,0.7); }
.footer-link:hover { color: var(--amber); }
.footer-bottom { padding-top: 20px; text-align: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(100% 100% at 0% 0%, rgba(200,149,74,0.15), transparent 60%),
    linear-gradient(180deg, var(--charcoal) 0%, #3A1814 100%);
  color: var(--cream); padding: clamp(20px, 4vh, 50px) 0 clamp(20px, 4vh, 50px);
}
.page-title { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; color: var(--cream); margin: 0; }
.page-hero .lede { color: rgba(245,239,230,0.75); margin-top: 0.8rem; }

/* ---------- Pricing page ---------- */
.pricing-section { padding: clamp(50px, 8vh, 90px) 0; background: var(--paper); }
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(200,52,31,0.10), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper-warm) 130%);
  border-color: var(--ember); border-width: 2px;
}
.price-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ember);
  margin: 8px 0 12px; line-height: 1;
}
.price-amount .price-unit {
  font-family: var(--font-body); font-weight: 500;
  font-size: .85rem; color: var(--muted); display: block; margin-top: 6px;
}
.price-free { color: var(--green); }
.promo-banner {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(200,52,31,0.25), transparent 55%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--ember-deep) 130%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); text-align: center; margin-bottom: 32px;
}
.promo-eyebrow { font-size: 1.5rem; font-weight: 800; color: var(--amber); letter-spacing: 0.18em; }
.promo-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--cream); margin: 4px 0 12px; }
.promo-title em { color: var(--amber); font-style: italic; }
.promo-lede { color: rgba(245,239,230,0.85); font-size: 1.1rem; max-width: 50ch; margin: 0 auto; }
.terms-card {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px);
  margin-bottom: 40px;
}
.terms-title { font-size: 1.4rem; margin-bottom: 16px; }
.terms-list { list-style: disc; padding-left: 22px; }
.terms-list li { padding: 6px 0; color: var(--ink-soft); }
.pricing-cta { text-align: center; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ---------- Cards & shared form bits ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label, .field legend { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 1rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(139,30,30,0.12);
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Reserve page ---------- */
.reserve-section { padding: clamp(48px, 7vh, 80px) 0; background: var(--paper-warm); }
.reserve-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.reserve-form { display: flex; flex-direction: column; gap: 8px; }
.field-group { border: 0; padding: 0 0 8px; margin: 0 0 18px; border-bottom: 1px dashed var(--line); }
.field-group:last-of-type { border-bottom: 0; }
.field-group legend { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 18px; }
.step-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ember-deep); color: #fff; font-family: var(--font-body);
  font-weight: 700; font-size: .9rem;
}
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.slot-hint { grid-column: 1 / -1; font-size: .9rem; }
.slot-card {
  border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; transition: all .2s; background: var(--paper);
}
.slot-card:hover { border-color: var(--copper); }
.slot-card.selected { border-color: var(--ember-deep); background: rgba(139,30,30,0.06); box-shadow: 0 0 0 3px rgba(139,30,30,0.1); }
.slot-card.full { opacity: 0.45; cursor: not-allowed; }
.slot-card.too-late { opacity: 0.5; cursor: not-allowed; }
.slot-card .slot-name { font-weight: 600; display: block; }
.slot-card .slot-meta { font-size: .82rem; color: var(--muted); }
.slot-card .slot-remain { font-size: .78rem; color: var(--copper); font-weight: 600; }

/* ---------- Phone input with +63 prefix ---------- */
.phone-input {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.phone-input:focus-within { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(139,30,30,0.1); }
.phone-prefix {
  display: flex; align-items: center; padding: 12px 14px;
  font-weight: 600; color: var(--ink-soft); background: var(--paper-warm);
  border-right: 1.5px solid var(--line-strong); font-size: 1rem;
}
.phone-input input {
  border: 0; border-radius: 0; flex: 1; background: transparent;
}

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice {
  display: flex; flex-direction: column; gap: 4px; padding: 16px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; background: var(--paper); transition: all .2s; position: relative;
}
.choice:hover { border-color: var(--copper); }
.choice.selected { border-color: var(--ember-deep); background: rgba(139,30,30,0.06); }
.choice input { position: absolute; opacity: 0; }
.choice.disabled { opacity: 0.45; cursor: not-allowed; }
.choice.disabled:hover { border-color: var(--line-strong); }
.choice-title { font-weight: 600; font-size: .98rem; }
.choice-desc { font-size: .82rem; }
.choice-meta { font-size: .8rem; color: var(--copper); font-weight: 600; margin-top: 4px; }

.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; background: var(--paper); }
.stepper input { width: 64px; text-align: center; border: 0; padding: 12px 0; }
.step-btn { width: 44px; height: 44px; border: 0; background: var(--paper-warm); font-size: 1.3rem; cursor: pointer; color: var(--ember-deep); font-weight: 700; }
.step-btn:hover { background: var(--ember-deep); color: #fff; }

.reserve-summary { position: sticky; top: 100px; }
.summary-title { font-size: 1.4rem; margin-bottom: 16px; }
.summary-list { margin: 0; }
.summary-list > div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-list dt { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.summary-list dd { margin: 0; font-weight: 600; text-align: right; }
.summary-note { font-size: .85rem; margin-top: 16px; }

.sticky { position: sticky; top: 100px; }

/* ---------- Alerts ---------- */
.alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .95rem; }
.alert-error { background: rgba(178,58,46,0.12); color: var(--danger); border: 1px solid rgba(178,58,46,0.3); }
.alert-success { background: rgba(107,142,78,0.12); color: var(--green); border: 1px solid rgba(107,142,78,0.3); }
.field-error { color: var(--danger); font-size: .9rem; margin-top: -8px; margin-bottom: 12px; }

/* ---------- Success page ---------- */
.success-section { padding: clamp(20px, 4vh, 50px) 0 clamp(20px, 4vh, 50px); background: var(--paper-warm); }
.success-card { max-width: 640px; margin: 0 auto; text-align: center; }
.success-check { width: 84px; height: 84px; margin: 0 auto 24px; color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(107,142,78,0.12); }
.success-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.code-box {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  margin: 28px 0; padding: 20px 40px; background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.code-label { font-size: .7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); }
.code-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: 0.1em; }
.success-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; text-align: left; margin: 24px 0; }
.success-details > div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.success-details dt { font-size: .78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.success-details dd { margin: 0; font-weight: 600; }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.notice-box {
  margin: 28px 0; padding: 24px 28px; text-align: left;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: var(--radius);
}
.notice-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ember-deep); margin: 0 0 12px; }
.notice-list { margin: 0; padding-left: 20px; color: var(--ink-soft); line-height: 1.6; }
.notice-list li { margin-bottom: 10px; }
.notice-list li:last-child { margin-bottom: 0; }
.notice-phone { color: var(--ember-deep); font-weight: 700; text-decoration: none; }
.notice-phone:hover { text-decoration: underline; }

/* ---------- Lookup page ---------- */
.lookup-section { padding: clamp(48px, 7vh, 80px) 0; background: var(--paper-warm); }
.lookup-form { max-width: 480px; margin: 0 auto; }
.booking-card { max-width: 640px; margin: 0 auto; }
.booking-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.booking-code { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--ember-deep); margin: 4px 0 0; }
.booking-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; margin: 0; }
.booking-details > div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.booking-details dt { font-size: .78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.booking-details dd { margin: 0; font-weight: 600; }

/* status badges */
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.status-pending { background: rgba(200,149,74,0.18); color: #9A6A22; }
.status-confirmed { background: rgba(107,142,78,0.18); color: var(--green); }
.status-arrived { background: rgba(90,107,140,0.18); color: #3F506E; }
.status-no_show { background: rgba(178,58,46,0.18); color: var(--danger); }
.status-cancelled { background: rgba(138,123,108,0.2); color: var(--muted); }

/* ---------- Error page ---------- */
.error-section { padding: clamp(80px, 16vh, 160px) 0; background: var(--paper-warm); text-align: center; }
.error-card { max-width: 560px; margin: 0 auto; }
.error-code { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; color: var(--ember); line-height: 1; }
.error-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .hours-grid, .reserve-grid { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 calc(100% / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reserve-summary { position: static; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 8px;
  }
  .site-nav.open a { width: 100%; }
  .choice-grid { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 100%; padding: 0; }
  .gallery-nav { width: 38px; height: 38px; font-size: 1.5rem; }
  .slot-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .success-details, .booking-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .btn-block { width: 100%; }
}
