:root {
  --cream: #f7f1e8;
  --cream-deep: #eee1d1;
  --ink: #161412;
  --muted: #5a5149;
  --red: #961f24;
  --red-dark: #74191d;
  --green: #285235;
  --green-dark: #153522;
  --gold: #d8b36c;
  --white: #fffaf1;
  --shadow: 0 18px 42px rgba(28, 20, 12, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.95), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fbf8f1 42%, var(--cream));
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(110, 73, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 73, 42, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sprite {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 112px;
  padding: 18px clamp(20px, 5vw, 58px);
  background: rgba(253, 248, 239, 0.96);
  border-bottom: 1px solid rgba(92, 70, 50, 0.18);
  box-shadow: 0 6px 30px rgba(41, 31, 20, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  justify-items: center;
  min-width: 190px;
  color: var(--red);
  line-height: 1;
}

.brand-script {
  font-family: Pacifico, Georgia, serif;
  font-size: clamp(2.45rem, 4.5vw, 4rem);
  transform: rotate(-4deg);
}

.brand-row {
  display: grid;
  grid-template-columns: 42px auto 42px;
  align-items: center;
  gap: 9px;
  margin-top: -5px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-row span {
  height: 2px;
  background: var(--green);
}

.brand small {
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.primary-nav a,
.primary-nav button {
  position: relative;
  min-height: 38px;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav a::after,
.primary-nav button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  content: "";
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav button:hover::after,
.primary-nav .active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(150, 31, 36, 0.22);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-order svg,
.btn svg,
.pickup-note svg,
.site-footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(440px, 1.14fr);
  min-height: 540px;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 52, 35, 0.18);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(252, 248, 239, 1) 0%, rgba(252, 248, 239, 0.96) 34%, rgba(252, 248, 239, 0.36) 58%, rgba(252, 248, 239, 0) 78%),
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.32), transparent 25rem);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 520px;
  padding: 66px clamp(22px, 6vw, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.favorites h2,
.catering-panel h2,
.about-panel h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 450px;
  font-family: "Special Elite", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.35rem, 6vw, 4.95rem);
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.script-line {
  margin: 20px 0 12px;
  color: var(--green);
  font-family: Pacifico, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.08rem);
  line-height: 1.2;
}

.hero-text {
  max-width: 390px;
  margin: 0;
  color: #211c18;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.24);
  border: 2px solid var(--ink);
}

.btn-green {
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
}

.pickup-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickup-note svg {
  width: 19px;
  height: 19px;
}

.hero-photo-wrap {
  position: relative;
  min-height: 540px;
}

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

.local-seal {
  position: absolute;
  top: 36px;
  right: clamp(24px, 4.5vw, 58px);
  display: grid;
  place-items: center;
  width: 156px;
  aspect-ratio: 1;
  padding: 19px;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(22, 20, 17, 0.2);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.36rem;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.local-seal span:first-child {
  color: #e8efdd;
}

.local-seal strong {
  font-weight: 400;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px clamp(24px, 7vw, 84px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(120, 24, 28, 0.9), rgba(157, 38, 43, 0.96), rgba(116, 25, 29, 0.96)),
    var(--red);
}

.service-band article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(14px, 2.3vw, 28px);
  border-right: 1px solid rgba(255, 250, 241, 0.38);
}

.service-band article:last-child {
  border-right: 0;
}

.service-band svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-band h2,
.service-band p {
  margin: 0;
}

.service-band h2 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-band p {
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.9);
  font-size: 0.9rem;
  line-height: 1.35;
}

.favorites {
  padding: 30px clamp(20px, 5vw, 66px) 28px;
  text-align: center;
}

.favorites h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

.section-rule,
.green-rule {
  width: 48px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--green);
}

.favorite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max-width);
  margin: 26px auto 18px;
}

.favorite-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 296px;
  overflow: hidden;
  color: var(--white);
  background: #211710;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.favorite-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.favorite-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.02) 0%, rgba(10, 8, 6, 0.14) 38%, rgba(10, 8, 6, 0.88) 100%);
}

.favorite-card:hover img {
  transform: scale(1.035);
}

.favorite-card div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 15px 16px;
}

.favorite-card h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.favorite-card p {
  min-height: 42px;
  margin: 4px 0 10px;
  color: rgba(255, 250, 241, 0.9);
  font-size: 0.85rem;
  line-height: 1.35;
}

.favorite-card button,
.menu-link,
.signup-form button {
  min-height: 34px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 178px;
  color: var(--white);
  background: var(--red);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.95fr);
  border-top: 1px solid rgba(65, 49, 35, 0.24);
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
}

.catering-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(270px, 0.75fr);
  min-height: 292px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 18, 15, 0.98) 0%, rgba(21, 32, 24, 0.95) 47%, rgba(21, 32, 24, 0.56) 70%, rgba(21, 32, 24, 0.12) 100%),
    #111713;
}

.catering-copy {
  position: relative;
  z-index: 1;
  padding: 30px clamp(24px, 5vw, 68px) 28px;
}

.catering-panel h2,
.about-panel h2 {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1;
}

.catering-panel p,
.about-panel p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.catering-panel .green-rule,
.about-panel .green-rule {
  margin: 10px 0 0;
}

.catering-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 22px;
}

.catering-points article {
  min-height: 98px;
  padding: 0 15px 0 0;
  border-right: 1px solid rgba(255, 250, 241, 0.32);
}

.catering-points article:last-child {
  border-right: 0;
}

.catering-points svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.catering-points h3 {
  margin: 7px 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catering-points p {
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 0.8rem;
  line-height: 1.35;
}

.catering-photo {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.about-panel {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 292px;
  padding: 30px clamp(24px, 4vw, 40px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 245, 234, 0.94), rgba(244, 235, 220, 0.94)),
    var(--cream);
}

.about-panel h2 {
  color: var(--green);
}

.about-panel p {
  max-width: 360px;
}

.about-panel .signature {
  margin-top: 22px;
  color: var(--red);
  font-family: Pacifico, Georgia, serif;
  font-size: 1.2rem;
}

.about-panel img {
  width: min(310px, 80%);
  margin: 8px 0 -20px auto;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.site-footer {
  color: rgba(255, 250, 241, 0.9);
  background:
    radial-gradient(circle at 12% 18%, rgba(55, 104, 67, 0.85), transparent 28rem),
    linear-gradient(120deg, var(--green-dark), var(--green));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.25fr 0.9fr;
  gap: 30px;
  padding: 30px clamp(24px, 5vw, 68px);
}

.site-footer section {
  min-width: 0;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 250, 241, 0.22);
}

.site-footer section:last-child {
  border-right: 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer p,
.site-footer dl {
  margin: 0;
}

.site-footer address p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 9px;
}

.site-footer address svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hours-list {
  display: grid;
  gap: 9px;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(115px, 1fr) auto;
  gap: 16px;
}

.hours-list dd {
  margin: 0;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  max-width: 310px;
  margin-top: 14px;
}

.signup-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 5px 0 0 5px;
}

.signup-form button {
  min-height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 0 5px 5px 0;
}

.form-note {
  min-height: 20px;
  margin-top: 7px;
  color: #e9ddbd;
  font-size: 0.86rem;
}

.social-row {
  display: flex;
  gap: 17px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 250, 241, 0.86);
  border-radius: 50%;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 15px clamp(24px, 5vw, 68px) 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
  font-size: 0.8rem;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--green-dark);
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(8, 14, 9, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-order {
    justify-self: end;
  }

  .service-band,
  .favorite-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-band article:nth-child(2) {
    border-right: 0;
  }

  .service-band article:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 250, 241, 0.28);
  }

  .service-band article:nth-child(n + 3) {
    padding-top: 18px;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

  .site-footer section:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 16px;
    min-height: auto;
  }

  .brand {
    min-width: 150px;
    justify-items: start;
  }

  .brand-script {
    font-size: 2.55rem;
  }

  .brand-row {
    grid-template-columns: 28px auto 28px;
    font-size: 1.4rem;
  }

  .header-order {
    min-height: 48px;
    padding: 0 15px;
    font-size: 0.75rem;
  }

  .header-order svg {
    width: 20px;
    height: 20px;
  }

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

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: none;
    padding: 42px 24px 26px;
    background:
      radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.9), transparent 20rem),
      var(--cream);
  }

  .hero-photo-wrap {
    min-height: 330px;
    order: -1;
  }

  .local-seal {
    top: auto;
    right: 20px;
    bottom: 18px;
    width: 128px;
    font-size: 1.1rem;
  }

  .catering-panel {
    grid-template-columns: 1fr;
  }

  .catering-photo {
    order: -1;
    min-height: 240px;
    max-height: 330px;
  }

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

  .site-footer section {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  }

  .site-footer section:last-child {
    border-bottom: 0;
  }

  .footer-bottom,
  .footer-bottom p:nth-child(2),
  .footer-bottom nav {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-order span {
    display: none;
  }

  .header-order {
    width: 48px;
    padding: 0;
  }

  .primary-nav {
    gap: 17px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .primary-nav a,
  .primary-nav button {
    flex: 0 0 auto;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.1rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-band,
  .favorite-grid {
    grid-template-columns: 1fr;
  }

  .service-band {
    padding: 18px;
  }

  .service-band article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.25);
  }

  .service-band article:first-child {
    padding-top: 0;
  }

  .service-band article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-band article:nth-child(-n + 2),
  .service-band article:nth-child(n + 3) {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .service-band svg {
    width: 42px;
    height: 42px;
  }

  .favorites {
    padding-inline: 18px;
  }

  .favorite-card {
    min-height: 260px;
  }

  .catering-copy,
  .about-panel {
    padding: 28px 20px;
  }

  .catering-points {
    grid-template-columns: 1fr;
  }

  .catering-points article {
    min-height: auto;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.22);
  }

  .catering-points article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .signup-form {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .signup-form input,
  .signup-form button {
    border-radius: 5px;
  }

  .signup-form button {
    margin-top: 8px;
  }
}
