:root {
  --ink: #241713;
  --paper: #fffaf1;
  --cream: #f4eadb;
  --stone: #d8c7b0;
  --wine: #8f231d;
  --wine-dark: #5f1713;
  --gold: #b98a46;
  --muted: #6f5f51;
  --charcoal: #171311;
  --line: rgba(36, 23, 19, 0.14);
  --shadow: 0 24px 65px rgba(42, 24, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: 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: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.order-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  background: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-actions a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 76px);
  color: #fff;
  background: rgba(23, 19, 17, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.brand strong,
.footer-brand {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 92vh;
  padding: 172px clamp(22px, 6vw, 88px) 62px;
  overflow: hidden;
  color: #fff;
}

.page-hero {
  min-height: 58vh;
  align-items: end;
}

.compact-hero {
  min-height: 520px;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 11, 9, 0.86), rgba(16, 11, 9, 0.56) 48%, rgba(16, 11, 9, 0.18)),
    linear-gradient(0deg, rgba(16, 11, 9, 0.62), rgba(16, 11, 9, 0.08) 56%);
}

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

.hero-content,
.page-hero-content {
  align-self: end;
  max-width: 800px;
}

.home-hero {
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 980px;
  font-size: clamp(4.8rem, 11vw, 9.6rem);
  text-transform: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.hero-copy,
.page-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.home-hero .hero-copy {
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--wine);
}

.button.secondary {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.hero-actions,
.center-action,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-grid,
.feature-band,
.content-section,
.gallery,
.menu-section {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 88px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.intro-copy,
.section-heading p,
.events-copy p,
.card p,
.category-card p,
.menu-item p,
.job-card p,
.contact-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 88px);
  background: #fff;
}

.owner-image {
  position: relative;
}

.owner-image::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.owner-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.owner-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.feature-band,
.menu-section:nth-of-type(even),
.content-section.alt {
  background: var(--cream);
}

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

.dish-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.dish-card span {
  color: var(--wine);
  font-weight: 900;
}

.dish-card a {
  color: var(--ink);
  font-weight: 900;
}

.center-action {
  justify-content: center;
  margin-top: 36px;
}

.ordering {
  color: #fff;
  background:
    linear-gradient(rgba(23, 19, 17, 0.86), rgba(23, 19, 17, 0.86)),
    url("assets/gallery-seafood-fradiavlo-pizza.png") center/cover;
}

.ordering h2 {
  max-width: 690px;
}

.ordering p {
  color: rgba(255, 255, 255, 0.78);
}

.order-options {
  display: grid;
  gap: 12px;
}

.order-options a {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-options a::after {
  content: ">";
}

.order-widget {
  overflow: hidden;
  background: rgba(19, 15, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.order-tabs {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.order-tab {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.order-tab.active {
  background: #4269aa;
  border-color: #4269aa;
}

.order-platforms {
  display: grid;
}

.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.platform-card:last-child {
  border-bottom: 0;
}

.platform-card::after {
  content: ">";
  position: absolute;
  right: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.8rem;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.platform-logo {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.platform-logo.slice {
  color: #171311;
  background: #fed236;
}

.platform-logo.seamless {
  background: #e2211c;
}

.platform-logo.grubhub {
  background: #ff5a00;
}

.platform-logo.menufy {
  background: #2fa489;
}

.platform-logo.direct {
  background: #6a6a6a;
}

.platform-card strong {
  display: block;
  font-size: 1.06rem;
}

.platform-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.order-page-section {
  background:
    linear-gradient(rgba(23, 19, 17, 0.9), rgba(23, 19, 17, 0.9)),
    url("assets/gallery-heart-pizza.png") center/cover;
}

.order-landing {
  min-height: 100svh;
  padding-top: 190px;
  align-items: center;
}

.order-landing h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  text-transform: none;
}

.order-landing .order-widget {
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

.order-landing .platform-card {
  min-height: 118px;
  padding: 24px 58px 24px 22px;
}

.events-section,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 88px);
  background: var(--paper);
}

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

.events-gallery img,
.split-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.events-gallery img:nth-child(2),
.events-gallery img:nth-child(3) {
  transform: translateY(28px);
}

.category-grid,
.card-grid,
.job-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.card,
.job-card,
.contact-card,
.menu-item {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(42, 24, 15, 0.08);
}

.category-card span,
.card span,
.menu-item span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.cta-band {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 88px);
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(23, 19, 17, 0.84), rgba(23, 19, 17, 0.84)),
    url("assets/gallery-bar-area.png") center/cover;
}

.cta-band p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.reservation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px clamp(22px, 6vw, 88px);
  color: #fff;
  background: var(--wine);
}

.reservation-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.reservation-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.menu-tools {
  position: sticky;
  top: 126px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px clamp(22px, 6vw, 88px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.menu-search-wrap {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-search {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  max-height: 148px;
  overflow: auto;
  gap: 9px;
  padding-right: 4px;
}

.filter-button {
  min-height: 42px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.menu-results {
  background: var(--paper);
}

.seo-keywords {
  padding: 32px clamp(22px, 6vw, 88px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.seo-keywords h2 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
}

.seo-keywords p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
}

.menu-section {
  scroll-margin-top: 130px;
}

.menu-category-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-category-header p {
  max-width: 520px;
  color: var(--muted);
}

.menu-item {
  display: grid;
  gap: 8px;
  min-height: 164px;
}

.menu-item header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.menu-item .price {
  color: var(--wine);
  font-weight: 900;
  white-space: nowrap;
}

.best-seller {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 8px;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.simple-order-widget .order-platforms {
  gap: 14px;
}

.featured-platform {
  min-height: 118px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-empty {
  display: none;
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

.menu-empty.is-visible {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 265px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.footer {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr 1fr;
  gap: 32px;
  padding: 58px clamp(22px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer p,
.footer address {
  margin-bottom: 8px;
  font-style: normal;
}

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

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.75rem;
}

.footer-actions {
  align-content: start;
}

.event-popup {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 40;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  width: min(520px, calc(100vw - 28px));
  overflow: hidden;
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid rgba(185, 138, 70, 0.45);
  box-shadow: 0 24px 65px rgba(23, 19, 17, 0.28);
}

.event-popup img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.event-popup-copy {
  padding: 22px 22px 20px;
}

.event-popup-copy .eyebrow {
  margin-bottom: 8px;
}

.event-popup-copy h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.event-popup-copy p:not(.eyebrow) {
  margin-bottom: 16px;
  color: var(--muted);
}

.event-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: rgba(23, 19, 17, 0.86);
  border: 0;
  border-radius: 50%;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.catering-group {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(42, 24, 15, 0.08);
}

.tray-list {
  display: grid;
}

.tray-list p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px dotted rgba(36, 23, 19, 0.24);
}

.tray-list p:last-child {
  border-bottom: 0;
}

.tray-list strong {
  color: var(--wine);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .category-grid,
  .card-grid,
  .job-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    display: none;
    min-width: 230px;
    padding: 18px;
    background: var(--charcoal);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .section-grid,
  .owner-section,
  .events-section,
  .split-feature,
  .reservation-band,
  .footer,
  .menu-tools {
    grid-template-columns: 1fr;
  }

  .reservation-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .page-hero {
    padding-top: 170px;
  }

  .order-landing {
    align-items: start;
    padding-top: 168px;
  }

  .order-landing .order-widget {
    justify-self: stretch;
    max-width: none;
  }

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

@media (max-width: 640px) {
  .order-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .navbar {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .page-hero {
    min-height: 540px;
  }

  .order-landing {
    min-height: 100svh;
    padding: 150px 22px 42px;
    gap: 22px;
  }

  .order-landing-copy {
    order: 2;
  }

  .order-landing .order-widget {
    order: 1;
  }

  .order-landing h1 {
    margin-bottom: 12px;
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }

  .order-landing .page-copy {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .order-landing .platform-card {
    min-height: 112px;
    padding: 22px 54px 22px 18px;
  }

  h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.25rem);
    overflow-wrap: break-word;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .category-grid,
  .card-grid,
  .job-grid,
  .contact-grid,
  .menu-grid,
  .events-gallery,
  .catering-menu {
    grid-template-columns: 1fr;
  }

  .events-gallery img:nth-child(2),
  .events-gallery img:nth-child(3) {
    transform: none;
  }

  .menu-category-header {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .footer-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .event-popup {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 96px minmax(0, 1fr);
    width: auto;
  }

  .event-popup img {
    min-height: 170px;
  }

  .event-popup-copy {
    padding: 18px 16px 16px;
  }

  .event-popup-copy h2 {
    font-size: 1.42rem;
  }

  .event-popup-copy p:not(.eyebrow) {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .event-popup-copy .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.68rem;
  }
}
