:root {
  --cream: #f8f2e6;
  --cream-deep: #efe3cc;
  --card: rgba(255, 251, 244, 0.92);
  --text: #432b20;
  --muted: #74584c;
  --red: #b6372e;
  --red-deep: #8d241f;
  --gold: #e4ab24;
  --gold-soft: #f4d36d;
  --line: rgba(116, 88, 76, 0.18);
  --shadow: 0 20px 50px rgba(106, 61, 33, 0.12);
  --shadow-lg: 0 32px 72px rgba(106, 61, 33, 0.16);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 999px;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Work Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(228, 171, 36, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(182, 55, 46, 0.1) 0%, transparent 55%),
    linear-gradient(170deg, #fffaf3 0%, #f8f2e6 45%, #f2e5cf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0 0.08 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    opacity: 0.04;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

iframe {
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 242, 230, 0.84);
  border-bottom: 1px solid rgba(116, 88, 76, 0.1);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--red);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

@media (max-width: 639px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: auto;
    min-width: 200px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: rgba(255, 251, 244, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 1.1rem;
    border-bottom: 0;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--red);
    background: rgba(228, 171, 36, 0.12);
    border-bottom-color: transparent;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Bree Serif", serif;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.005em;
  color: var(--red);
  line-height: 1;
  -webkit-text-stroke: 0.035em currentColor;
  paint-order: stroke fill;
}

@media (min-width: 720px) {
  .brand {
    font-size: 2.05rem;
    gap: 0.8rem;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
}

@media (min-width: 720px) {
  .brand-mark {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

/* ---------- Marquee ---------- */

.marquee {
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  overflow: hidden;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
}

.marquee-track span {
  color: #fff7ef;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 2rem;
}

.marquee-track .marquee-dot {
  color: var(--gold-soft);
  margin-left: 2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .marquee-track {
    animation-duration: 64s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 140ms;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 280ms;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 420ms;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 560ms;
}
.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 700ms;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Sections + shared ---------- */

.hero,
.section {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid,
.about-grid,
.card-grid,
.image-grid,
.menu-grid,
.visit-grid,
.footer-grid,
.info-list {
  display: grid;
  gap: 1.1rem;
}

.card-shell,
.item-card,
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(228, 171, 36, 0.8);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 0 0.9rem;
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .eyebrow {
    white-space: nowrap;
  }
}

.eyebrow-sm {
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
}

.eyebrow-light {
  color: var(--gold-soft);
}

h1,
h2,
h3,
.footer-brand {
  margin: 0;
  font-family: "Bree Serif", serif;
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  max-width: 16ch;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  max-width: 18ch;
  color: var(--text);
}

h3 {
  font-size: 1.2rem;
  color: var(--red-deep);
  margin-bottom: 0.45rem;
}

.section-copy,
.item-card p,
.info-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  color: #fff7ef;
  border: 0;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 251, 244, 0.88);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(182, 55, 46, 0.3);
  color: var(--red);
}

.button-gold {
  background: linear-gradient(160deg, var(--gold), #c98a10);
  color: var(--text);
  border: 0;
}

.button-glass {
  background: rgba(255, 251, 244, 0.14);
  color: #fff7ef;
  border: 1px solid rgba(255, 251, 244, 0.32);
  backdrop-filter: blur(8px);
}

.button-compact {
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

/* ---------- Hero photo card ---------- */

.hero-photo {
  position: relative;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-photo {
    min-height: 540px;
  }
}

@media (min-width: 960px) {
  .hero-photo {
    min-height: 680px;
  }
}

.hero-photo-img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: saturate(1.08) contrast(1.06) brightness(0.94);
  transform-origin: center;
  animation: ken-burns 22s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-img {
    animation: none;
  }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 130% 95% at 50% 40%, transparent 35%, rgba(20, 7, 0, 0.55) 92%),
    linear-gradient(
      170deg,
      rgba(35, 12, 4, 0.55) 0%,
      rgba(45, 18, 8, 0.45) 45%,
      rgba(70, 28, 12, 0.85) 100%
    );
}

.hero-photo-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 171, 36, 0.24), transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-content {
  position: relative;
  z-index: 4;
  padding: 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
}

@media (min-width: 640px) {
  .hero-photo-content {
    padding: 2.2rem 2.2rem;
    min-height: 540px;
  }
}

@media (min-width: 960px) {
  .hero-photo-content {
    min-height: 680px;
    padding: 3rem;
  }
}

.hero-photo-content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-photo-content > *:nth-child(1) { animation-delay: 200ms; }
.hero-photo-content > *:nth-child(2) { animation-delay: 360ms; }
.hero-photo-content > *:nth-child(3) { animation-delay: 520ms; }
.hero-photo-content > *:nth-child(4) { animation-delay: 680ms; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-photo-content h1 {
  color: #fff7ef;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.1rem;
}

.hero-text-light {
  color: rgba(255, 247, 239, 0.82);
  margin: 0 0 1.7rem;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

@media (min-width: 720px) {
  .hero-text-light {
    max-width: 48ch;
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.hero-pills li {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 251, 244, 0.12);
  border: 1px solid rgba(255, 251, 244, 0.2);
  color: rgba(255, 247, 239, 0.88);
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

/* ---------- Hero aside (visit + burrito) ---------- */

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.visit-card {
  position: relative;
  padding: 1.8rem;
  background:
    linear-gradient(160deg, rgba(255, 252, 247, 0.97), rgba(246, 235, 214, 0.9));
  border-radius: var(--radius-lg);
}

.visit-card > * {
  position: relative;
  z-index: 2;
}

.visit-card .visit-card-title {
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
  color: var(--text);
}

.visit-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 720px) {
  .visit-card-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}

.visit-card-head .eyebrow {
  margin-bottom: 0;
}

.visit-info {
  display: grid;
  gap: 0.85rem;
}

.visit-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(116, 88, 76, 0.1);
}

.visit-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.visit-info-label {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.visit-info-row strong {
  color: var(--text);
  font-weight: 700;
  font-size: 0.97rem;
}

.visit-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.status-badge.is-open {
  background: rgba(76, 140, 74, 0.12);
  border-color: rgba(76, 140, 74, 0.3);
  color: #2d6e2b;
}

.status-badge.is-open .status-dot {
  background: #4a9648;
}

.status-badge.is-closing-soon {
  background: rgba(228, 171, 36, 0.15);
  border-color: rgba(228, 171, 36, 0.4);
  color: #8a6600;
}

.status-badge.is-closing-soon .status-dot {
  background: var(--gold);
}

.status-badge.is-closed {
  background: rgba(182, 55, 46, 0.1);
  border-color: rgba(182, 55, 46, 0.25);
  color: var(--red-deep);
}

.status-badge.is-closed .status-dot {
  background: var(--red);
}

.burrito-card {
  position: relative;
  flex: 1;
  min-height: 170px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.burrito-img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: 65% 40%;
  display: block;
  filter: saturate(1.06) contrast(1.04) brightness(0.96);
}

.burrito-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 12, 4, 0.68) 0%, transparent 55%);
  z-index: 1;
}

.burrito-content {
  position: absolute;
  bottom: 1.3rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.burrito-title {
  font-family: "Bree Serif", serif;
  color: #fff7ef;
  font-size: 1.2rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.burrito-content .eyebrow {
  margin-bottom: 0.2rem;
}

/* ---------- About ---------- */

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(228, 171, 36, 0.05));
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 2.4rem;
}

.about-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.04) brightness(0.96);
}

.about-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 4;
  background: rgba(255, 251, 244, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1rem;
}

.about-photo-badge p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}

.about-photo-badge p.eyebrow {
  color: var(--red);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.about-copy h2 {
  margin-bottom: 1.2rem;
}

.about-copy .section-copy + .section-copy {
  margin-top: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 251, 244, 0.85);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(106, 61, 33, 0.07);
  flex-wrap: wrap;
}

.about-stats > div {
  min-width: 0;
}

.stat-value {
  font-family: "Bree Serif", serif;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
  margin: 0;
}

.stat-text {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0.25rem 0 0;
}

/* ---------- Favorites ---------- */

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.item-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 252, 247, 0.97), rgba(246, 236, 216, 0.88));
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem 1.7rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-height: 200px;
}

.item-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 171, 36, 0.28), transparent 68%);
  pointer-events: none;
}

.item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(106, 61, 33, 0.16);
}

.item-card:active {
  transform: translateY(-1px) scale(0.985);
  transition: transform 90ms ease;
}

.item-card .item-number {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: "Bree Serif", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(228, 171, 36, 0.42);
  user-select: none;
}

.item-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 0.6rem;
}

.item-card .item-badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin: 0 0 0.85rem;
}

.item-card h3 {
  font-size: 1.25rem;
  color: var(--red-deep);
  margin: 0 0 0.6rem;
  position: relative;
}

.item-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
  position: relative;
}

/* ---------- Gallery ---------- */

.image-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.image-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #2a1208;
  box-shadow: var(--shadow);
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 260ms ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(106, 61, 33, 0.18);
}

.image-card:active {
  transform: translateY(-1px) scale(0.985);
  transition: transform 90ms ease;
}

.image-card-frame {
  overflow: hidden;
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  background: linear-gradient(180deg, rgba(228, 171, 36, 0.16), rgba(182, 55, 46, 0.08));
  filter: saturate(1.06) contrast(1.05) brightness(0.95);
}

.image-card:hover img {
  transform: scale(1.07);
}

@media (min-width: 720px) {
  .image-card img {
    aspect-ratio: 4 / 5;
  }
}

.image-card-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 8, 2, 0.55) 100%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.image-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.3rem 1.2rem;
  background: transparent;
  color: #fff7ef;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 420ms ease;
}

.image-card:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.image-card figcaption h3 {
  color: #fff7ef;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.image-card figcaption p {
  color: rgba(255, 247, 239, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.image-card h3 {
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.image-card p {
  margin: 0;
  line-height: 1.55;
}

.image-card.is-empty img {
  opacity: 0;
}

.image-card.is-empty .image-placeholder {
  display: grid;
}

.image-placeholder {
  display: none;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(228, 171, 36, 0.16), rgba(182, 55, 46, 0.08)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4) 12px,
      rgba(255, 255, 255, 0.2) 12px,
      rgba(255, 255, 255, 0.2) 24px
    );
  color: var(--red);
  font-family: "Bree Serif", serif;
  font-size: 1.1rem;
}

/* ---------- Menu ---------- */

.menu-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin: 0 -1rem 1.4rem;
  position: sticky;
  top: 84px;
  z-index: 5;
  padding: 0.65rem 1rem;
  background: rgba(248, 242, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(116, 88, 76, 0.1);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 720px) {
  .menu-tabs {
    top: 72px;
    margin: 0 0 1.4rem;
    padding: 0.65rem 0.2rem;
  }
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
}

@media (min-width: 720px) {
  .menu-tabs {
    flex-wrap: wrap;
  }
}

.menu-tab {
  appearance: none;
  border: 1px solid rgba(116, 88, 76, 0.16);
  background: rgba(255, 251, 244, 0.86);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(182, 55, 46, 0.3);
  color: var(--red);
}

.menu-tab.is-active {
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  border-color: transparent;
  color: #fff7ef;
}

.menu-card {
  background:
    linear-gradient(165deg, rgba(255, 251, 245, 0.97), rgba(246, 235, 214, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  border-radius: var(--radius-md);
  align-self: start;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.menu-card-header h3 {
  margin-bottom: 0.4rem;
}

.menu-card-price {
  white-space: nowrap;
  color: var(--red);
  font-family: "Bree Serif", serif;
  font-size: 1.35rem;
}

.menu-card-copy,
.menu-note,
.menu-item-details {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.menu-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(116, 88, 76, 0.12);
}

.menu-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-item-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item-line strong {
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.menu-item-price {
  white-space: nowrap;
  color: var(--red-deep);
  font-weight: 800;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 1rem;
}

/* ---------- Visit ---------- */

.visit-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

.info-list {
  margin-top: 1.4rem;
}

.info-card {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.info-card h3 {
  font-size: 1.1rem;
}

.fine-print {
  font-size: 0.92rem;
}

.map-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(245, 233, 211, 0.9));
  border-radius: 28px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 380px;
  display: block;
}

.map-actions {
  padding: 1rem 1.4rem 1.4rem;
}

/* ---------- Instagram strip ---------- */

.ig-strip {
  margin: 0 0 3rem;
  background: linear-gradient(135deg, rgba(182, 55, 46, 0.06), rgba(228, 171, 36, 0.08));
  border-top: 1px solid rgba(116, 88, 76, 0.1);
  border-bottom: 1px solid rgba(116, 88, 76, 0.1);
  padding: 2.2rem 0;
}

.ig-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ig-strip-title {
  font-family: "Bree Serif", serif;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.4rem;
}

.ig-strip-text {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.2rem 0 2.4rem;
  border-top: 1px solid rgba(228, 171, 36, 0.35);
  background: rgba(248, 242, 230, 0.65);
}

.footer-grid {
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-size: 1.7rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer p {
  font-size: 0.92rem;
  margin: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.info-card a:hover,
.info-card a:focus-visible {
  color: var(--red);
}

/* ---------- Responsive ---------- */

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr auto;
  }
}

@media (min-width: 960px) {
  .hero,
  .section {
    padding: 4rem 0 5rem;
  }

  .hero-grid,
  .visit-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: stretch;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
  }

  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .visit-card,
  .info-card {
    padding: 1.5rem;
  }

  .about-stats {
    gap: 1.2rem;
    padding: 1.2rem;
  }
}
