/* ============================================================
   Astarry Cafe — stylesheet
   Palette sampled from the real signboard, logo card and
   interior: camel, cream, espresso, light oak.
   ============================================================ */

:root {
  --camel:        #b0895e;
  --camel-dark:   #97714a;
  --camel-soft:   #d9bf9d;
  --cream:        #f7f1e6;
  --cream-deep:   #efe4d2;
  --oak:          #e8d9c3;
  --espresso:     #3a2a1e;
  --espresso-mid: #5c4634;
  --ink:          #2b2119;
  --muted:        #8a7864;
  --white:        #fffdf9;
  --green:        #3f7d52;
  --red:          #b1453a;
  --star:         #e8a33d;

  --shadow-sm: 0 1px 2px rgba(58, 42, 30, .06), 0 2px 8px rgba(58, 42, 30, .05);
  --shadow-md: 0 4px 12px rgba(58, 42, 30, .08), 0 12px 32px rgba(58, 42, 30, .07);
  --shadow-lg: 0 12px 32px rgba(58, 42, 30, .12), 0 32px 64px rgba(58, 42, 30, .1);

  --radius:    14px;
  --radius-lg: 22px;
  --nav-h:     68px;

  --serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -.015em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--camel); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tint { background: var(--white); }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--camel-dark); margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--camel-soft); }
.section-head--center .eyebrow::after { content: ''; width: 26px; height: 1.5px; background: var(--camel-soft); }
.section-title { font-size: clamp(1.85rem, 4vw, 2.75rem); color: var(--espresso); }
.section-sub { margin-top: .9rem; color: var(--muted); font-size: 1.03rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem; border-radius: 100px;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--espresso); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ink); box-shadow: var(--shadow-md); }
.btn--accent  { background: var(--camel); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--camel-dark); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--espresso);
  box-shadow: inset 0 0 0 1.5px rgba(58, 42, 30, .2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--espresso); background: rgba(58, 42, 30, .04); }
.btn--light { background: rgba(255, 253, 249, .16); color: #fff; backdrop-filter: blur(8px); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); }
.btn--light:hover { background: rgba(255, 253, 249, .26); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------- status pill ---------- */
.status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .34rem .8rem .34rem .62rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
}
.status__dot { width: 7px; height: 7px; border-radius: 50%; flex: none; position: relative; }
.status--open  { background: rgba(63, 125, 82, .12); color: var(--green); }
.status--open  .status__dot { background: var(--green); }
.status--open  .status__dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--green); opacity: .35; animation: pulse 2.2s ease-out infinite;
}
.status--closed { background: rgba(177, 69, 58, .1); color: var(--red); }
.status--closed .status__dot { background: var(--red); }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav--solid {
  background: rgba(247, 241, 230, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(58, 42, 30, .08);
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__mark circle, .brand__mark path { transition: stroke .3s ease; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--espresso); letter-spacing: -.01em; }
.brand__sub { font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); }
.nav:not(.nav--solid) .brand__name { color: #fff; }
.nav:not(.nav--solid) .brand__sub  { color: rgba(255, 255, 255, .72); }
.nav:not(.nav--solid) .brand__mark circle,
.nav:not(.nav--solid) .brand__mark path { stroke: #fff; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { font-size: .9rem; font-weight: 500; color: var(--espresso-mid); position: relative; padding: .25rem 0; transition: color .2s ease; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .28s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--espresso); font-weight: 600; }
.nav:not(.nav--solid) .nav__link { color: rgba(255, 255, 255, .88); }
.nav:not(.nav--solid) .nav__link.is-active { color: #fff; }

.nav__side { display: flex; align-items: center; gap: .85rem; }
.nav:not(.nav--solid) .nav__side .status { background: rgba(255, 255, 255, .17); color: #fff; backdrop-filter: blur(8px); }
.nav:not(.nav--solid) .nav__side .status--open .status__dot { background: #7ee2a0; }
.nav:not(.nav--solid) .nav__side .status--open .status__dot::after { background: #7ee2a0; }
.nav:not(.nav--solid) .nav__side .status--closed .status__dot { background: #ff9d94; }
.nav:not(.nav--solid) .nav__cta { background: rgba(255, 255, 255, .95); color: var(--espresso); }
.nav__cta { padding: .6rem 1.2rem; font-size: .87rem; }

.burger { display: none; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; }
.burger span { display: block; width: 19px; height: 1.8px; background: var(--espresso); border-radius: 2px; position: relative; transition: background-color .2s ease; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 1.8px; background: inherit; border-radius: 2px;
  transition: transform .28s ease, top .2s ease;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.nav:not(.nav--solid) .burger span { background: #fff; }
.nav.is-menu-open .burger span { background: transparent !important; }
.nav.is-menu-open .burger span::before { top: 0; transform: rotate(45deg); background: var(--espresso); }
.nav.is-menu-open .burger span::after  { top: 0; transform: rotate(-45deg); background: var(--espresso); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(3rem, 7vw, 5rem); overflow: hidden; }

/* On any screen with room for it, the hero and the facts strip together
   fill exactly one viewport — so "Right now" and "How to order" are on
   screen the moment the page opens, with no scrolling. The hero takes
   whatever height is left after the strip. Below these breakpoints the
   hero keeps its full height and the strip sits under the fold. */
@media (min-width: 760px) and (min-height: 620px) {
  .above-fold { min-height: 100svh; display: flex; flex-direction: column; }
  .hero  { min-height: 0; flex: 1 1 auto; padding-bottom: clamp(2rem, 4vh, 3.25rem); }
  .facts { flex: 0 0 auto; }
  /* Needs the extra specificity: the base .hero__scroll rule is declared
     later in this file, and a media query adds no specificity of its own. */
  .above-fold .hero__scroll { display: none; }   /* the strip is the cue now */
  .hero__title { font-size: clamp(2.4rem, 6vw, 4.4rem); }
  .hero__addr  { margin-bottom: clamp(1rem, 2.5vh, 1.6rem); }
  .hero__badges { margin-bottom: clamp(.8rem, 2vh, 1.2rem); }
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28, 20, 14, .92) 0%, rgba(28, 20, 14, .55) 38%, rgba(28, 20, 14, .35) 65%, rgba(28, 20, 14, .5) 100%);
}
.hero__inner { position: relative; z-index: 1; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; color: #fff; }

.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.4rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .42rem;
  padding: .38rem .85rem; border-radius: 100px;
  background: rgba(255, 255, 255, .15); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  font-size: .8rem; font-weight: 500; letter-spacing: .01em;
}
.hero__badge strong { font-weight: 700; }
.hero__badge svg { width: 14px; height: 14px; }

.hero__title { font-size: clamp(2.6rem, 8vw, 5.2rem); color: #fff; margin-bottom: .5rem; }
.hero__title em { font-style: normal; color: var(--camel-soft); }
.hero__tag { font-size: clamp(1rem, 2.2vw, 1.25rem); color: rgba(255, 255, 255, .84); max-width: 34ch; margin-bottom: 1.1rem; }
.hero__addr { display: flex; align-items: flex-start; gap: .5rem; font-size: .93rem; color: rgba(255, 255, 255, .7); margin-bottom: 2rem; max-width: 40ch; }
.hero__addr svg { width: 16px; height: 16px; flex: none; margin-top: .28rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .5);
}
.hero__scroll span { width: 1px; height: 30px; background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent); }

/* ============================================================
   FACTS STRIP
   ============================================================ */
.facts { background: var(--espresso); color: var(--cream); padding: 2.2rem 0; }
.facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fact { display: flex; flex-direction: column; gap: .3rem; position: relative; padding-left: 1.5rem; }
.fact::before { content: ''; position: absolute; left: 0; top: .2rem; bottom: .2rem; width: 2px; background: rgba(216, 191, 157, .3); border-radius: 2px; }
.fact__label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(232, 217, 195, .55); }
.fact__value { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; }
.fact__note { font-size: .8rem; color: rgba(232, 217, 195, .6); }
.fact .status { align-self: flex-start; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__body p + p { margin-top: 1.1rem; }
.about__body p { color: var(--espresso-mid); font-size: 1.04rem; }
.about__lead { font-size: 1.18rem !important; color: var(--espresso) !important; font-weight: 500; }

.about__points { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .8rem; }
.about__points li { display: flex; align-items: flex-start; gap: .7rem; font-size: .96rem; color: var(--espresso-mid); }
.about__points svg { width: 19px; height: 19px; flex: none; margin-top: .18rem; color: var(--camel); }

.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__stamp {
  position: absolute; left: -1.6rem; bottom: -1.4rem;
  background: var(--white); border-radius: var(--radius); padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.about__stamp strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--camel); line-height: 1; }
.about__stamp span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   MENU
   ============================================================ */
.menu__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.menu__search { position: relative; flex: 1 1 250px; max-width: 340px; }
.menu__search svg { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.menu__search input {
  width: 100%; padding: .78rem 2.9rem .78rem 2.7rem;
  border: 1.5px solid var(--oak); border-radius: 100px; background: var(--white);
  font: inherit; font-size: .93rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.menu__search input::placeholder { color: var(--muted); }
.menu__search input:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 4px rgba(176, 137, 94, .12); }
/* Hide the browser's own clear button — we render our own .menu__clear. */
.menu__search input::-webkit-search-cancel-button,
.menu__search input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
/* Sits inside a pill-shaped input, so a filled circle reads as a blob
   bulging out of the rounded cap. Keep it flat; fill only on hover. */
.menu__clear {
  position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; display: none;
  align-items: center; justify-content: center;
  color: var(--muted); background: transparent;
  transition: background-color .18s ease, color .18s ease;
}
.menu__clear.is-visible { display: flex; }
.menu__clear svg { width: 14px; height: 14px; }
.menu__clear:hover { color: var(--espresso); background: var(--cream-deep); }
.menu__count { font-size: .87rem; color: var(--muted); margin-left: auto; }

.menu__tabs { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; margin-bottom: 2.2rem; scrollbar-width: thin; }
.menu__tabs::-webkit-scrollbar { height: 4px; }
.menu__tabs::-webkit-scrollbar-thumb { background: var(--oak); border-radius: 4px; }
.tab {
  padding: .55rem 1.15rem; border-radius: 100px; white-space: nowrap;
  font-size: .87rem; font-weight: 500; color: var(--espresso-mid);
  background: var(--white); box-shadow: inset 0 0 0 1.5px var(--oak);
  transition: all .2s ease;
}
.tab:hover { box-shadow: inset 0 0 0 1.5px var(--camel-soft); color: var(--espresso); }
.tab.is-active { background: var(--espresso); color: var(--cream); box-shadow: none; }

/* min() so the 290px track can collapse on phones narrower than that. */
.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr)); gap: 1.3rem; }

.dish {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: dishIn .38s ease both;
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@keyframes dishIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.dish__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-deep); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__img img { transform: scale(1.05); }
.dish__img--none { display: flex; align-items: center; justify-content: center; color: var(--camel-soft); }
.dish__img--none svg { width: 42px; height: 42px; }

.dish__body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.dish__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.dish__name { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--espresso); line-height: 1.25; }
/* Own line — inline it wraps mid-string and collides with the price. */
.dish__cn { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: .2rem; }
.dish__price { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--camel-dark); white-space: nowrap; text-align: right; }
.dish__basis {
  display: block; font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .1rem;
}
.dish__price--tba { font-family: var(--sans); font-size: .76rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.dish__desc { font-size: .88rem; color: var(--espresso-mid); line-height: 1.55; flex: 1; }
.dish__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin-top: .25rem; }
.chip {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .26rem .6rem; border-radius: 100px;
}
.chip--code { background: var(--cream-deep); color: var(--espresso-mid); }
.chip--tag  { background: rgba(176, 137, 94, .13); color: var(--camel-dark); }

.menu__empty { text-align: center; padding: 3.5rem 1rem; color: var(--muted); grid-column: 1 / -1; }
.menu__empty svg { width: 44px; height: 44px; margin-bottom: 1rem; color: var(--camel-soft); }
.menu__empty strong { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--espresso); margin-bottom: .35rem; }

.menu__note {
  margin-top: 2.2rem; padding: 1rem 1.3rem; border-radius: var(--radius);
  background: var(--cream-deep); font-size: .85rem; color: var(--espresso-mid);
  display: flex; gap: .7rem; align-items: flex-start;
}
.menu__note svg { width: 17px; height: 17px; flex: none; margin-top: .2rem; color: var(--camel-dark); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: .9rem; }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--cream-deep); box-shadow: var(--shadow-sm); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gtile:hover img { transform: scale(1.07); }
.gtile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28, 20, 14, .72), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gtile:hover::after { opacity: 1; }
.gtile__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1rem;
  color: #fff; font-size: .82rem; line-height: 1.4;
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.gtile:hover .gtile__cap { opacity: 1; transform: none; }
.gtile--wide { grid-column: span 2; }
.gtile--tall { grid-row: span 2; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(20, 14, 9, .94); backdrop-filter: blur(6px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lb.is-open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb__figure { max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lb__img { max-width: min(92vw, 1100px); max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 60px rgba(0, 0, 0, .5); animation: lbIn .3s ease; }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb__cap { color: rgba(255, 255, 255, .82); font-size: .92rem; text-align: center; max-width: 60ch; }
.lb__counter { color: rgba(255, 255, 255, .45); font-size: .78rem; letter-spacing: .1em; }
.lb__btn {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1); color: #fff; backdrop-filter: blur(8px);
  transition: background-color .2s ease, transform .2s ease;
}
.lb__btn:hover { background: rgba(255, 255, 255, .2); }
.lb__btn svg { width: 20px; height: 20px; }
.lb__close { top: 1.2rem; right: 1.2rem; }
.lb__prev  { left: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb__next  { right: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb__prev:hover, .lb__next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__top { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-bottom: 3rem; }
/* `1fr` is really minmax(auto, 1fr), so the column refuses to shrink below the
   carousel's min-content and blows the page out sideways on phones. */
.reviews__top > * { min-width: 0; }

.score { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center; }
.score__num { font-family: var(--serif); font-size: 3.6rem; font-weight: 600; color: var(--espresso); line-height: 1; }
.score__stars { display: flex; justify-content: center; gap: .18rem; margin: .6rem 0 .4rem; color: var(--star); }
.score__stars svg { width: 19px; height: 19px; }
.score__count { font-size: .85rem; color: var(--muted); }
.score__bars { margin-top: 1.4rem; display: grid; gap: .45rem; }
.bar { display: grid; grid-template-columns: 12px 1fr 34px; align-items: center; gap: .55rem; font-size: .76rem; color: var(--muted); }
.bar__track { display: block; height: 6px; border-radius: 4px; background: var(--cream-deep); overflow: hidden; }
/* display:block matters — these are spans, and width/height are ignored on inline boxes. */
.bar__fill { display: block; height: 100%; border-radius: 4px; background: var(--star); width: 0; transition: width 1.1s cubic-bezier(.22, 1, .36, 1); }

.keywords { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.keyword {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem; border-radius: 100px; background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--oak); font-size: .87rem; color: var(--espresso-mid);
  transition: all .2s ease;
}
.keyword:hover { box-shadow: inset 0 0 0 1.5px var(--camel); color: var(--espresso); }
.keyword b { color: var(--camel-dark); font-size: .78rem; }

.carousel { position: relative; min-width: 0; }
.carousel__track { display: flex; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); min-width: 0; }
/* min-width:0 — flex items default to min-width:auto and would otherwise
   refuse to shrink below their text's min-content width. */
.rev { flex: 0 0 100%; min-width: 0; background: var(--white); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm); }
.rev__stars { display: flex; gap: .15rem; color: var(--star); margin-bottom: .9rem; }
.rev__stars svg { width: 16px; height: 16px; }
.rev__text { font-family: var(--serif); font-size: clamp(1.02rem, 2vw, 1.28rem); line-height: 1.6; color: var(--espresso); margin-bottom: 1.3rem; }
.rev__who { display: flex; align-items: center; gap: .8rem; }
.rev__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--camel); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .95rem;
}
.rev__name { font-weight: 600; font-size: .93rem; color: var(--espresso); }
.rev__meta { font-size: .79rem; color: var(--muted); }

.carousel__nav { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.carousel__btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--white); box-shadow: inset 0 0 0 1.5px var(--oak); color: var(--espresso);
  transition: all .2s ease;
}
.carousel__btn:hover { box-shadow: inset 0 0 0 1.5px var(--espresso); background: var(--espresso); color: var(--cream); }
.carousel__btn svg { width: 17px; height: 17px; }
.carousel__dots { display: flex; gap: .4rem; margin-left: auto; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--oak); transition: all .25s ease; }
.dot.is-active { background: var(--camel); width: 22px; border-radius: 4px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.4; background: var(--cream-deep); }
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); }
.info-card + .info-card { margin-top: 1.1rem; }
.info-card__title { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; font-size: .92rem; border-bottom: 1px solid var(--cream-deep); }
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { font-weight: 600; color: var(--espresso); }
.hours__day { color: var(--espresso-mid); }
.hours li.is-today .hours__day { color: var(--espresso); }
.hours__today-flag { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--camel-dark); background: rgba(176, 137, 94, .13); padding: .16rem .48rem; border-radius: 100px; margin-left: .5rem; }

.contact-row { display: flex; align-items: flex-start; gap: .9rem; padding: .75rem 0; border-bottom: 1px solid var(--cream-deep); }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row svg { width: 18px; height: 18px; flex: none; margin-top: .22rem; color: var(--camel); }
.contact-row__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.contact-row__value { font-size: .95rem; color: var(--espresso); line-height: 1.5; }
.contact-row a.contact-row__value:hover { color: var(--camel-dark); text-decoration: underline; }
.visit__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: rgba(232, 217, 195, .72); padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(232, 217, 195, .14); }
.footer .brand__name { color: var(--cream); }
.footer .brand__sub { color: rgba(232, 217, 195, .5); }
.footer .brand__mark circle, .footer .brand__mark path { stroke: var(--camel-soft); }
.footer__blurb { margin-top: 1rem; font-size: .9rem; max-width: 36ch; line-height: 1.6; }
.footer__col h4 { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(232, 217, 195, .5); margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__col a, .footer__col li { font-size: .9rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; color: rgba(232, 217, 195, .45); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Content is visible by default. Only once JS confirms it is running does it
   hide things to animate them in — so a JS failure, a throttled background tab
   or a missing IntersectionObserver can never leave the page blank. */
.reveal { opacity: 1; transform: none; }
.js-reveal .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 460px; }
  .about__stamp { left: auto; right: 1rem; }
  .reviews__top { grid-template-columns: 1fr; }
  .score { max-width: 420px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem; }
}

@media (max-width: 760px) {
  .burger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(247, 241, 230, .98); backdrop-filter: blur(16px);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 16px 32px rgba(58, 42, 30, .1);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.is-menu-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: .85rem .25rem; border-bottom: 1px solid rgba(58, 42, 30, .07); color: var(--espresso-mid) !important; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav.is-menu-open { background: rgba(247, 241, 230, .96); backdrop-filter: blur(14px); }
  .nav.is-menu-open .brand__name { color: var(--espresso); }
  .nav.is-menu-open .brand__sub { color: var(--muted); }
  .nav.is-menu-open .brand__mark circle, .nav.is-menu-open .brand__mark path { stroke: var(--espresso); }
  .nav__cta { display: none; }

  .hero { min-height: 92svh; }
  .hero__scroll { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gtile--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu__count { width: 100%; margin-left: 0; }
}

/* Phone: the brand, the status pill and the burger have to share one row,
   so tighten every part of it rather than letting the brand wrap. */
@media (max-width: 560px) {
  .nav__inner { gap: .6rem; }
  .nav__side  { gap: .5rem; }
  .brand { gap: .5rem; }
  .brand__mark { width: 30px; height: 30px; }
  .brand__name { font-size: 1rem; }
  .brand__sub  { font-size: .55rem; letter-spacing: .12em; }
  .brand__name, .brand__sub { white-space: nowrap; }
  .nav__side .status { font-size: .72rem; padding: .3rem .62rem .3rem .5rem; }
  .burger { width: 38px; height: 38px; }

  /* Primary action full width, the other two share a row — three stacked
     full-width buttons pushed everything else off the first screen. */
  .hero__actions { gap: .55rem; }
  .hero__actions .btn { flex: 1 1 calc(50% - .3rem); padding: .74rem 1rem; font-size: .87rem; }
  .hero__actions .btn:first-child { flex: 1 1 100%; }
  .hero__addr { margin-bottom: 1.3rem; }
}

/* Narrow phones: shave the buttons and badges enough that the two secondary
   actions still sit side by side instead of stacking. */
@media (max-width: 400px) {
  .hero__actions .btn { padding: .7rem .55rem; font-size: .82rem; gap: .4rem; }
  .hero__actions .btn svg { width: 15px; height: 15px; }
  .hero__badge { font-size: .74rem; padding: .34rem .7rem; }
}

@media (max-width: 460px) {
  .facts__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gtile--wide { grid-column: span 1; }
  .about__stamp { position: static; margin-top: 1rem; display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .hero__scroll, .lb, .carousel__nav { display: none !important; }
}
