:root {
  --cream: #fff8e9;
  --cream-deep: #f4e5c3;
  --paper: #fffdf7;
  --red: #841c1c;
  --red-dark: #4e0e0e;
  --green: #235b37;
  --green-dark: #153d25;
  --yellow: #f6c445;
  --orange: #d96e24;
  --ink: #251b16;
  --muted: #6e5e53;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(57, 27, 15, 0.14);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--red-dark);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section-pad { padding: 110px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(255, 248, 233, .93);
  border-bottom: 1px solid rgba(78, 14, 14, .08);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  height: 72px;
  box-shadow: 0 10px 30px rgba(57, 27, 15, .08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--green); }
.brand-text span { margin-top: 6px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--red-dark); }
.main-nav { display: flex; align-items: center; gap: 31px; }
.main-nav a, .footer-nav a {
  position: relative;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  padding-top: 88px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 20%, rgba(246, 196, 69, .22), transparent 26%),
    radial-gradient(circle at 91% 22%, rgba(35, 91, 55, .13), transparent 27%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 88px 0 0;
  opacity: .07;
  background-image: radial-gradient(var(--red) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 76px;
  min-height: calc(100vh - 150px);
  padding-top: 60px;
  padding-bottom: 80px;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 44px; height: 2px; background: var(--green); }
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8.3vw, 8.3rem);
  line-height: .79;
  letter-spacing: -.065em;
  color: var(--red-dark);
}
.hero h1 em {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  transform: translateX(5%);
}
.hero-description {
  margin: 32px 0 12px;
  max-width: 600px;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 750;
  color: var(--ink);
}
.hero-location {
  max-width: 590px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.hero-location svg { flex: 0 0 21px; width: 21px; margin-top: 2px; fill: var(--red); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 30px rgba(132, 28, 28, .25); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border: 1px solid rgba(78, 14, 14, .18); background: rgba(255, 255, 255, .5); color: var(--red-dark); }
.button-secondary:hover { background: var(--white); }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.hero-photo-frame {
  position: relative;
  width: min(100%, 510px);
  padding: 16px;
  background: var(--paper);
  border: 1px solid rgba(78, 14, 14, .12);
  border-radius: 48% 48% 30px 30px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -17px 20px 20px -17px;
  z-index: -1;
  border: 2px solid var(--yellow);
  border-radius: 48% 48% 30px 30px;
}
.hero-photo-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(48% - 10px) calc(48% - 10px) 20px 20px;
  object-fit: contain;
}
.hero-stamp {
  position: absolute;
  top: 68px;
  right: -18px;
  width: 142px;
  height: 142px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--cream);
  background: var(--green);
  border: 8px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(21, 61, 37, .23);
  transform: rotate(8deg);
}
.hero-stamp::before, .hero-stamp::after {
  content: "✦";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow);
  font-size: .8rem;
}
.hero-stamp::before { top: 14px; }
.hero-stamp::after { bottom: 14px; }
.hero-stamp span { font-size: .67rem; letter-spacing: .25em; }
.hero-stamp strong { max-width: 100px; font-family: var(--font-display); font-size: 1.24rem; line-height: .9; }
.hero-mini-card {
  position: absolute;
  left: -42px;
  bottom: 62px;
  max-width: 315px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(57, 27, 15, .16);
}
.mini-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}
.hero-mini-card p { margin: 0; display: flex; flex-direction: column; line-height: 1.25; }
.hero-mini-card strong { color: var(--red-dark); }
.hero-mini-card span:last-child { margin-top: 4px; color: var(--muted); font-size: .73rem; }
.hero-decoration { position: absolute; border-radius: 50%; border: 2px dashed rgba(132, 28, 28, .16); }
.hero-decoration-one { width: 230px; height: 230px; left: -120px; top: 28%; }
.hero-decoration-two { width: 150px; height: 150px; right: -70px; bottom: 18%; }

.ticker { position: relative; z-index: 3; overflow: hidden; padding: 17px 0; background: var(--red); color: var(--cream); transform: rotate(-1deg) scale(1.02); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: ticker 30s linear infinite; }
.ticker span { font-size: .84rem; font-weight: 900; letter-spacing: .18em; }
.ticker i { color: var(--yellow); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: end; }
.section-heading h2, .gallery-heading h2, .location-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--red-dark);
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.intro-copy p { margin: 0; color: var(--muted); font-size: 1.15rem; }
.intro-line { margin-top: 36px; height: 3px; background: var(--cream-deep); overflow: hidden; }
.intro-line span { display: block; width: 38%; height: 100%; background: var(--red); }

.menu-section { position: relative; background: var(--green-dark); color: var(--cream); overflow: hidden; }
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(246, 196, 69, .14), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(217, 110, 36, .13), transparent 28%);
}
.menu-section .container { position: relative; z-index: 2; }
.section-heading.centered { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-kicker.light { color: var(--yellow); }
.menu-section .section-heading h2 { color: var(--cream); }
.section-heading > p:last-child { color: rgba(255, 248, 233, .7); }
.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.menu-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 233, .14);
  border-radius: 110px 110px 26px 26px;
  background: rgba(255, 255, 255, .045);
  text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.menu-card:hover { transform: translateY(-8px); border-color: rgba(246, 196, 69, .5); background: rgba(255, 255, 255, .08); }
.menu-card.featured { background: var(--yellow); color: var(--red-dark); border-color: var(--yellow); transform: translateY(-12px); }
.menu-card.featured:hover { transform: translateY(-18px); }
.menu-number { position: absolute; top: 22px; font-size: .68rem; font-weight: 900; letter-spacing: .14em; opacity: .7; }
.menu-card h3 { margin: 22px 0 0; font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 2rem); }
.taco-icon { position: relative; width: 94px; height: 56px; border: 5px solid currentColor; border-radius: 52px 52px 10px 10px; border-bottom-width: 7px; opacity: .94; }
.taco-icon::before, .taco-icon::after, .taco-icon span::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.taco-icon::before { left: 18px; top: 20px; }
.taco-icon::after { right: 18px; top: 18px; }
.taco-icon span::before { left: 40px; top: 8px; }

.gallery-section { background: var(--cream); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.gallery-heading > p { max-width: 330px; margin: 0; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(57, 27, 15, .08);
  cursor: zoom-in;
  overflow: hidden;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.gallery-wide { grid-column: span 1; }
.gallery-tall { grid-row: span 2; }
.image-shell {
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #e8dfce;
}
.image-shell.landscape { aspect-ratio: 16 / 9; }
.image-shell.portrait { min-height: 360px; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; background: #e8dfce; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-index {
  position: absolute;
  left: 27px;
  bottom: 27px;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red-dark);
  font-size: .75rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(57, 27, 15, .13);
}
.gallery-expand {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
}

.location-section { background: var(--paper); }
.location-card {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 48px;
  padding: 65px 70px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--red-dark);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.location-pin {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red-dark);
}
.location-pin svg { width: 70px; fill: currentColor; }
.location-copy { position: relative; z-index: 2; }
.location-copy h2 { color: var(--cream); }
.location-copy > p:last-child { margin: 18px 0 0; font-size: 1.14rem; color: rgba(255, 248, 233, .76); }
.location-pattern { position: absolute; right: -40px; bottom: -50px; display: flex; gap: 13px; transform: rotate(-16deg); opacity: .13; }
.location-pattern span { width: 48px; height: 270px; border: 8px solid var(--yellow); border-radius: 50%; }

.site-footer { padding: 42px 0; background: #1d1512; color: var(--cream); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand .brand-mark { color: var(--yellow); }
.footer-brand p { margin: 0; display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.18rem; }
.footer-brand span { color: rgba(255, 248, 233, .58); font-size: .78rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }
.footer-nav a { color: rgba(255, 248, 233, .76); }
.footer-nav a:hover { color: var(--yellow); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 12, 10, .93);
  backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox-content { width: min(1100px, 100%); height: min(82vh, 820px); display: grid; place-items: center; }
.lightbox-content img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 80px rgba(0, 0, 0, .5); }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-in .65s ease both; }
@keyframes reveal-in {
  from { opacity: .01; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: clamp(3.6rem, 7.7vw, 6.2rem); }
  .hero-visual { min-height: 520px; }
  .hero-stamp { right: -4px; }
  .hero-mini-card { left: -12px; bottom: 35px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card.featured { transform: none; }
  .menu-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .site-header { height: 76px; }
  .site-header.scrolled { height: 68px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text span { font-size: 1.18rem; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 12px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:hover { background: var(--cream); }
  .main-nav a::after { display: none; }
  .hero { padding-top: 76px; }
  .hero::before { inset-block-start: 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 72px; padding-bottom: 110px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-location { justify-content: center; }
  .hero-location { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 em { transform: none; }
  .hero-visual { min-height: 560px; }
  .hero-photo-frame { width: min(90%, 500px); }
  .hero-stamp { right: 2%; top: 15px; }
  .hero-mini-card { left: 5%; bottom: 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: auto; }
  .image-shell.portrait { min-height: 420px; max-height: 700px; }
  .location-card { grid-template-columns: 110px 1fr; gap: 30px; padding: 50px 42px; }
  .location-pin { width: 110px; height: 110px; }
  .location-pin svg { width: 54px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .brand-text strong { font-size: .61rem; }
  .brand-text span { font-size: 1.04rem; }
  .hero-grid { padding-top: 58px; padding-bottom: 85px; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5.3rem); }
  .hero-description { margin-top: 25px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 425px; }
  .hero-photo-frame { width: 94%; padding: 10px; border-radius: 44% 44% 22px 22px; }
  .hero-photo-frame img { border-radius: calc(44% - 5px) calc(44% - 5px) 15px 15px; }
  .hero-photo-frame::before { inset: -10px 10px 12px -10px; }
  .hero-stamp { width: 105px; height: 105px; border-width: 5px; right: 0; top: 0; }
  .hero-stamp strong { font-size: .92rem; }
  .hero-stamp::before, .hero-stamp::after { display: none; }
  .hero-mini-card { left: 0; right: 0; bottom: 0; max-width: 100%; }
  .mini-icon { flex-basis: 42px; width: 42px; height: 42px; }
  .ticker-track { gap: 20px; }
  .intro-grid { gap: 26px; }
  .section-heading h2, .gallery-heading h2, .location-copy h2 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .menu-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-card { min-height: 145px; flex-direction: row; justify-content: flex-start; gap: 24px; padding: 28px 25px; border-radius: 75px 22px 22px 75px; }
  .menu-card h3 { margin: 0; font-size: 1.8rem; }
  .menu-number { top: 16px; right: 20px; }
  .taco-icon { flex: 0 0 82px; width: 82px; height: 49px; }
  .gallery-item { padding: 9px; border-radius: 18px; }
  .image-shell.portrait { min-height: 330px; }
  .gallery-index { left: 19px; bottom: 19px; }
  .gallery-expand { top: 19px; right: 19px; }
  .location-card { grid-template-columns: 1fr; gap: 28px; padding: 38px 26px; text-align: center; }
  .location-pin { margin-inline: auto; }
  .location-pattern { opacity: .08; }
  .footer-brand { align-items: flex-start; }
  .footer-brand .brand-mark { flex: 0 0 44px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
  .lightbox { padding: 16px; }
}

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