

:root {
  --black: #1a1a1a;
  --red: #c0392b;
  --cream: #f5f0e8;
  --tan: #d4a96a;
  --tan-light: #e8ceA0;
  --white: #ffffff;
  --text-muted: #6b6560;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.75rem);
  --space-lg: clamp(1.5rem, 4vw, 3rem);
  --space-xl: clamp(2.5rem, 7vw, 5.5rem);
  --space-2xl: clamp(4rem, 10vw, 8rem);

  --header-h: 68px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

address { font-style: normal; }

.container {
  width: min(90%, 1160px);
  margin-inline: auto;
}


h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 900;
  color: var(--black);
}

h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw + 0.3rem, 1.6rem); font-weight: 700; }

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.section-label.centered { text-align: center; }
.centered { text-align: center; }


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #a93224;
  border-color: #a93224;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--cream);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--black);
  color: var(--cream);
}

.text-link {
  font-weight: 500;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.text-link:hover, .text-link:focus-visible {
  color: #a93224;
  outline: none;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--header-h);
  border-bottom: 2px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(92%, 1200px);
  margin-inline: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}
.logo:hover .logo-main, .logo:focus-visible .logo-main { color: var(--tan); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tan);
  transition: width 0.25s;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 100%; }
.main-nav a:focus-visible { outline: 2px solid var(--tan); outline-offset: 3px; border-radius: 2px; }

.main-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.55em 1.3em;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible { background: #a93224; }

.nav-toggle { display: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--black);
  border-top: 1px solid #333;
}
.mobile-nav a {
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border-bottom: 1px solid #2a2a2a;
  font-weight: 400;
}
.mobile-nav .nav-cta {
  color: var(--white);
  background: var(--red);
  font-weight: 500;
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: #262626; outline: none; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: background 0.2s;
  }
  .nav-toggle:hover span { background: var(--tan); }
  .mobile-nav { display: flex; }
  .site-header { height: auto; }
}


.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.88) 0%,
    rgba(26,26,26,0.65) 55%,
    rgba(26,26,26,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) min(6%, 80px);
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw + 1rem, 8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: var(--space-md);
}
.hero-headline em {
  font-style: italic;
  color: var(--tan);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: rgba(245,240,232,0.85);
  font-weight: 300;
  margin-bottom: var(--space-md);
  max-width: 420px;
}

.hero-modes {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.hero-modes .dot { color: var(--red); font-size: 1.2em; }

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
}

@media (max-width: 480px) {
  .hero-scroll-hint { display: none; }
}


.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 0.7rem 0;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--cream);
  letter-spacing: 0.03em;
}
.marquee-track .sep {
  color: var(--tan-light);
  font-style: normal;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.about {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-body {
  color: #3a3530;
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.about-text .btn { margin-top: var(--space-xs); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.about-img-large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-img-small {
  grid-column: 1 / 2;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-text { order: 1; }
  .about-images { order: 2; }
  .about-img-large { aspect-ratio: 4 / 3; }
}


.services {
  background: var(--black);
  padding: var(--space-2xl) 0;
  color: var(--cream);
}

.services h2 {
  color: var(--cream);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover { border-color: var(--tan); transform: translateY(-4px); }

.service-card--featured {
  background: var(--red);
  border-color: var(--red);
}
.service-card--featured:hover { border-color: var(--tan); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.service-card h3 {
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.75);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-card .text-link {
  color: var(--tan);
  border-color: var(--tan);
  font-size: 0.85rem;
}
.service-card .text-link:hover { color: var(--tan-light); }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}


.menu-preview {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.menu-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
}

.menu-preview-text h2 {
  margin-bottom: var(--space-md);
}

.menu-preview-text p {
  color: #3a3530;
  max-width: 400px;
  margin-bottom: var(--space-lg);
}

.menu-preview-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.mp-photo { border-radius: var(--radius-md); overflow: hidden; }
.mp-photo--tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 5;
}
.mp-photo--short {
  grid-column: 2 / 3;
  aspect-ratio: 4 / 3;
}

@media (max-width: 860px) {
  .menu-preview-inner { grid-template-columns: 1fr; }
  .mp-photo--tall { aspect-ratio: 4 / 3; }
}


.instagram {
  background: var(--black);
  padding: var(--space-2xl) 0;
}

.instagram h2 {
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.insta-handle {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.insta-handle a {
  color: var(--tan);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.insta-handle a:hover { color: var(--tan-light); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.6rem;
}

.insta-cell {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #2a2a2a;
}
.insta-cell img { transition: transform 0.35s; }
.insta-cell:hover img { transform: scale(1.04); }

.insta-cell--wide {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  aspect-ratio: 2 / 1;
}

@media (max-width: 720px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-cell--wide {
    grid-column: 1 / 3;
  }
}


.visit {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.visit-info h2 { margin-bottom: var(--space-md); }

.visit-address {
  font-size: 1rem;
  color: #3a3530;
  margin-bottom: var(--space-xs);
}

.hours-table {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.12);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.hour-row span:first-child { font-weight: 500; }
.hour-row .closed {
  color: var(--text-muted);
  font-style: italic;
}

.visit-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,26,0.15);
}

@media (max-width: 860px) {
  .visit-inner { grid-template-columns: 1fr; }
  .visit-photo { aspect-ratio: 4 / 3; }
}


.site-footer {
  background: var(--black);
  color: var(--cream);
  padding-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid #333;
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  display: block;
}
.footer-brand .logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: var(--space-sm);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--tan);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus-visible {
  color: var(--tan);
  outline: none;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.75);
  margin-bottom: 0.4rem;
}
.footer-contact a {
  color: var(--tan);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--tan-light); }

.footer-base {
  text-align: center;
  padding: var(--space-md);
}
.footer-base p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}




.menu-hero {
  position: relative;
  min-height: clamp(300px, 44vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
}
.menu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.2) 100%
  );
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.menu-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw + 0.5rem, 6.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: var(--space-sm);
}

.menu-hero-sub {
  color: rgba(245,240,232,0.8);
  font-size: clamp(0.95rem, 1.4vw + 0.2rem, 1.15rem);
  max-width: 520px;
  margin-bottom: var(--space-md);
}

.menu-legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.04em;
}

.legend-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.legend-v  { background: #3a7d44; color: #fff; }
.legend-ve { background: #5a9c60; color: #fff; }
.legend-h  { background: var(--tan); color: var(--black); }


.menu-tabs-bar {
  background: var(--black);
  border-bottom: 2px solid #2a2a2a;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}

.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -2px;
}
.menu-tab:hover,
.menu-tab:focus-visible {
  color: var(--tan);
  border-bottom-color: var(--tan);
  outline: none;
}


.menu-body {
  background: var(--cream);
}

.menu-section {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.menu-section--dark {
  background: var(--black);
}
.menu-section--tan {
  background: #ede4d3;
}

.menu-section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-xl);
}
.menu-section-header--light h2 {
  color: var(--cream);
}
.menu-section-header--light .section-label {
  color: var(--tan);
}

.menu-section-note {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  max-width: 440px;
  margin-top: var(--space-sm);
  line-height: 1.5;
}

.menu-section-photo {
  width: clamp(120px, 18vw, 200px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(26,26,26,0.18);
}

@media (max-width: 560px) {
  .menu-section-header {
    grid-template-columns: 1fr;
  }
  .menu-section-photo {
    width: 100%;
    aspect-ratio: 16 / 7;
  }
}


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

.menu-item {
  padding: var(--space-md) var(--space-sm);
  border-bottom: 1px solid rgba(26,26,26,0.1);
  transition: background 0.2s;
}
.menu-item:nth-child(odd) {
  border-right: 1px solid rgba(26,26,26,0.1);
  padding-right: var(--space-md);
}
.menu-item:nth-child(even) {
  padding-left: var(--space-md);
}
.menu-item:hover {
  background: rgba(212,169,106,0.08);
}

.menu-item--dark {
  border-bottom-color: rgba(245,240,232,0.08);
}
.menu-item--dark:nth-child(odd) {
  border-right-color: rgba(245,240,232,0.08);
}
.menu-item--dark:hover {
  background: rgba(245,240,232,0.04);
}

.menu-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.35rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.1vw + 0.3rem, 1.1rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-item--dark .menu-item-name {
  color: var(--cream);
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item--dark .menu-item-price {
  color: var(--tan);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.menu-item--dark .menu-item-desc {
  color: rgba(245,240,232,0.55);
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .menu-item:nth-child(even) {
    padding-left: 0;
  }
}


.pizza-category-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(212,169,106,0.3);
  margin-bottom: 0;
}
.pizza-category-label--spaced {
  margin-top: var(--space-xl);
}


.drinks-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-md);
}

.drinks-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  border-bottom: 2px solid var(--tan);
  padding-bottom: 0.4rem;
  margin-bottom: var(--space-sm);
}
.drinks-col-title--spaced {
  margin-top: var(--space-lg);
}

.drinks-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drinks-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  font-size: 0.88rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  color: #3a3530;
}
.drinks-name { flex: 1; }
.drinks-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .drinks-cols {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}


.menu-cta-bar {
  background: var(--red);
  padding: var(--space-xl) 0;
}

.menu-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.menu-cta-text h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.8rem);
  margin-bottom: var(--space-xs);
}
.menu-cta-text p {
  color: rgba(245,240,232,0.82);
  font-size: 0.95rem;
  max-width: 440px;
}

.menu-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.menu-cta-actions .btn-primary {
  background: var(--cream);
  color: var(--red);
  border-color: var(--cream);
}
.menu-cta-actions .btn-primary:hover,
.menu-cta-actions .btn-primary:focus-visible {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

@media (max-width: 720px) {
  .menu-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}




.about-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.2) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
  padding-top: var(--space-xl);
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw + 0.5rem, 6.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: var(--space-md);
}
.about-hero-headline em {
  font-style: italic;
  color: var(--tan);
}

.about-hero-sub {
  font-size: clamp(1rem, 1.4vw + 0.3rem, 1.2rem);
  color: rgba(245,240,232,0.85);
  font-weight: 300;
  max-width: 500px;
}


.story-origin {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.story-origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-origin-text h2 {
  margin-bottom: var(--space-md);
}

.story-origin-text p {
  color: #3a3530;
  max-width: 500px;
  margin-bottom: var(--space-md);
}

.story-origin-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,26,26,0.14);
}

@media (max-width: 860px) {
  .story-origin-inner {
    grid-template-columns: 1fr;
  }
  .story-origin-photo {
    aspect-ratio: 4 / 3;
  }
}


.story-oven {
  background: var(--black);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.story-oven-inner {
  width: min(90%, 1160px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-oven-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-oven-text p {
  color: rgba(245,240,232,0.78);
  max-width: 460px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.story-oven-text h2 {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.story-oven-text .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
  margin-top: var(--space-xs);
}
.story-oven-text .btn-outline:hover,
.story-oven-text .btn-outline:focus-visible {
  background: var(--cream);
  color: var(--black);
}

@media (max-width: 860px) {
  .story-oven-inner {
    grid-template-columns: 1fr;
  }
  .story-oven-photo {
    aspect-ratio: 4 / 3;
  }
}


.story-values {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.story-values h2 {
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-inline: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  padding: var(--space-lg) var(--space-md);
  border-top: 3px solid var(--red);
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,26,0.1);
}

.value-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--tan);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-item h3 {
  color: var(--black);
  margin-bottom: var(--space-xs);
  font-size: 1.05rem;
}

.value-item p {
  font-size: 0.875rem;
  color: #4a453f;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}


.story-gallery {
  background: var(--black);
  padding: var(--space-xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.6rem;
}

.gallery-cell {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #2a2a2a;
}
.gallery-cell img { transition: transform 0.35s; }
.gallery-cell:hover img { transform: scale(1.04); }

.gallery-cell--tall {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-cell--wide {
  grid-column: 2 / 4;
  aspect-ratio: 2 / 1;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-cell--tall {
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }
  .gallery-cell--wide {
    grid-column: 1 / 3;
    aspect-ratio: 2 / 1;
  }
}


.story-neighbourhood {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.neighbourhood-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.neighbourhood-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,26,26,0.12);
}

.neighbourhood-text h2 {
  margin-bottom: var(--space-md);
}

.neighbourhood-text p {
  color: #3a3530;
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.neighbourhood-modes {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.neighbourhood-modes .dot {
  color: var(--red);
  font-size: 1.2em;
}

.neighbourhood-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .neighbourhood-inner {
    grid-template-columns: 1fr;
  }
  .neighbourhood-photo {
    aspect-ratio: 4 / 3;
  }
}



.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.55) 55%,
    rgba(26,26,26,0.2) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.contact-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw + 0.5rem, 6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}
.contact-hero-headline em {
  font-style: italic;
  color: var(--tan);
}

.contact-hero-sub {
  font-size: clamp(0.95rem, 1.3vw + 0.2rem, 1.15rem);
  color: rgba(245,240,232,0.8);
  font-weight: 300;
  max-width: 480px;
}

.contact-main {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-intro {
  color: #3a3530;
  max-width: 460px;
  margin-bottom: var(--space-lg);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--black);
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--tan);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,26,26,0.08);
  outline: none;
}

.contact-card--featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.contact-card--featured h3 { color: var(--white); }
.contact-card--featured p { color: rgba(255,255,255,0.8); }
.contact-card--featured .contact-card-detail { color: var(--tan-light); }
.contact-card--featured:hover { border-color: #a93224; background: #a93224; }

.contact-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.875rem;
  color: #5a5550;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.contact-card-detail {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.01em;
}

.hours-card {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.hours-card .section-label {
  color: var(--tan);
}

.hours-title {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw + 0.3rem, 2.4rem);
  margin-bottom: var(--space-lg);
}

.hours-card .hours-table {
  border-top-color: rgba(245,240,232,0.15);
}

.hours-card .hour-row {
  border-bottom-color: rgba(245,240,232,0.08);
  color: rgba(245,240,232,0.85);
}

.hours-card .hour-row span:first-child {
  color: var(--cream);
}

.hours-card .closed {
  color: var(--text-muted);
}

.hours-note {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.5;
  margin-top: var(--space-md);
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: var(--space-md);
}

.contact-map-section {
  background: var(--cream);
  padding: 0 0 var(--space-2xl);
}

.map-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,26,0.12);
}

.map-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.map-photo:hover img { transform: scale(1.03); }

.map-details {
  background: var(--black);
  color: var(--cream);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.map-details .section-label { color: var(--tan); }

.map-details h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.6rem);
  margin: 0;
}

.map-details p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  max-width: 380px;
  line-height: 1.6;
}

.map-modes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.map-mode {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.8);
}

.map-mode-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-cta-strip {
  background: var(--red);
  padding: var(--space-xl) 0;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.contact-cta-text h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.5vw + 0.3rem, 3rem);
  margin-bottom: 0.25rem;
}

.contact-cta-text p {
  color: rgba(245,240,232,0.8);
  font-size: 1rem;
}

.contact-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hours-card {
    position: static;
  }
  .map-block {
    grid-template-columns: 1fr;
  }
  .map-photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-actions {
    justify-content: center;
  }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
