/* ═══════════════════════════════════════════════════════════
   THE ROSE VILLA RESTAURANT — MASTER STYLESHEET
   Cinematic · Candlelit · Old-World Luxury
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --ink:        #0a0705;
  --charcoal:   #1a1310;
  --rust:       #c4541f;
  --gold:       #d4a843;
  --gold-light: #e8c06a;
  --cream:      #f0e6cc;
  --cream-muted:#b8a98a;
  --burgundy:   #8b3a1e;
  --gold-ghost: rgba(212, 168, 67, 0.07);
  --gold-faint: rgba(212, 168, 67, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --section-pad: 7rem 0;
  --container:   1280px;
  --gap:         2px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }
address { font-style: normal; }

/* ─── GRAIN OVERLAY ─────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-pad {
  padding: var(--section-pad);
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.gold-italic {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-chamfered {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 168, 67, 0.45);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.06);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost--wide {
  margin-top: 2rem;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

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

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(10, 7, 5, 0.97);
  padding: 0.9rem 0;
  border-bottom-color: rgba(212, 168, 67, 0.15);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav-wordmark:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.62rem;
  padding: 0.6rem 1.3rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-menu {
  display: none;
  background: rgba(10, 7, 5, 0.98);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  padding: 1.5rem 2.5rem;
}

.nav-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nav-mobile-menu a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.2s;
}

.nav-mobile-menu a:hover { color: var(--gold); }

.nav-mobile-menu.open { display: block; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* LEFT PANEL */
.hero-left {
  width: 50%;
  background: #000;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(4rem, 7vw, 7rem);
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-top: 0.2rem;
}

.hero-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(212, 168, 67, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-drop {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.scroll-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* RIGHT PANEL */
.hero-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7) sepia(0.25);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(0,0,0,0.85) 0%, transparent 60%),
              linear-gradient(to right, rgba(0,0,0,0.9) 0%, transparent 35%);
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--burgundy);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 230, 204, 0.85);
}

.marquee-dot {
  color: rgba(240, 230, 204, 0.5) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   HERITAGE / STORY
═══════════════════════════════════════════════════════════ */
.heritage {
  background: var(--ink);
  position: relative;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* STAT BAR */
.stat-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(212, 168, 67, 0.2);
  flex-shrink: 0;
}

/* PHOTOS */
.heritage-photos {
  position: relative;
  height: 560px;
}

.heritage-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(212, 168, 67, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.heritage-est-tag {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
  z-index: 3;
}

.heritage-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 75%;
  overflow: hidden;
  z-index: 2;
}

.heritage-photo-main img {
  filter: brightness(0.7) saturate(0.65) sepia(0.2);
  transition: transform 0.6s ease;
}

.heritage-photo-main:hover img {
  transform: scale(1.03);
}

.heritage-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 48%;
  overflow: hidden;
  z-index: 3;
  outline: 6px solid var(--ink);
}

.heritage-photo-accent img {
  filter: brightness(0.65) saturate(0.6) sepia(0.25);
  transition: transform 0.6s ease;
}

.heritage-photo-accent:hover img {
  transform: scale(1.04);
}

/* ORNAMENTAL DIVIDER */
.ornamental-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.35), transparent);
}

.divider-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.5);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   CUISINE CARDS
═══════════════════════════════════════════════════════════ */
.cuisine {
  background: var(--ink);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.cuisine-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  cursor: pointer;
}

.cuisine-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.cuisine-card-bg img {
  filter: brightness(0.5) saturate(0.6) sepia(0.2);
  transition: filter 0.6s ease;
}

.cuisine-card:hover .cuisine-card-bg {
  transform: scale(1.05);
}

.cuisine-card:hover .cuisine-card-bg img {
  filter: brightness(0.55) saturate(0.7) sepia(0.15);
}

.cuisine-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,7,5,0.95) 0%, rgba(10,7,5,0.3) 50%, transparent 100%);
  z-index: 1;
}

.cuisine-ghost-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.06);
  z-index: 2;
  line-height: 1;
  transition: color 0.4s;
}

.cuisine-card:hover .cuisine-ghost-num {
  color: rgba(255,255,255,0.09);
}

.cuisine-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 2.5rem;
  z-index: 3;
}

.cuisine-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.7rem;
}

.tag-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

.cuisine-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0;
  transition: color 0.3s;
}

.cuisine-card:hover .cuisine-title {
  color: var(--gold-light);
}

.cuisine-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.cuisine-card:hover .cuisine-desc {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

.cuisine-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  z-index: 4;
}

.cuisine-card:hover .cuisine-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translate(0, 0) scale(1.05);
}

.cuisine-card-border {
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.4s ease;
}

.cuisine-card:hover .cuisine-card-border {
  border-color: rgba(212, 168, 67, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg img {
  filter: brightness(0.3) saturate(0.5) sepia(0.3);
}

.quote-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,58,30,0.6) 0%, rgba(10,7,5,0.85) 60%);
  z-index: 1;
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(212, 168, 67, 0.08);
  line-height: 0.6;
  margin-bottom: 1rem;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.quote-attribution {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   PIES SECTION
═══════════════════════════════════════════════════════════ */
.pies {
  background: var(--charcoal);
}

.pies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Photo with corner brackets */
.pies-photo-wrap {
  position: relative;
  height: 580px;
}

.pies-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.65) sepia(0.2);
}

.corner-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
}

.corner-bracket::before,
.corner-bracket::after {
  content: '';
  position: absolute;
  background: var(--gold);
}

.corner-bracket::before { width: 100%; height: 2px; }
.corner-bracket::after  { width: 2px; height: 100%; }

.corner-tl { top: 12px; left: 12px; }
.corner-tl::before { top: 0; left: 0; }
.corner-tl::after  { top: 0; left: 0; }

.corner-tr { top: 12px; right: 12px; }
.corner-tr::before { top: 0; right: 0; left: auto; }
.corner-tr::after  { top: 0; right: 0; left: auto; }

.corner-bl { bottom: 12px; left: 12px; }
.corner-bl::before { bottom: 0; top: auto; left: 0; }
.corner-bl::after  { bottom: 0; top: auto; left: 0; }

.corner-br { bottom: 12px; right: 12px; }
.corner-br::before { bottom: 0; top: auto; right: 0; left: auto; }
.corner-br::after  { bottom: 0; top: auto; right: 0; left: auto; }

.pies-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rust);
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 230, 204, 0.9);
  text-align: center;
  z-index: 3;
}

/* Pie List */
.pie-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.8rem;
}

.pie-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-muted);
  transition: color 0.2s;
}

.pie-item:hover { color: var(--cream); }

.pie-item--wide {
  grid-column: 1 / -1;
}

.pie-bullet {
  color: var(--rust);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CATERING SECTION
═══════════════════════════════════════════════════════════ */
.catering {
  background: var(--ink);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.catering-photo {
  position: relative;
  overflow: hidden;
}

.catering-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.6) sepia(0.25);
  transition: transform 0.6s ease;
}

.catering-photo:hover img {
  transform: scale(1.03);
}

.catering-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink) 100%);
}

.catering-panel {
  background: var(--charcoal);
  border-left: 3px solid var(--rust);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catering-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin: 1.5rem 0 2rem;
  transition: color 0.2s;
}

.catering-phone:hover { color: var(--gold-light); }

.catering-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   VISIT / INFO CARDS
═══════════════════════════════════════════════════════════ */
.visit {
  background: var(--ink);
}

.visit-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.visit-card {
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(212, 168, 67, 0.18);
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.visit-card:hover {
  border-color: rgba(212, 168, 67, 0.45);
  background: rgba(212, 168, 67, 0.025);
}

.visit-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--rust);
  transition: height 0.4s ease;
}

.visit-card:hover .visit-card-accent {
  height: 100%;
}

.visit-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--rust);
  margin-bottom: 1rem;
  line-height: 1;
}

.visit-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.visit-address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.visit-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.2s, letter-spacing 0.2s;
}

.visit-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

.hours-day {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream-muted);
}

.hours-time {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
}

.hours-closed {
  color: rgba(196, 84, 31, 0.7) !important;
}

.visit-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.visit-phone:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.footer-inner {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.footer-est {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
}

.footer-blurb {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(184, 169, 138, 0.6);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(184, 169, 138, 0.6);
  transition: color 0.2s;
}

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

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy,
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 169, 138, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 4rem; }
  .heritage-photos { height: 420px; }
  .pies-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pies-photo-wrap { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4.5rem 0; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { flex-direction: column; min-height: 100vh; }

  .hero-left {
    width: 100%;
    padding: 7rem 1.8rem 3rem;
    position: relative;
    z-index: 2;
    background: transparent;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
  }

  .hero-img {
    filter: brightness(0.25) saturate(0.5) sepia(0.3);
  }

  .hero-vignette {
    background: rgba(10,7,5,0.6);
  }

  .hero-title-line1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-title-line2 { font-size: clamp(1.8rem, 7vw, 3rem); }

  .hero-scroll-indicator { left: 1.8rem; }

  /* Cuisine */
  .cuisine-grid { grid-template-columns: 1fr; }
  .cuisine-card { height: 480px; }

  /* Catering */
  .catering-grid { grid-template-columns: 1fr; }
  .catering-photo { height: 300px; }
  .catering-panel { padding: 3rem 2rem; border-left: none; border-top: 3px solid var(--rust); }

  /* Visit */
  .visit-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Heritage */
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-photos { height: 360px; }
  .heritage-est-tag { display: none; }

  /* Stat bar */
  .stat-bar { gap: 1.2rem; }
  .stat-number { font-size: 2rem; }

  /* Container */
  .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .catering-ctas { flex-direction: column; align-items: flex-start; }
  .pie-list { grid-template-columns: 1fr; }
  .pie-item--wide { grid-column: 1; }
}