@font-face {
  font-family: "Bowlby One";
  src: url("assets/fonts/BowlbyOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yellowtail";
  src: url("assets/fonts/Yellowtail-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ramona";
  src: url("assets/fonts/Ramona-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eds Market";
  src: url("assets/fonts/EdsMarketBoldSlant.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --red: #d42b34;
  --red-soft: #e44b2e;
  --cream: #f0e6d1;
  --cream-light: #fff7e8;
  --yellow: #ecaf0e;
  --brown: #6e3a2c;
  --black: #141414;
  --white: #fffaf1;
  --ink-muted: #5b4b43;
  --line: rgba(20, 20, 20, 0.14);
  --shadow: 0 20px 48px rgba(20, 20, 20, 0.12);
  --shadow-soft: 0 14px 34px rgba(110, 58, 44, 0.12);
  --max-width: 1160px;
  --font-display: "Bowlby One", system-ui, sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-body: "Ramona", system-ui, sans-serif;
  --font-ui: "Ramona", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(110, 58, 44, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.58;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

address {
  font-style: normal;
}

section[id] {
  scroll-margin-top: 90px;
}

::selection {
  color: var(--black);
  background: rgba(236, 175, 14, 0.45);
}

:focus-visible {
  outline: 3px solid rgba(236, 175, 14, 0.85);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: clamp(124px, 14vw, 160px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav a.is-active {
  color: var(--red);
}

.nav-cta {
  padding: 9px 16px !important;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--red);
}

.nav-cta:hover {
  background: var(--red-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: min(760px, calc(100svh - 74px));
  padding: clamp(30px, 5vw, 70px);
  background: var(--cream);
}

.hero__media {
  display: grid;
  min-height: min(560px, calc(100svh - 150px));
  place-items: center;
}

.hero-photo {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 8px;
  background: var(--brown);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 250, 241, 0.35);
  border-radius: 6px;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 20, 20, 0.68);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: clamp(28px, 5vw, 64px) 0;
}

.eyebrow,
.script-label {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-kicker .script-label {
  margin: 0;
}

.section-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(110, 58, 44, 0.16);
  object-fit: cover;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 5.1vw, 5.25rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 3.25vw, 3.35rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero__subtitle {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
}

.hero__text {
  max-width: 540px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.14);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  box-shadow: 0 12px 28px rgba(212, 43, 52, 0.22);
}

.button--secondary {
  color: var(--black);
  background: var(--yellow);
}

.button--outline {
  color: var(--brown);
  border-color: rgba(110, 58, 44, 0.35);
  background: rgba(255, 250, 241, 0.42);
}

.hero__quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero__quick-info span {
  padding: 7px 12px;
  border: 1px solid rgba(110, 58, 44, 0.18);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 250, 241, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section__header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section__header p:not(.script-label) {
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.section--cream {
  background:
    radial-gradient(circle at top left, rgba(236, 175, 14, 0.16), transparent 34%),
    var(--cream);
}

.section--dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(212, 43, 52, 0.18), transparent 44%),
    var(--black);
}

.section--dark .section__header p {
  color: rgba(255, 250, 241, 0.76);
}

.steps,
.menu-grid,
.gallery-grid {
  display: grid;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  gap: clamp(16px, 2vw, 22px);
}

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

.step,
.menu-item,
.quote-box {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.step {
  padding: clamp(24px, 2.5vw, 30px);
  border: 1px solid rgba(110, 58, 44, 0.1);
}

.step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-display);
  font-size: 0.94rem;
}

.step p,
.story p,
.events p,
.location p,
.site-footer p {
  color: var(--ink-muted);
}

.story,
.events,
.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: calc(var(--max-width) + 144px);
  margin-inline: auto;
}

.story__copy,
.events__copy,
.location__details {
  max-width: 680px;
}

.large-text {
  color: var(--brown);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.35;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 58, 44, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.story-photo {
  position: relative;
  min-height: 450px;
  margin: 0;
  border: 1px solid rgba(110, 58, 44, 0.15);
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.story-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 20, 20, 0.66);
  backdrop-filter: blur(10px);
  line-height: 1.25;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 150px;
  padding: 26px;
  color: var(--black);
  border: 1px solid rgba(255, 250, 241, 0.1);
}

.menu-item--featured {
  border: 3px solid var(--yellow);
}

.menu-item p {
  color: var(--ink-muted);
}

.menu-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-item strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.menu-note {
  display: flex;
  width: min(var(--max-width), 100%);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
}

.menu-note p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
}

.menu-note strong {
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 400;
  text-align: center;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 20, 20, 0.66);
  backdrop-filter: blur(10px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.event-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.event-list li {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.event-list span {
  color: var(--ink-muted);
}

.quote-box {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  border-top: 6px solid var(--red);
  overflow: hidden;
}

.quote-box__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
}

.quote-box h3,
.quote-box p,
.quote-box .button {
  position: relative;
  z-index: 1;
}

.quote-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
}

.location address {
  margin-bottom: 12px;
  color: var(--brown);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.phone-line {
  margin-bottom: 8px;
  font-weight: 700;
}

.phone-line a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.muted {
  margin-bottom: 0;
}

.map-card {
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(110, 58, 44, 0.16);
  background: var(--cream-light);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.final-cta {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: clamp(64px, 10vw, 120px) 20px;
  color: var(--white);
  background:
    linear-gradient(rgba(20, 20, 20, 0.54), rgba(20, 20, 20, 0.64)),
    url("assets/images/menudo-pan.jpeg") center / cover;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta .script-label {
  color: var(--yellow);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--brown);
}

.site-footer p {
  color: rgba(255, 250, 241, 0.76);
}

.brand--footer {
  margin-bottom: 8px;
}

.brand--footer img {
  width: clamp(150px, 18vw, 190px);
  max-height: 62px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-credit {
  margin: 0;
  color: rgba(255, 250, 241, 0.68) !important;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .story,
  .events,
  .location {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 18px;
  }

  .hero__media {
    min-height: 360px;
  }

  .hero-photo {
    width: min(100%, 440px);
  }

  .steps,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card {
    min-height: 240px;
  }

  .map-card {
    aspect-ratio: 1 / 1.05;
  }

  .map-card iframe {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 120px;
    max-height: 40px;
  }

  .hero__media {
    min-height: 300px;
  }

  .hero__content {
    padding: 26px 0 12px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.65rem);
    line-height: 1.04;
  }

  .steps,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-inline: 18px;
  }

  .menu-item,
  .menu-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item strong {
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
  }

  .hero__quick-info span {
    width: 100%;
  }

  .section-kicker {
    gap: 10px;
  }

  .section-icon {
    width: 50px;
    height: 50px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    min-height: 66px;
  }

  .site-nav {
    inset: 66px 12px auto 12px;
  }

  .hero {
    padding: 14px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero__media {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.08rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.84rem;
  }

  .section {
    padding-block: 56px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 220px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(2.05rem, 10.4vw, 2.9rem);
  }

  .eyebrow,
  .script-label {
    font-size: 1.65rem;
  }

  .hero__subtitle {
    font-size: 1.08rem;
  }

  .hero__quick-info span {
    font-size: 0.84rem;
  }
}

@media (max-width: 375px) {
  .brand img {
    width: 108px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-inline: 12px;
  }

  .section {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.72rem);
  }
}
