:root {
  --green: #153c34;
  --green-2: #0c2923;
  --cream: #fbf7ef;
  --paper: #f3eadb;
  --red: #a73a32;
  --gold: #d9a652;
  --ink: #18241f;
  --muted: #657069;
  --line: #d9d0c2;
  --max: 1240px;
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2.5rem;
  --s5: 4.5rem;
  --radius: 2px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    400 16px/1.6 Inter,
    Arial,
    sans-serif;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #fff;
  padding: 0.7rem;
  z-index: 9;
}
.skip:focus {
  top: 1rem;
}
.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: auto;
}
.eyebrow {
  display: block;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.display {
  font:
    400 clamp(2.45rem, 5vw, 5rem)/0.98 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 0;
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  max-width: 58ch;
  color: #405048;
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  gap: 0.5rem;
  transition: 0.2s;
}
.button:hover {
  background: var(--green-2);
}
.button--light {
  background: transparent;
  color: var(--green);
}
.button--light:hover {
  color: #fff;
}
.top {
  background: var(--green-2);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.42rem;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
}
.header.scrolled {
  border-color: var(--line);
}
.head-inner {
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font:
    700 1.55rem Georgia,
    serif;
  letter-spacing: -0.06em;
  color: var(--green);
}
.logo i {
  color: var(--red);
  font-style: normal;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 650;
}
.nav a {
  position: relative;
}
.nav a:not(.button):after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--red);
  left: 0;
  right: 0;
  bottom: -6px;
  transform: scaleX(0);
  transition: 0.2s;
}
.nav a:hover:after,
.nav a[aria-current]:after {
  transform: scaleX(1);
}
.menu {
  display: none;
  border: 0;
  background: none;
  color: var(--green);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
}
.hero {
  min-height: min(760px, calc(100vh - 102px));
  position: relative;
  display: grid;
  align-items: end;
  background: var(--green-2);
  color: #fff;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 28, 23, 0.82) 0%,
    rgba(7, 28, 23, 0.38) 55%,
    rgba(7, 28, 23, 0.1)
  );
}
.hero .photo {
  position: absolute;
  inset: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 9vw, 9rem) 0;
}
.hero .eyebrow {
  color: #f1ca83;
}
.hero .display {
  max-width: 10ch;
}
.hero .lead {
  color: #f1ede4;
  margin: 1.5rem 0 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero .button--light {
  color: #fff;
  border-color: #fff;
}
.hero .button--light:hover {
  color: var(--green);
}
.address-chip {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #fff8ed;
}
.usps {
  background: var(--green);
  color: #fff;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp {
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.usp b {
  color: #f1c66f;
  font-size: 1.3rem;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.photo-frame {
  aspect-ratio: 4/3;
  background: var(--paper);
  overflow: hidden;
}
.photo-frame img {
  filter: saturate(0.9);
}
.link-arrow {
  display: inline-flex;
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 1px solid currentColor;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.category {
  background: var(--cream);
  padding: 1.1rem;
  min-height: 175px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  color: #fff;
}
.category img {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: 0.4s;
}
.category:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}
.category strong {
  position: relative;
  font:
    1.35rem Georgia,
    serif;
}
.offers {
  background: var(--paper);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.offer {
  background: var(--cream);
  padding: 1rem;
  border-top: 3px solid var(--red);
}
.offer-img {
  height: 175px;
  background: #e9ddca;
  margin: -1rem -1rem 1rem;
}
.badge {
  display: inline-block;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer h3 {
  font:
    1.25rem Georgia,
    serif;
  margin: 0.3rem 0;
}
.old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.82rem;
}
.price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green);
}
.note {
  font-size: 0.76rem;
  color: var(--muted);
}
.pizzeria {
  background: var(--green-2);
  color: #fff;
}
.pizzeria .lead {
  color: #e2eee7;
}
.pizzeria .eyebrow {
  color: #efc36e;
}
.pizzeria-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}
.pizza-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
}
.pizza-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.pizza-row h3 {
  font:
    1.1rem Georgia,
    serif;
  margin: 0;
}
.pizza-row p {
  margin: 0.2rem 0 0;
  color: #ccdad4;
  font-size: 0.88rem;
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}
.editorial .photo-frame:first-child {
  margin-top: 5rem;
}
.brands {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand {
  width: 25%;
  padding: 1.4rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font:
    italic 1.15rem Georgia,
    serif;
  color: #6b756f;
}
.instagram {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.instagram a {
  aspect-ratio: 1;
  background: var(--paper);
  overflow: hidden;
}
.location {
  background: var(--paper);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.hours {
  border-top: 1px solid var(--line);
  margin: 1.5rem 0;
}
.hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.map {
  background: var(--green);
  min-height: 350px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.map span {
  font:
    3rem Georgia,
    serif;
  color: #eec674;
}
.footer {
  padding: 4rem 0 6rem;
  background: var(--green-2);
  color: #e8eee9;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.footer h3 {
  font:
    700 0.78rem Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e9c57a;
}
.footer a {
  display: block;
  margin: 0.35rem 0;
  color: #d4ded8;
  font-size: 0.9rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  color: #a9b8b0;
}
.page-hero {
  background: var(--green);
  color: #fff;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.page-hero .lead {
  color: #d9e8e1;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}
.menu-item {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.menu-item h3 {
  font:
    1.2rem Georgia,
    serif;
  margin: 0;
}
.menu-item p {
  grid-column: 1/2;
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.menu-item b {
  color: var(--red);
}
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter {
  border: 1px solid var(--green);
  background: none;
  padding: 0.55rem 0.8rem;
  font: inherit;
  cursor: pointer;
}
.filter.active,
.filter:hover {
  background: var(--green);
  color: #fff;
}
.form {
  max-width: 720px;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #aaa;
  background: #fffdf8;
  padding: 0.8rem;
  font: inherit;
}
.field textarea {
  min-height: 150px;
}
.field input:focus,
.field textarea:focus {
  outline: 3px solid #e9c879;
  outline-offset: 1px;
}
.form-message {
  margin-top: 1rem;
  font-weight: 700;
  min-height: 1.5rem;
}
.button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.bottom-actions {
  display: none;
}
:focus-visible {
  outline: 3px solid #d9a652;
  outline-offset: 3px;
}
@media (max-width: 850px) {
  .menu {
    display: block;
  }
  .nav {
    position: absolute;
    display: none;
    top: 77px;
    left: 0;
    right: 0;
    padding: 1.4rem 1.25rem 1.8rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .nav .button {
    margin-top: 0.3rem;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp:nth-child(2) {
    border-right: 0;
  }
  .intro,
  .pizzeria-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorial {
    grid-template-columns: 1fr;
  }
  .editorial .photo-frame:first-child {
    margin-top: 0;
  }
  .brand {
    width: 50%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-actions {
    position: fixed;
    z-index: 20;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .bottom-actions a {
    width: 50%;
    min-height: 53px;
    display: grid;
    place-items: center;
    font-size: 0.84rem;
    font-weight: 800;
  }
  .bottom-actions a + a {
    background: var(--green);
    color: #fff;
  }
  .footer {
    padding-bottom: 7rem;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }
  .top {
    font-size: 0.68rem;
  }
  .hero {
    min-height: 620px;
  }
  .hero .container {
    padding-bottom: 4rem;
  }
  .section-head {
    display: block;
  }
  .section-head .button {
    margin-top: 1rem;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .offer-img {
    height: 205px;
  }
  .usp {
    font-size: 0.78rem;
  }
  .pizzeria {
    padding-bottom: 5rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .instagram {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 4rem 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
