:root {
  --paper: #f5f0e6;
  --ink: #171512;
  --muted: #655f57;
  --oxblood: #9d2d20;
  --marigold: #e3a126;
  --cobalt: #2356a8;
  --line: rgba(23, 21, 18, 0.34);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4.8vw, 5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
figure, h1, h2, h3, p { margin: 0; }
svg { width: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: square; stroke-width: 1.6; }

.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: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  height: 106px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.wordmark span { font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 2rem); letter-spacing: .01em; text-transform: uppercase; }
.wordmark small { margin-top: .55rem; color: var(--oxblood); font-size: .65rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3.6vw, 4rem); }
.site-nav > a:not(.button) { font-size: .94rem; position: relative; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--oxblood);
  transition: right .35s var(--ease);
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-toggle { display: none; }

.button {
  min-height: 70px;
  padding: 0 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border: 1px solid var(--oxblood);
  background: var(--oxblood);
  color: #fffaf1;
  font-size: 1rem;
  font-weight: 500;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.button:hover, .button:focus-visible { background: transparent; color: var(--oxblood); transform: translateY(-2px); }
.button--small { min-height: 56px; padding: 0 2rem; gap: 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
}
.hero__copy {
  padding: clamp(4.5rem, 10vh, 8.5rem) var(--gutter) 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  max-width: 7.8ch;
  font-family: var(--serif);
  font-size: clamp(5rem, 8.2vw, 8.8rem);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.045em;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--oxblood); font-style: normal; }
.hero__copy > p {
  max-width: 23ch;
  margin: clamp(2.2rem, 5vh, 4rem) 0 2.4rem;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.35;
}
.hero__media { min-height: 620px; overflow: hidden; }
.hero__media img { object-position: center 54%; }
.hero__rule {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  border-bottom: 1px solid var(--line);
}
.hero__rule::before { content: ""; position: absolute; left: 0; bottom: -1px; width: 4px; height: 32px; background: var(--cobalt); }

.menu { background: var(--paper); overflow: hidden; }
.menu__banner {
  height: 130px;
  padding: 0 var(--gutter);
  background: var(--oxblood);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .62rem;
  letter-spacing: .48em;
  text-transform: uppercase;
}
.menu__banner::before {
  content: "";
  position: absolute;
  left: calc(var(--gutter) + 180px);
  right: calc(var(--gutter) + 180px);
  border-top: 1px solid rgba(255,255,255,.5);
}
.menu__banner span { position: relative; z-index: 1; background: var(--oxblood); padding-right: 1.25rem; }
.menu__banner span:last-child { padding: 0 0 0 1.25rem; }
.menu__inner {
  min-height: 820px;
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(420px, .82fr) 1.18fr;
  gap: clamp(3rem, 6vw, 7rem);
}
.menu__copy h2, .story h2, .visit h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.menu__copy h2 { font-size: clamp(4.5rem, 6.6vw, 7.5rem); line-height: .82; }
.menu__copy > p { max-width: 31ch; margin: 2.1rem 0 2rem; font-size: 1.18rem; line-height: 1.45; }
.menu-list { max-width: 600px; }
.menu-item {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  text-align: left;
  cursor: pointer;
}
.menu-item svg { color: var(--oxblood); transition: transform .3s var(--ease); }
.menu-item:hover svg, .menu-item[aria-expanded="true"] svg { transform: translateX(7px); }
.menu-note { max-height: 0; color: var(--muted); font-size: .95rem; overflow: hidden; transition: max-height .35s var(--ease), padding .35s; }
.menu-note.is-open { max-height: 5rem; padding: .75rem 2.5rem .75rem 0; }
.text-link {
  margin-top: 2rem;
  padding: 0 0 .25rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--oxblood);
  font-weight: 600;
  cursor: pointer;
}
.menu__gallery { position: relative; min-height: 660px; }
.menu__photo { position: absolute; overflow: hidden; box-shadow: 0 25px 60px rgba(40,25,15,.12); }
.menu__photo--tacos { z-index: 2; top: -4rem; left: 0; width: 64%; aspect-ratio: 4/3; }
.menu__photo--mole { right: -2.5rem; bottom: -1rem; width: 61%; aspect-ratio: 4/5; }

.story {
  min-height: 780px;
  display: grid;
  grid-template-columns: 68% 32%;
  background: var(--ink);
  color: var(--paper);
}
.story__media { min-height: 640px; overflow: hidden; }
.story__media img { object-position: 45% center; }
.story__copy { padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.story h2 { font-size: clamp(4rem, 5.7vw, 7rem); line-height: .86; }
.story__copy > p { margin-top: 2.4rem; font-size: 1.18rem; line-height: 1.5; }
.story__rule { width: 72%; margin: 3rem 0 2.4rem; border-top: 3px solid var(--marigold); }
.story h3 { color: #e34b38; font-size: .8rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }

.visit { position: relative; min-height: 680px; overflow: hidden; background: var(--paper); }
.visit__inner { position: relative; z-index: 2; width: min(760px, calc(100% - 3rem)); margin: 0 auto; padding: 4.5rem 0 5rem; text-align: center; }
.visit__label { margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; color: var(--oxblood); }
.visit__label span { width: 150px; border-top: 1px solid currentColor; }
.visit__label p { font-size: .68rem; letter-spacing: .45em; text-transform: uppercase; }
.visit h2 { color: #76160f; font-size: clamp(5rem, 7.7vw, 8.8rem); line-height: .78; }
.visit__place { margin-top: 2rem; font-size: 1.6rem; }
.visit__status { margin-top: .9rem; color: var(--muted); }
.signup { margin-top: 2rem; display: grid; grid-template-columns: 1fr 230px; text-align: left; }
.signup input, .signup button { min-height: 72px; border-radius: 0; }
.signup input { padding: 0 1.4rem; border: 1px solid var(--ink); background: rgba(255,255,255,.12); font-size: 1rem; outline: none; }
.signup input:focus { box-shadow: inset 0 0 0 2px var(--cobalt); }
.signup button { padding: 0 1.8rem; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--marigold); background: var(--marigold); font-weight: 600; cursor: pointer; transition: background .25s, color .25s; }
.signup button:hover, .signup button:focus-visible { background: var(--oxblood); border-color: var(--oxblood); color: white; }
.signup__caption { margin-top: 1rem; color: var(--oxblood); font-size: .68rem; letter-spacing: .38em; text-transform: uppercase; }
.signup__message { min-height: 1.5rem; margin-top: .75rem; color: var(--cobalt); font-size: .85rem; }
.arch { position: absolute; bottom: 0; width: 19%; height: 90%; background: var(--marigold); }
.arch::before, .arch::after { content: ""; position: absolute; top: 0; background: var(--paper); }
.arch::before { width: 34%; height: 8%; }
.arch::after { width: 57%; height: 15%; }
.arch span { position: absolute; bottom: 0; width: 42%; height: 70%; background: var(--cobalt); border-radius: 50% 50% 0 0 / 22% 22% 0 0; }
.arch span::after { content: ""; position: absolute; left: -38%; right: -38%; bottom: 0; height: 42%; background: var(--oxblood); clip-path: polygon(50% 0, 57% 50%, 75% 18%, 70% 62%, 100% 45%, 72% 75%, 90% 100%, 54% 79%, 50% 100%, 44% 79%, 8% 100%, 29% 74%, 0 45%, 31% 62%, 24% 17%, 43% 50%); }
.arch--left { left: 0; }
.arch--left::before { right: 0; }
.arch--left::after { right: 0; top: 8%; }
.arch--left span { left: 17%; }
.arch--right { right: 0; }
.arch--right::before { left: 0; }
.arch--right::after { left: 0; top: 8%; }
.arch--right span { right: 17%; }

.site-footer {
  min-height: 190px;
  padding: 2.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  background: var(--cobalt);
  color: var(--paper);
}
.footer-mark { width: max-content; display: flex; flex-direction: column; align-items: center; }
.footer-mark strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: .85; }
.footer-mark span { margin-top: .6rem; font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; }
.site-footer nav { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 3rem; border-left: 1px solid rgba(255,255,255,.6); border-right: 1px solid rgba(255,255,255,.6); font-size: .88rem; }
.site-footer nav a:hover { text-decoration: underline; text-underline-offset: .4rem; }
.site-footer nav span { opacity: .62; }
.site-footer > p { padding-left: 2.8rem; font-size: .65rem; letter-spacing: .14em; text-align: center; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 50% 50%; }
  .hero h1 { font-size: clamp(4.5rem, 8vw, 6.2rem); }
  .menu__inner { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
  .menu__gallery { min-height: 570px; }
  .story { grid-template-columns: 60% 40%; }
  .visit__inner { width: min(680px, 60%); }
  .site-footer { grid-template-columns: .8fr 1.4fr 1fr; }
  .site-footer nav { gap: 1.6rem; }
}

@media (max-width: 820px) {
  .site-header { height: 82px; }
  .wordmark { align-items: flex-start; }
  .wordmark span { font-size: 1.25rem; }
  .wordmark small { font-size: .52rem; }
  .nav-toggle { width: 46px; height: 46px; padding: 0; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .nav-toggle > span:not(.sr-only) { width: 20px; border-top: 1.5px solid currentColor; transition: transform .25s; }
  .nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 82px 0 0; padding: 4rem var(--gutter); display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; background: var(--paper); transform: translateX(100%); transition: transform .4s var(--ease); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button) { font-family: var(--serif); font-size: 2.8rem; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__copy { min-height: calc(82svh - 82px); padding-top: 5rem; }
  .hero h1 { font-size: clamp(4.4rem, 18vw, 7rem); }
  .hero__copy > p { font-size: 1.2rem; }
  .hero__media { height: 86svh; min-height: 560px; }
  .hero__rule { display: none; }
  .menu__banner { height: 92px; }
  .menu__banner::before { display: none; }
  .menu__banner span:last-child { display: none; }
  .menu__inner { min-height: 0; grid-template-columns: 1fr; padding-top: 5rem; }
  .menu__copy h2 { font-size: clamp(4rem, 17vw, 6.5rem); }
  .menu__gallery { min-height: 730px; margin-top: 2rem; }
  .menu__photo--tacos { top: 0; width: 78%; }
  .menu__photo--mole { right: 0; bottom: 0; width: 62%; }
  .story { min-height: 0; grid-template-columns: 1fr; }
  .story__media { height: 65svh; min-height: 480px; }
  .story__copy { padding: 5.5rem var(--gutter) 6rem; }
  .story h2 { font-size: clamp(4.2rem, 16vw, 6.5rem); }
  .visit { min-height: 720px; }
  .visit__inner { width: min(600px, calc(100% - 3rem)); padding-top: 5rem; }
  .visit h2 { font-size: clamp(4.5rem, 16vw, 7rem); }
  .arch { width: 16%; height: 42%; }
  .arch span { width: 64%; height: 72%; }
  .signup { grid-template-columns: 1fr 180px; }
  .site-footer { padding-top: 3.5rem; padding-bottom: 3.5rem; grid-template-columns: 1fr; gap: 2.8rem; text-align: center; }
  .footer-mark { margin: 0 auto; }
  .site-footer nav { min-height: 0; border: 0; flex-wrap: wrap; }
  .site-footer > p { padding: 0; }
}

@media (max-width: 520px) {
  .button { min-height: 62px; padding: 0 1.5rem; }
  .hero__copy { min-height: 620px; }
  .hero h1 { font-size: clamp(4.2rem, 21vw, 6rem); }
  .hero__media { height: 72svh; min-height: 520px; }
  .menu__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .menu__copy h2 { font-size: 4.3rem; }
  .menu__copy > p { font-size: 1.05rem; }
  .menu-item { font-size: 1.9rem; }
  .menu__gallery { min-height: 560px; }
  .menu__photo--tacos { width: 86%; }
  .menu__photo--mole { width: 68%; }
  .story__media { min-height: 420px; }
  .story__copy { padding-left: 1.25rem; padding-right: 1.25rem; }
  .story h2 { font-size: 4.6rem; }
  .visit { min-height: 770px; }
  .visit__label span { width: 60px; }
  .visit h2 { font-size: 4.75rem; }
  .signup { grid-template-columns: 1fr; }
  .signup button { min-height: 62px; }
  .arch { width: 21%; height: 34%; }
  .site-footer nav { gap: 1.4rem; }
}

@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; }
}
