:root {
  --tomato: #b92418;
  --tomato-bright: #e53935;
  --basil: #0f5a34;
  --basil-bright: #146b3a;
  --forest: #07311f;
  --cream: #efe5d1;
  --paper: #fbf3e2;
  --sauce: #d9431f;
  --ink: #251913;
  --muted: #67584b;
  --line: #d7c6a8;
  --focus: #251913;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 16%, rgba(37, 25, 19, .045) 0 .7px, transparent 1px),
    radial-gradient(circle at 78% 38%, rgba(20, 107, 58, .035) 0 .8px, transparent 1.1px),
    repeating-linear-gradient(0deg, rgba(37, 25, 19, .018) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(20, 107, 58, .04) 0 12px, transparent 12px 24px),
    var(--cream);
  background-size: 31px 31px, 43px 43px, 100% 6px, 24px 24px, auto;
}

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

a {
  color: inherit;
}

input,
select,
textarea,
button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2000;
  transform: translateY(-160%);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 3px solid var(--focus);
  border-radius: 999px;
  background: var(--paper);
  color: var(--focus);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(16px, 3vw, 38px);
  border-bottom: 4px solid var(--basil);
  background: rgba(239, 229, 209, .96);
  backdrop-filter: blur(12px);
}

.logo-link img {
  width: clamp(156px, 14vw, 212px);
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
}

.desktop-nav a,
.mobile-nav a,
.text-link {
  color: var(--forest);
  font-weight: 1000;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--tomato);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid var(--basil);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 1001;
  left: 18px;
  right: 18px;
  top: calc(100% + 10px);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 3px solid var(--basil);
  border-radius: 8px;
  background: rgba(251, 243, 226, .99);
  box-shadow: 8px 10px 0 rgba(7, 49, 31, .18);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.mobile-nav a::after {
  content: ">";
  color: var(--tomato);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--tomato);
  border-radius: 999px;
  background: var(--tomato);
  color: white;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 5px 6px 0 rgba(37, 25, 19, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 8px 0 rgba(37, 25, 19, .18);
}

.button:focus-visible {
  box-shadow: 0 0 0 5px rgba(251, 243, 226, .96), 0 0 0 9px var(--focus);
}

.button.small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 12px;
}

.button.ghost {
  border-color: var(--basil);
  background: var(--paper);
  color: var(--forest);
}

.button.ghost-dark {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 126px);
  padding: clamp(78px, 10vw, 136px) clamp(18px, 6vw, 72px);
  overflow: hidden;
  border-bottom: 4px solid var(--forest);
  background:
    linear-gradient(180deg, rgba(7, 49, 31, .76), rgba(37, 25, 19, .58) 48%, rgba(7, 49, 31, .78)),
    url("./assets/pasta-spread.jpg") center / cover no-repeat;
  background-attachment: fixed;
  text-align: center;
}

.hero-copy {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero .eyebrow {
  color: #ffcf8a;
}

.hero h1 {
  max-width: 920px;
  color: var(--cream);
  font-size: clamp(70px, 12vw, 154px);
  text-shadow: 0 5px 22px rgba(0, 0, 0, .42);
}

.hero .lead {
  max-width: 690px;
  margin-inline: auto;
  color: #fff8e9;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .44);
}

.hero .hero-actions {
  justify-content: center;
}

.hero .button.ghost {
  border-color: rgba(239, 229, 209, .92);
  background: rgba(239, 229, 209, .12);
  color: var(--cream);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, .22);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font: 1000 18px/1 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em;
}

h1 {
  max-width: 720px;
  color: var(--forest);
  font-size: clamp(66px, 10vw, 134px);
  line-height: .82;
}

h2 {
  color: var(--forest);
  font-size: clamp(46px, 7vw, 84px);
  line-height: .86;
}

h3 {
  color: var(--tomato);
  font-size: 34px;
  line-height: .92;
}

.lead,
.section-heading p,
.photo-copy p,
.content-card p,
.menu-card p,
.order-card p,
footer p {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  max-width: 560px;
  margin: 22px 0 28px;
  font-size: 20px;
}

.hero-actions,
.card-actions,
.pos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.marquee {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 58px);
  flex-wrap: wrap;
  padding: 22px 20px;
  border-block: 4px solid var(--forest);
  background: var(--forest);
  color: var(--cream);
  font: 1000 clamp(28px, 4vw, 50px)/1 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.marquee span:nth-child(even) {
  color: #ffcf8a;
}

.section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  max-width: 560px;
  margin: 14px auto 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.page-hero.compact {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero.compact .lead {
  margin-inline: auto;
}

.page-hero img {
  width: 100%;
  height: min(48vw, 520px);
  min-height: 320px;
  border: 4px solid var(--forest);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 12px 14px 0 rgba(20, 107, 58, .18);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 220px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 243, 226, .94);
  box-shadow: 7px 8px 0 rgba(185, 36, 24, .12);
}

.menu-card.featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.menu-card.featured img {
  height: 430px;
}

.tag {
  margin: 0 0 10px;
  color: var(--forest) !important;
  font-weight: 1000;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(360px, 1.3fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--forest);
}

.photo-story h2,
.photo-story .eyebrow {
  color: var(--cream);
}

.photo-story p {
  color: #efe4cf;
}

.photo-story img {
  width: 100%;
  max-height: 620px;
  border: 4px solid var(--cream);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 12px 14px 0 rgba(185, 36, 24, .24);
}

.photo-copy {
  padding: clamp(18px, 4vw, 44px);
}

.photo-copy p {
  max-width: 480px;
}

.brand-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--forest);
  border-radius: 8px;
  box-shadow: 10px 12px 0 rgba(185, 36, 24, .14);
}

.brand-note {
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.content-grid,
.order-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.content-card,
.order-card,
.form-card,
.pos-card,
.menu-panel {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 243, 226, .96);
  box-shadow: 7px 8px 0 rgba(20, 107, 58, .14);
}

.content-card,
.order-card,
.pos-card,
.menu-panel {
  padding: clamp(22px, 4vw, 34px);
}

.order-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(185, 36, 24, .08), transparent),
    var(--paper);
}

.order-card img,
.content-card img {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.form-card {
  padding: clamp(22px, 4vw, 36px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(20, 107, 58, .13);
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.menu-jump a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 5px 0 rgba(185, 36, 24, .12);
}

.full-menu-section {
  background:
    linear-gradient(180deg, rgba(251, 243, 226, .78), rgba(239, 229, 209, .96)),
    var(--cream);
}

.catering-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.catering-info-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 8px 0 rgba(20, 107, 58, .14);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(185, 36, 24, .14);
}

.catering-menu-list {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.menu-panel {
  min-width: 0;
  scroll-margin-top: 110px;
}

.menu-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(20, 107, 58, .2);
}

.menu-panel-header h3 {
  font-size: clamp(36px, 5vw, 58px);
}

.menu-panel-header h3 span,
.menu-items h4 span {
  color: var(--forest);
}

.menu-items {
  display: grid;
  gap: 14px;
}

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

.menu-items article,
.package-grid article {
  padding: 16px;
  border: 2px dashed rgba(20, 107, 58, .2);
  border-radius: 8px;
  background: rgba(239, 229, 209, .72);
}

.menu-items h4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.menu-items p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(20, 107, 58, .2);
}

.menu-list strong {
  color: var(--ink);
  font-weight: 1000;
}

.menu-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.menu-list span {
  color: var(--tomato);
  font-weight: 1000;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 90px);
}

.photo-band img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  object-fit: cover;
}

.photo-band img:nth-child(even) {
  margin-top: 28px;
}

.visit-cta {
  margin: 0;
  padding: clamp(36px, 6vw, 70px) 22px;
  background: var(--forest);
  color: white;
  text-align: center;
}

.visit-cta img {
  width: min(300px, 78vw);
  height: auto;
  object-fit: contain;
  margin: 0 auto 16px;
}

.visit-cta h2,
.visit-cta .eyebrow {
  color: var(--cream);
}

.visit-cta .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.site-footer {
  border-top: 4px solid var(--forest);
  background:
    linear-gradient(180deg, rgba(20, 107, 58, .06), transparent 55%),
    var(--paper);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px) 22px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(180px, .75fr) minmax(220px, .8fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-logo img {
  width: min(260px, 74vw);
  height: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.footer-address {
  margin-top: 14px !important;
  color: var(--forest) !important;
  font-weight: 1000 !important;
}

.footer-links,
.social-links {
  display: grid;
  justify-content: start;
  gap: 10px;
}

.footer-links a,
.social-links a,
.footer-bottom a {
  color: var(--forest);
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-links a,
.social-links a {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(185, 36, 24, .26);
}

.footer-links a:hover,
.social-links a:hover,
.footer-bottom a:hover {
  color: var(--tomato);
}

.footer-heading {
  margin: 0 0 14px;
  color: var(--tomato);
  font: 1000 22px/1 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 2px solid rgba(20, 107, 58, .18);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .button:hover {
    transform: none;
  }
}

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

  .site-header .desktop-nav,
  .site-header .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero,
  .page-hero,
  .photo-story,
  .brand-board,
  .split-section,
  .catering-layout {
    grid-template-columns: 1fr;
  }

  .catering-info-card {
    position: static;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 44px;
  }

  .hero,
  .page-hero,
  .section,
  .split-section {
    padding-inline: 18px;
  }

  .catering-layout,
  .catering-info-card,
  .catering-menu-list,
  .menu-panel {
    width: 100%;
    max-width: 100%;
  }

  .menu-panel-header {
    display: grid;
    align-items: start;
  }

  .menu-grid,
  .content-grid,
  .order-grid,
  .package-grid,
  .menu-items.two-column,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .order-card.featured {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .menu-card.featured img,
  .page-hero img {
    height: 300px;
    min-height: 0;
  }

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

  .photo-band img {
    height: 260px;
    margin-top: 0 !important;
  }

  .footer-inner,
  .footer-bottom {
    display: grid;
  }

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

  .footer-bottom {
    gap: 10px;
  }
}
