/* ==========================================================================
   SourAji — main stylesheet
   Ported 1:1 from the original Next.js/Tailwind build's design tokens.
   Organised: variables → reset → type → layout → components → utilities → responsive
   ========================================================================== */

/* ---- Design tokens (same OKLCH values as the Next.js globals.css) ---- */
:root {
  color-scheme: light;

  --background: oklch(0.972 0.008 78);
  --foreground: oklch(0.235 0.012 60);

  --card: oklch(0.988 0.005 80);
  --card-foreground: oklch(0.235 0.012 60);

  --primary: oklch(0.235 0.012 60);
  --primary-foreground: oklch(0.978 0.008 80);

  --secondary: oklch(0.928 0.011 78);
  --secondary-foreground: oklch(0.235 0.012 60);

  --muted: oklch(0.928 0.011 78);
  --muted-foreground: oklch(0.49 0.014 62);

  --accent: oklch(0.585 0.135 38);
  --accent-foreground: oklch(0.985 0.008 80);

  --border: oklch(0.878 0.012 76);

  --radius: 0.25rem;

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', ui-serif, Georgia, 'Times New Roman', serif;

  --container: 80rem; /* 1280px, = Tailwind's max-w-7xl */
}

/* Fallback flat colors for the rare browser without OKLCH support */
@supports not (color: oklch(0 0 0)) {
  :root {
    --background: #f7f4ee;
    --foreground: #2b2723;
    --card: #fbf9f5;
    --primary: #2b2723;
    --primary-foreground: #faf7f1;
    --secondary: #ece7dd;
    --secondary-foreground: #2b2723;
    --muted: #ece7dd;
    --muted-foreground: #726b62;
    --accent: #b5502c;
    --accent-foreground: #fbf6ee;
    --border: #ddd6c9;
  }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100dvh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
svg.icon, .icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
table { border-collapse: collapse; }
::selection { background: var(--accent); color: var(--accent-foreground); }

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

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); letter-spacing: -0.02em; line-height: 1.1; font-weight: 600; }
.text-hairline { letter-spacing: 0.18em; text-transform: uppercase; }

.eyebrow { font-size: 0.7rem; color: var(--accent); }
.h1 { font-size: 2.6rem; line-height: 1.02; }
.h2 { font-size: 1.9rem; }
.h3 { font-size: 1.35rem; }
.lede { font-size: 1rem; line-height: 1.65; color: var(--muted-foreground); }

@media (min-width: 640px) {
  .h1 { font-size: 3.2rem; }
  .h2 { font-size: 2.2rem; }
}
@media (min-width: 1024px) {
  .h1 { font-size: 4.1rem; }
  .h2 { font-size: 2.9rem; }
  .lede { font-size: 1.125rem; }
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { border-bottom: 1px solid var(--border); padding-block: 4rem; }
.section--tight { padding-block: 3.5rem; }
.section--muted { background: color-mix(in oklab, var(--secondary) 40%, transparent); }
.section--dark { background: var(--primary); color: var(--primary-foreground); border-color: transparent; }
@media (min-width: 1024px) { .section { padding-block: 6rem; } .section--tight { padding-block: 5rem; } }

.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-3 { gap: 0.75rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.9rem 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s, background-color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { opacity: 0.85; }
.btn--accent { background: var(--accent); color: var(--accent-foreground); }
.btn--accent:hover { opacity: 0.9; }
.btn--outline { border-color: var(--border); color: var(--foreground); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 0.65rem 1.1rem; }

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  color: var(--accent);
  font-size: 0.7rem;
}

/* ---- Top announcement bar (phone + address, above header) ---- */
.top-bar { background: var(--primary); color: color-mix(in oklab, var(--primary-foreground) 85%, transparent); font-size: 0.72rem; }
.top-bar__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem; padding-block: 0.5rem; }
.top-bar a { display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.top-bar a:hover { color: var(--primary-foreground); }
.top-bar span { display: inline-flex; align-items: center; gap: 0.4rem; }
.top-bar .icon { width: 0.8rem; height: 0.8rem; }
.top-bar__sep { opacity: 0.5; }
@media (max-width: 640px) { .top-bar span:not(.top-bar__sep):nth-child(4), .top-bar__sep:nth-child(3) { display: none; } }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--background) 90%, transparent);
  backdrop-filter: blur(10px);
  border-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
@media (min-width: 768px) { .site-header__inner { height: 5rem; } }

.site-logo { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: -0.01em; }
@media (min-width: 768px) { .site-logo { font-size: 1.5rem; } }

.site-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.2s;
  padding-block: 0.25rem;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-book { display: none; }
@media (min-width: 640px) { .header-book { display: inline-flex; } }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
}
.menu-toggle:hover { background: var(--secondary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--background);
  display: none;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
}
.mobile-nav__close:hover { background: var(--secondary); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.mobile-nav__list a {
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  padding-block: 1rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.mobile-nav__cta { margin-top: 1.5rem; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] { color: var(--foreground); }

/* ---- Page hero ---- */
.page-hero__top { padding-block: 2.5rem 3.5rem; }
@media (min-width: 1024px) { .page-hero__top { padding-block: 3.5rem 5rem; } }
.page-hero__grid { display: grid; gap: 2.5rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .page-hero__grid { grid-template-columns: repeat(12, 1fr); align-items: end; gap: 3rem; } }
.page-hero__copy { grid-column: span 12; }
@media (min-width: 1024px) { .page-hero__copy { grid-column: span 7; } }
.page-hero__media { grid-column: span 12; }
@media (min-width: 1024px) { .page-hero__media { grid-column: span 5; } }
.page-hero h1 { font-size: 2.4rem; margin-top: 1rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.6rem; } }

.hero-full--inner { min-height: 52vh; }
.hero-full--inner .hero-full__content { padding-block: 7rem 3.5rem; }
.breadcrumbs--on-dark { color: color-mix(in oklab, var(--primary-foreground) 65%, transparent); }
.breadcrumbs--on-dark a:hover { color: var(--primary-foreground); }
.breadcrumbs--on-dark [aria-current] { color: var(--primary-foreground); }


.media { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius); background: var(--secondary); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ar-4-3 { aspect-ratio: 4 / 3; }
.ar-3-4 { aspect-ratio: 3 / 4; }
.ar-3-2 { aspect-ratio: 3 / 2; }
.ar-16-10 { aspect-ratio: 16 / 10; }
.ar-square { aspect-ratio: 1 / 1; }
.ar-4-5 { aspect-ratio: 4 / 5; }

/* ---- Hero (home) ---- */
.hero__grid { display: grid; gap: 3rem; padding-block: 3.5rem 4rem; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: repeat(12, 1fr); gap: 2.5rem; padding-block: 5rem 6rem; } }
.hero__copy { grid-column: span 12; }
@media (min-width: 1024px) { .hero__copy { grid-column: span 6; padding-top: 1.5rem; } }
.hero__media { grid-column: span 12; }
@media (min-width: 1024px) { .hero__media { grid-column: span 6; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats dt { order: 2; font-size: 0.65rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.stats dd { order: 1; font-family: var(--font-serif); font-size: 1.9rem; line-height: 1; }

.hero-collage { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .hero-collage { gap: 1rem; } }
.hero-collage > div { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--secondary); }
.hero-collage > div img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hc-1 { grid-column: span 3; grid-row: span 3; }
.hc-2 { grid-column: span 2; grid-row: span 2; }
.hc-3 { grid-column: span 2; grid-row: span 3; }
.hc-4 { grid-column: span 3; grid-row: span 2; }

/* ---- Card grids (border-collapse technique) ---- */
.card-grid { display: grid; gap: 1px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--border); }
.card-grid > * { background: var(--card); padding: 1.75rem; }
@media (min-width: 1024px) { .card-grid > * { padding: 2.25rem; } }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid.cols-2md { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-3lg { grid-template-columns: repeat(3, 1fr); } }

.card-grid .icon { width: 1.25rem; height: 1.25rem; color: var(--accent); margin-bottom: 0.25rem; }
.card-grid h3 { font-size: 1.25rem; margin-top: 0.5rem; }
.card-grid p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }
.card-grid .step-num { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1; color: var(--accent); }

.callout {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  padding: 1.75rem;
}
@media (min-width: 1024px) { .callout { padding: 2.25rem; } }
.callout h3 { font-size: 1.25rem; }
.callout p { margin-top: 0.75rem; max-width: 36rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }

.badge {
  display: inline-flex; align-items: center; border-radius: 999px;
  padding: 0.2rem 0.6rem; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
}
.menu-col-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; }
.menu-col-head .count { font-size: 0.7rem; color: var(--muted-foreground); }
.menu-item-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-block: 1.1rem; border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent); }
.menu-item-row:last-child { border-bottom: 0; }
.menu-item-row h4 { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-item-row p { margin-top: 0.3rem; font-size: 0.85rem; line-height: 1.55; color: var(--muted-foreground); }


.section-head { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-head h2 { margin-top: 1rem; }
.section-head p.lede { margin-top: 1rem; }

/* ---- Numbered / bordered lists (menu, class curriculum) ---- */
.list-rows { display: flex; flex-direction: column; }
.list-rows > li { border-bottom: 1px solid var(--border); padding-block: 1.5rem; display: flex; gap: 1.25rem; }
.list-rows > li:first-child { padding-top: 0; }
.list-index { flex-shrink: 0; padding-top: 0.25rem; font-family: monospace; font-size: 0.75rem; color: var(--muted-foreground); }
.list-rows h3, .list-rows h4 { font-size: 1.1rem; }
.list-rows .jp { font-size: 0.85rem; color: color-mix(in oklab, var(--muted-foreground) 80%, transparent); margin-left: 0.5rem; font-weight: 400; }
.list-rows p { margin-top: 0.4rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }
.list-rows .check { flex-shrink: 0; width: 1rem; height: 1rem; color: var(--accent); margin-top: 0.35rem; }

.two-col-list { columns: 1; }
@media (min-width: 768px) { .two-col-list.md-2 { columns: 2; column-gap: 3rem; } }
@media (min-width: 1024px) { .two-col-list.lg-3 { columns: 3; } }
.two-col-list li { break-inside: avoid; }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.chip { border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); padding: 0.6rem 1rem; font-size: 0.875rem; }

.group-heading { border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; font-size: 0.7rem; }

/* ---- Definition rows (locations, reservations, details) ---- */
.dl-rows dt { display: flex; gap: 0.75rem; align-items: flex-start; flex-shrink: 0; }
.dl-rows .row { display: flex; gap: 1.25rem; border-top: 1px solid var(--border); padding-block: 1.5rem; }
.dl-rows .row:first-child { border-top: 0; }
.dl-rows dt .icon { width: 1rem; height: 1rem; color: var(--muted-foreground); margin-top: 0.15rem; flex-shrink: 0; }
.dl-rows dt span { font-size: 0.7rem; }
.dl-rows dd { font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; gap: 1rem; grid-auto-rows: auto; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.gallery-grid .span-wide { grid-column: span 1; }
@media (min-width: 640px) { .gallery-grid .span-wide { grid-column: span 2; } }
.gallery-grid .span-tall { grid-row: span 1; }
@media (min-width: 640px) { .gallery-grid .span-tall { grid-row: span 2; } }
.gallery-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.gallery-item .media { flex-shrink: 0; }
.gallery-item img { transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 1rem 1.25rem; font-size: 0.7rem; color: var(--muted-foreground); }

.gallery-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery-strip li { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--secondary); }
@media (min-width: 640px) { .gallery-strip li { aspect-ratio: 1 / 1; } }
.gallery-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-strip li:hover img { transform: scale(1.05); }

/* ---- Hero (home) — full-bleed image, dark overlay, content on top ---- */
.hero-full { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-full__bg { position: absolute; inset: 0; z-index: 0; }
.hero-full__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-full__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 15%, transparent) 0%, color-mix(in oklab, var(--primary) 35%, transparent) 55%, color-mix(in oklab, var(--primary) 88%, transparent) 100%);
}
.hero-full__content { position: relative; z-index: 2; width: 100%; color: var(--primary-foreground); padding-block: 6rem 3rem; }
.hero-full .eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid color-mix(in oklab, var(--primary-foreground) 35%, transparent);
  background: color-mix(in oklab, var(--primary-foreground) 10%, transparent);
  border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-full h1 { color: var(--primary-foreground); font-size: 2.6rem; margin-top: 1.25rem; max-width: 40rem; }
@media (min-width: 640px) { .hero-full h1 { font-size: 3.6rem; } }
@media (min-width: 1024px) { .hero-full h1 { font-size: 4.6rem; } }
.hero-full p.lede { color: color-mix(in oklab, var(--primary-foreground) 88%, transparent); max-width: 34rem; margin-top: 1.25rem; }
.hero-full__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-full .btn--ghost {
  border: 1px solid color-mix(in oklab, var(--primary-foreground) 45%, transparent);
  color: var(--primary-foreground);
  background: transparent;
}
.hero-full .btn--ghost:hover { border-color: var(--primary-foreground); background: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }

/* Quick-fact badge strip directly under the hero image */
.fact-strip { border-bottom: 1px solid var(--border); background: var(--card); }
.fact-strip__row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: center;
  padding-block: 1.5rem; text-align: center;
}
.fact-strip__item { display: flex; align-items: baseline; gap: 0.5rem; font-size: 0.85rem; color: var(--muted-foreground); }
.fact-strip__item strong { font-family: var(--font-serif); font-size: 1.15rem; color: var(--foreground); font-weight: 600; }
.fact-strip .icon { width: 1rem; height: 1rem; color: var(--accent); }

/* ---- Marquee ticker (infinite scroll, pure CSS) ---- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--border); background: var(--primary); padding-block: 1rem; }
.marquee__track { display: flex; width: max-content; animation: souraji-marquee 32s linear infinite; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding-inline: 1.5rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-foreground); white-space: nowrap;
}
.marquee__track span::after { content: '\2022'; margin-left: 1.5rem; color: var(--accent); }
@keyframes souraji-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Signature dish cards (image-forward, like diversionpizza's "signature plates") ---- */
.signature-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 640px) { .signature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .signature-grid { grid-template-columns: repeat(4, 1fr); } }
.signature-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; }
.signature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.signature-card:hover img { transform: scale(1.06); }
.signature-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, color-mix(in oklab, var(--primary) 92%, transparent) 100%); }
.signature-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; color: var(--primary-foreground); }
.signature-card__tag { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in oklab, var(--accent) 70%, var(--primary-foreground) 30%); }
.signature-card__body h3 { color: var(--primary-foreground); font-size: 1.25rem; margin-top: 0.4rem; }
.signature-card__body p { margin-top: 0.4rem; font-size: 0.8rem; line-height: 1.5; color: color-mix(in oklab, var(--primary-foreground) 85%, transparent); }

/* ---- Story + stat rail (image, narrative, running stat numbers) ---- */
.story-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.stat-rail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
@media (min-width: 640px) { .stat-rail { grid-template-columns: repeat(4, 1fr); } }
.stat-rail dd { font-family: var(--font-serif); font-size: 2rem; }
.stat-rail dt { margin-top: 0.35rem; font-size: 0.7rem; color: var(--muted-foreground); }

/* ---- Map embed (hours & location) ---- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }


.locations-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
.location-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); }
.location-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 1024px) { .location-card__body { padding: 2.25rem; } }
.location-card h3 { font-size: 1.5rem; margin-top: 0.75rem; }
.location-card > .location-card__body > p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }
.location-card .dl-rows { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 0.9rem; }
.location-card__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; padding-top: 0.5rem; }

/* ---- FAQ accordion ---- */
.faq-grid { display: grid; gap: 2.5rem; margin-top: 0; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.faq-grid__intro { grid-column: span 12; }
@media (min-width: 1024px) { .faq-grid__intro { grid-column: span 4; } }
.faq-grid__list { grid-column: span 12; margin-top: 2rem; }
@media (min-width: 1024px) { .faq-grid__list { grid-column: span 8; margin-top: 0; } }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 1rem; height: 1rem; color: var(--muted-foreground); transition: transform 0.2s; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-answer { padding-bottom: 1.25rem; max-width: 42rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }

/* ---- Reserve CTA (dark, full-width) ---- */
.reserve-cta { position: relative; isolation: isolate; overflow: hidden; }
.reserve-cta__bg { position: absolute; inset: 0; z-index: -1; opacity: 0.2; }
.reserve-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve-cta h2 { font-size: 2rem; margin-top: 1rem; }
@media (min-width: 640px) { .reserve-cta h2 { font-size: 2.4rem; } }
@media (min-width: 1024px) { .reserve-cta h2 { font-size: 2.9rem; } }
.reserve-cta p { margin-top: 1.25rem; color: color-mix(in oklab, var(--primary-foreground) 80%, transparent); }
.reserve-cta__grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .reserve-cta__grid { grid-template-columns: repeat(2, 1fr); } }
.reserve-cta__link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklab, var(--primary-foreground) 25%, transparent);
  background: color-mix(in oklab, var(--primary-foreground) 5%, transparent);
  padding: 1.5rem;
  transition: border-color 0.2s, background-color 0.2s;
}
.reserve-cta__link:hover { border-color: color-mix(in oklab, var(--primary-foreground) 60%, transparent); background: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }
.reserve-cta__link strong { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; display: block; }
.reserve-cta__link span.addr { font-size: 0.75rem; color: color-mix(in oklab, var(--primary-foreground) 70%, transparent); }

/* ---- Pricing summary (dark band on Menu page) ---- */
.pricing-band { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .pricing-band { grid-template-columns: repeat(12, 1fr); align-items: center; gap: 3rem; } }
.pricing-band__copy { grid-column: span 12; }
@media (min-width: 1024px) { .pricing-band__copy { grid-column: span 6; } }
.pricing-band__facts { grid-column: span 12; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .pricing-band__facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-band__facts { grid-column: span 6; } }
.pricing-band dt { font-size: 0.65rem; color: color-mix(in oklab, var(--primary-foreground) 60%, transparent); }
.pricing-band dd { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.65; color: color-mix(in oklab, var(--primary-foreground) 90%, transparent); }

/* ---- Contact / reservation form ---- */
.form-field { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.form-field label { font-size: 0.7rem; }
.form-field input, .form-field textarea {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.topic-choices { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.topic-choices label {
  cursor: pointer; border: 1px solid var(--border); background: var(--card);
  border-radius: var(--radius); padding: 0.65rem 1rem; font-size: 0.875rem; transition: border-color 0.2s, background-color 0.2s;
}
.topic-choices input { position: absolute; opacity: 0; pointer-events: none; }
.topic-choices input:checked + span,
.topic-choices label:has(input:checked) { border-color: var(--accent); background: var(--accent); color: var(--accent-foreground); }
.form-note { font-size: 0.75rem; color: var(--muted-foreground); max-width: 24rem; }

/* ---- Footer ---- */
.site-footer { background: color-mix(in oklab, var(--secondary) 50%, transparent); border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 3rem; padding-block: 3.5rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; padding-block: 5rem; } }
.footer-brand { grid-column: span 12; }
@media (min-width: 1024px) { .footer-brand { grid-column: span 4; } }
.footer-brand .site-logo { display: inline-block; }
.footer-brand p { margin-top: 1rem; max-width: 20rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }
.footer-social { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--background);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-nav { grid-column: span 6; }
@media (min-width: 1024px) { .footer-nav { grid-column: span 2; } }
.footer-nav h2, .footer-loc h2 { font-size: 0.7rem; color: var(--muted-foreground); }
.footer-nav ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 0.9rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }

.footer-loc { grid-column: span 12; }
@media (min-width: 640px) { .footer-loc { grid-column: span 6; } }
@media (min-width: 1024px) { .footer-loc { grid-column: span 3; } }
.footer-loc address { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; line-height: 1.6; font-style: normal; }
.footer-loc address .muted { color: var(--muted-foreground); }
.footer-loc a:hover { color: var(--accent); }
.footer-loc dl { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.footer-loc dt { font-size: 0.75rem; color: var(--muted-foreground); }
.footer-loc .link-accent { margin-top: 1rem; }

.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  border-top: 1px solid var(--border);
  padding-block: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---- Utilities ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.muted { color: var(--muted-foreground); }
.text-sm { font-size: 0.9rem; line-height: 1.65; }
.center { margin-inline: auto; }

.animate-rise { animation: souraji-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes souraji-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---- 404 / basic blog fallback ---- */
.not-found { text-align: center; padding-block: 6rem; }
.post-list article { border-bottom: 1px solid var(--border); padding-block: 2.5rem; }
.post-list article:first-child { padding-top: 0; }
.post-list h2 { font-size: 1.5rem; }
.post-list .meta { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.post-list .excerpt { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted-foreground); }
