/* Bhandari Chowk View Point
   Locked dark theme. Off-black + warm tan accent. Cormorant Garamond display, Karla body.
   Radius rule: buttons and tags are pills, images and cards are 4px. */

:root {
  --bg: #101113;
  --bg-2: #15171a;
  --surface: #1b1d21;
  --ink: #eeede8;
  --ink-2: #b9b7b0;
  --muted: #7f7d76;
  --line: #2a2c31;
  --accent: #d8a86b;
  --accent-2: #e8c08a;
  --on-accent: #141311;
  --radius: 4px;
  --nav-h: 76px;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--on-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: 1.6rem; }
h1 em, h2 em { font-style: italic; color: var(--accent); }
p { margin: 0 0 1em; color: var(--ink-2); max-width: 60ch; }
.lead { font-size: 1.2rem; }
.wrap { width: min(1240px, 100% - 3rem); margin-inline: auto; }
section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.section-tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section-alt { background: var(--bg-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-height: 48px; padding: 0.8rem 1.5rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-2); }
.btn-outline { border-color: rgba(238, 237, 232, 0.45); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn-lg { min-height: 56px; padding: 1rem 1.9rem; font-size: 1rem; }
.btn i { font-size: 1.25em; }

/* Nav: fixed and transparent over page heads, solid after scroll */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s, border-color 0.35s, height 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(16, 17, 19, 0.88); backdrop-filter: blur(12px); border-bottom-color: var(--line); height: 64px; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1; letter-spacing: 0; }
.brand-mark { width: 38px; height: 38px; border-radius: 999px; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; color: var(--ink-2); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.3rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--ink-2); font-size: 0.95rem; padding: 0.3rem 0; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; min-height: 44px; padding: 0.6rem 1.25rem; }
.nav-toggle { display: none; background: none; border: 1.5px solid rgba(238,237,232,0.3); border-radius: 999px; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--ink); cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 0 0 auto 0; padding: calc(var(--nav-h) + 0.5rem) 1.5rem 1.5rem; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.35s var(--ease-out); z-index: -1; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--ink); }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--accent); }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.solid { height: var(--nav-h); }
}

/* Hero */
.hero {
  position: relative; min-height: 100dvh; display: grid; align-items: end;
  padding: 0; color: #fff; isolation: isolate; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transform-origin: 55% 45%; will-change: transform; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(16,17,19,0.96) 0%, rgba(16,17,19,0.55) 40%, rgba(16,17,19,0.15) 75%, rgba(16,17,19,0.35) 100%); }
.hero-inner { padding-block: clamp(3rem, 7vw, 5.5rem); max-width: 760px; }
.hero h1 { color: var(--ink); margin-bottom: 0.35em; }
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; }
.hero h1 .w > span { display: inline-block; }
.hero p { color: var(--ink-2); font-size: 1.2rem; max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
@media (max-width: 900px) { .hero-inner { padding-bottom: 7.5rem; } }

/* Inner page heads */
.page-head { position: relative; min-height: 62dvh; display: grid; align-items: end; isolation: isolate; padding: 0; overflow: hidden; }
.page-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.06); }
.page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(16,17,19,0.98) 0%, rgba(16,17,19,0.78) 45%, rgba(16,17,19,0.45) 100%); }
.page-head .wrap { padding-block: 3rem; }
.page-head h1 { margin-bottom: 0.25em; font-size: clamp(2.8rem, 7vw, 5.5rem); }
.page-head p { font-size: 1.15rem; max-width: 50ch; }

/* Info strip */
.info-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.info-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.info-item { display: flex; align-items: center; gap: 0.9rem; padding: 1.25rem 1.5rem 1.25rem 0; font-size: 0.95rem; color: var(--ink-2); border-right: 1px solid var(--line); }
.info-item + .info-item { padding-left: 1.5rem; }
.info-item:last-child { border-right: 0; }
.info-item i { font-size: 1.5rem; color: var(--accent); flex: none; }
.info-item strong { display: block; color: var(--ink); font-weight: 600; font-size: 1rem; }
.info-item a { color: inherit; text-decoration: none; }
.info-item a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .info-strip .wrap { grid-template-columns: 1fr; }
  .info-item, .info-item + .info-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .info-item:last-child { border-bottom: 0; }
}

/* Section header */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 60ch; }
.section-head h2 { margin-bottom: 0.3em; }
.section-head p { margin: 0; font-size: 1.1rem; }
.section-head.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; }
.section-head.row > div { max-width: 60ch; }
.section-head.row .btn { flex: none; }
@media (max-width: 640px) { .section-head.row { flex-direction: column; align-items: flex-start; } }

/* Dishes: horizontal pan on desktop, native scroll-snap on touch */
.pan { position: relative; padding: 0; overflow: hidden; }
.pan-head { padding-top: clamp(3rem, 6vw, 5rem); }
.pan-track { display: flex; gap: 1.25rem; padding: 0 max(1.5rem, calc((100vw - 1240px) / 2)) 2.5rem; width: max-content; }
.dish { position: relative; width: clamp(280px, 26vw, 360px); flex: none; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.dish-img { overflow: hidden; border-radius: var(--radius); height: clamp(220px, 100vh - 470px, 460px); }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.dish:hover .dish-img img { transform: scale(1.05); }
.dish-body { padding: 1.1rem 0 0; display: grid; grid-template-columns: 1fr auto; gap: 0.25rem 1rem; align-items: baseline; }
.dish-body h3 { margin: 0; font-size: 1.55rem; }
.dish-body p { margin: 0; font-size: 0.95rem; grid-column: 1 / -1; }
.dish-price { font-weight: 700; color: var(--accent); white-space: nowrap; font-size: 0.95rem; }
.dish-feature { width: clamp(340px, 34vw, 480px); }
.dish-feature .dish-img { height: clamp(220px, 100vh - 470px, 460px); }
.dish-end { flex: none; width: clamp(240px, 22vw, 320px); display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .pan-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-inline: 1.5rem; }
  .pan-track::-webkit-scrollbar { display: none; }
  .dish { scroll-snap-align: start; width: min(78vw, 320px); }
  .dish-feature { width: min(78vw, 320px); }
  .dish-feature .dish-img { aspect-ratio: 4 / 5; }
  .dish-end { width: min(60vw, 240px); scroll-snap-align: start; }
}

/* Banner with parallax */
.banner { position: relative; min-height: 88vh; display: grid; align-items: end; color: #fff; isolation: isolate; padding: 0; overflow: hidden; }
.banner-img { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.banner-img img { width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(16,17,19,0.95) 0%, rgba(16,17,19,0.35) 55%, rgba(16,17,19,0.15) 100%); }
.banner .wrap { padding-block: 4.5rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: end; }
.banner h2 { margin-bottom: 0.3em; }
.banner p { color: var(--ink-2); font-size: 1.1rem; }
.banner-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 2rem; justify-content: start; border-top: 1px solid rgba(238,237,232,0.2); padding-top: 1.5rem; }
.banner-facts strong { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 500; line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; }
.banner-facts span { font-size: 0.9rem; color: var(--ink-2); }
@media (max-width: 800px) { .banner .wrap { grid-template-columns: 1fr; gap: 2rem; } .banner-facts { gap: 1.5rem; } }

/* Specials */
.specials { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.specials-list { display: grid; border-top: 1px solid var(--line); }
.special { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.special h3 { margin: 0; font-size: 1.6rem; }
.special p { margin: 0; font-size: 0.95rem; grid-column: 1 / -1; }
.special .price { font-weight: 700; color: var(--accent); white-space: nowrap; }
.specials-empty { padding: 2rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }
@media (max-width: 800px) { .specials { grid-template-columns: 1fr; gap: 2rem; } }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-img { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } .split-img { aspect-ratio: 4 / 3; } }

/* Visit */
.visit-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; }
.map { border-radius: var(--radius); overflow: hidden; background: var(--surface); min-height: 380px; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.4) contrast(1.05); }
.hours { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.hours h3 { margin-bottom: 0.75rem; }
.hours table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.hours .today td { color: var(--accent); font-weight: 700; }
.hours-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { border-top: 1px solid var(--line); color: var(--ink-2); padding: 4rem 0 6rem; }
.footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 { color: var(--ink); font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.97rem; }
.footer p { color: inherit; font-size: 0.97rem; }
.footer .brand { color: var(--ink); }
.social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social a { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.2rem; transition: border-color 0.2s, color 0.2s; }
.social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.85rem; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; grid-column: 1 / -1; }
@media (max-width: 860px) { .footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer .wrap { grid-template-columns: 1fr; } }

/* Mobile action bar */
.action-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; display: none; grid-template-columns: repeat(3, 1fr); background: rgba(16,17,19,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
.action-bar a { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; min-height: 60px; padding: 0.6rem 0 0.5rem; text-decoration: none; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); }
.action-bar a i { font-size: 1.5rem; color: var(--accent); }
.action-bar a:active { background: var(--surface); }
@media (max-width: 900px) { .action-bar { display: grid; } body { padding-bottom: 64px; } }

/* Menu page */
.menu-tabs { display: flex; gap: 0.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.85rem 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; position: sticky; top: 64px; background: var(--bg); z-index: 5; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: none; scroll-snap-align: start; min-height: 44px; display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); color: var(--ink-2); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.menu-tabs a:hover { border-color: var(--ink-2); color: var(--ink); }
.menu-tabs a.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
@media (max-width: 900px) { .menu-tabs { top: var(--nav-h); } }
.menu-section { padding-block: 2rem 3rem; scroll-margin-top: 150px; }
.menu-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; }
.menu-section h2 span { font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; color: var(--muted); letter-spacing: 0; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.menu-item h3 { margin: 0; font-size: 1.35rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-item p { margin: 0; font-size: 0.92rem; grid-column: 1 / -1; }
.menu-item .price { font-weight: 700; white-space: nowrap; color: var(--ink); font-variant-numeric: tabular-nums; }
.tag { display: inline-flex; align-items: center; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 999px; line-height: 1.3; }
.tag-veg { border: 1px solid #6fa37a; color: #9fd4aa; }
.tag-spicy { border: 1px solid #c8764a; color: #f0a37a; }
.menu-note { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.menu-note i { font-size: 1.5rem; color: var(--accent); flex: none; }
.menu-note p { margin: 0; font-size: 0.95rem; }
@media (max-width: 760px) { .menu-items { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.gallery-filters button { min-height: 44px; padding: 0.5rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; color: var(--ink-2); font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.gallery-filters button:hover { border-color: var(--ink-2); color: var(--ink); }
.gallery-filters button.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.masonry { columns: 3; column-gap: 1.25rem; }
.masonry figure { break-inside: avoid; margin: 0 0 1.25rem; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--surface); position: relative; }
.masonry img { width: 100%; transition: transform 0.9s var(--ease-out); }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1rem 0.9rem; background: linear-gradient(to top, rgba(16,17,19,0.85), transparent); color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; opacity: 0; transition: opacity 0.3s; }
.masonry figure:hover figcaption { opacity: 1; }
.masonry figure.hide { display: none; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 540px) { .masonry { columns: 1; } .masonry figcaption { opacity: 1; } }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8, 9, 10, 0.94); display: none; align-items: center; justify-content: center; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: var(--radius); object-fit: contain; }
.lightbox.open img { animation: lb-in 0.35s var(--ease-out) both; }
@keyframes lb-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.lightbox button { position: absolute; background: rgba(238,237,232,0.1); color: var(--ink); border: 0; width: 48px; height: 48px; border-radius: 999px; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background 0.2s; }
.lightbox button:hover { background: rgba(238,237,232,0.22); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: var(--ink-2); font-family: var(--font-display); font-size: 1.15rem; text-align: center; }

/* Events */
.event-feature { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); margin-bottom: 1.5rem; }
.event-feature img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.event-feature-body { padding: clamp(1.75rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.event-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.event-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.event-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.event-card-body { padding: 1.75rem; }
.event-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; display: grid; gap: 0.55rem; }
.event-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink-2); font-size: 0.97rem; }
.event-list li i { color: var(--accent); font-size: 1.15rem; flex: none; margin-top: 0.2rem; }
@media (max-width: 800px) { .event-feature, .event-pair { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { padding: 2rem 2rem 2rem 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 2rem; }
.step:last-child { border-right: 0; }
.step i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.step h3 { font-size: 1.5rem; }
.step p { margin: 0; font-size: 0.95rem; }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-list { display: grid; gap: 0.75rem; }
.contact-card { display: flex; gap: 1.1rem; align-items: center; min-height: 84px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 1.25rem 1.5rem; text-decoration: none; transition: border-color 0.25s, transform 0.3s var(--ease-out); }
.contact-card:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-card i { font-size: 1.8rem; color: var(--accent); flex: none; }
.contact-card strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.contact-card span { color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Reveal states. JS animates these; without JS or with reduced motion they stay visible. */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out); }
.js .reveal-group > * { opacity: 0; transform: translateY(24px); }
.js .reveal-group.in > * { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: calc(var(--i, 0) * 70ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .hero-media img, .page-head img { transform: none; }
  .lightbox.open img { animation: none; }
  .dish-img img, .masonry img, .btn, .contact-card { transition: none; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
