@font-face {
  font-family: Display;
  src: local(Fraunces), local(Iowan Old Style), local(Palatino);
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Body;
  src: local("Source Sans 3"), local(Avenir Next), local(Gill Sans);
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fdf7f1;
  --bg-deep: #f3e5d6;
  --text: #1e1b18;
  --muted: #5e5146;
  --accent: #9b2f25;
  --accent-dark: #7c241d;
  --accent-soft: #f4c9b5;
  --leaf: #2f6b3b;
  --gold: #f0c26e;
  --card: #fff;
  --shadow: 0 18px 40px rgba(64, 38, 24, .12);
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1120px;
  --font-display: "Display", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Body", "Avenir Next", "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(240, 194, 110, .28), transparent 45%), radial-gradient(circle at 70% 10%, rgba(155, 47, 37, .12), transparent 40%), linear-gradient(135deg, var(--bg), var(--bg-deep));
  min-height: 100vh;
}

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

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

a.text-link {
  color: var(--accent);
  font-weight: 600;
}

.main {
  padding-bottom: 96px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 720px;
}

.section {
  padding: 72px 0;
  animation: .7s ease-out both rise;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(253, 247, 241, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 81, 70, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav a {
  padding: 6px 2px;
}

.nav a:hover, .nav a:focus-visible {
  color: var(--accent);
}

.header-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0);
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-ghost {
  background: none;
  border-color: rgba(30, 27, 24, .2);
  color: var(--text);
}

.btn-large {
  font-size: 1.1rem;
  padding: 14px 28px;
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.6rem);
  margin: 16px 0 12px;
}

.hero-copy {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.meta-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 47, 37, .12);
}

.hero-card h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

.hero-items {
  margin: 18px 0;
  display: grid;
  gap: 12px;
}

.hero-item {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.featured-grid, .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.photo-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 27, 24, .08);
}

.photo-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 17 / 10;
  object-fit: cover;
}

.menu-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  animation: .5s ease-out both fade-up;
}

.menu-card:nth-child(2) {
  animation-delay: 80ms;
}

.menu-card:nth-child(3) {
  animation-delay: .16s;
}

.menu-card:nth-child(4) {
  animation-delay: .24s;
}

.menu-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}

.badge.hidden {
  display: none;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.menu-card h3 {
  margin: 0;
  font-family: var(--font-display);
}

.menu-description {
  color: var(--muted);
}

.menu-meta {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.meta-pill {
  background: rgba(155, 47, 37, .08);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
}

.menu-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(47, 107, 59, .12);
  color: var(--leaf);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}

.tag-muted {
  opacity: .4;
}

.menu-hero {
  padding: 56px 0 24px;
}

.menu-hero h1 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.menu-cta {
  margin-top: 16px;
}

.menu-filters {
  padding: 24px 0;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
  color: var(--muted);
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 27, 24, .2);
  font-family: inherit;
  font-size: 1rem;
}

input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(155, 47, 37, .4);
  outline-offset: 2px;
}

.filter-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.menu-category + .menu-category {
  margin-top: 48px;
}

.menu-category h2 {
  font-family: var(--font-display);
}

.order-grid, .location-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.order-tips {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.order-tips ul {
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.order-note {
  color: var(--muted);
  margin-top: 16px;
}

.location-details {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.map-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.map-links {
  padding: 16px;
}

.hours-widget {
  background: rgba(155, 47, 37, .08);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.toast {
  margin-top: 16px;
  background: rgba(47, 107, 59, .12);
  border: 1px solid rgba(47, 107, 59, .3);
  color: var(--leaf);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-copy {
  color: rgba(255, 255, 255, .7);
}

.footer-muted {
  color: rgba(255, 255, 255, .6);
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

.footer-badge {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.footer-badge img {
  max-width: 180px;
  height: auto;
  image-rendering: pixelated;
}

.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  z-index: 40;
}

.sticky-call .btn {
  width: 100%;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 900px) {
  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
  }

  .header-cta {
    flex-direction: column;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (width >= 901px) {
  .sticky-call {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
