/* ============================================================
   MONTI PRIMO RISTORANTE
   Editorial vintage trattoria — parchment, oxblood, sepia.
   ============================================================ */

:root {
  /* Palette */
  --parchment:      #f1e3c3;
  --parchment-soft: #f6ebd1;
  --parchment-deep: #e8d4ad;
  --cream:          #faf3e1;
  --ink:            #2a1c0f;
  --ink-soft:       #5a4528;
  --ink-mute:       #816641;
  --wine:           #7a1818;
  --wine-deep:      #5a0e0e;
  --gold:           #a98a3f;
  --gold-soft:      #c8a958;
  --olive:          #4a542b;

  /* Type */
  --serif-display: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --serif-body:    "EB Garamond", "Garamond", "Times New Roman", serif;
  --script:        "Pinyon Script", "Snell Roundhand", cursive;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

}

img, svg { display: block; max-width: 100%; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0 0 1em; }

/* Icons */
.ico { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; margin-right: 0.5em; fill: currentColor; }
.ico-big { width: 22px; height: 22px; fill: currentColor; display: inline-block; }

/* Reveal animation — progressive: only hide if JS is active */
.reveal { transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility {
  background: #0a0603;
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(200,169,88,0.18);
}
.utility-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.utility-item {
  color: rgba(250,243,225,0.85);
  display: inline-flex;
  align-items: center;
  font-family: var(--serif-body);
  font-size: 13.5px;
}
.utility-phone {
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}
.utility-phone:hover { color: var(--cream); }
.utility-divider { color: var(--gold); opacity: 0.5; }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,243,225,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px var(--gutter);
  /* Italian-flag pinstripe — stacked inside nav so they show even when sticky-pinned to viewport top */
  border-top: 2px solid #008C45;        /* green top */
  border-bottom: 2px solid #CD212A;     /* red bottom */
  box-shadow:
    inset 0 1px 0 #CD212A,              /* red 1px below green (inside) */
    inset 0 -1px 0 #008C45,             /* green 1px above red (inside) */
    0 4px 12px -8px rgba(42,28,15,0.18);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-brand img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 920px) {
  .nav-brand img { height: 40px; }
}

/* White-silhouette logo variant — for use on dark backgrounds */
.logo-light { filter: brightness(0) invert(1) opacity(0.92); }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--serif-body);
  font-size: 14.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--wine);
  color: var(--cream);
  padding: 11px 24px;
  font-family: var(--serif-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--wine);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.nav-cta-arrow { transition: transform 0.3s var(--ease); }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 42px;
  height: 36px;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  width: 18px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--parchment);
  border-bottom: 1px solid rgba(42,28,15,0.12);
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--serif-display);
  font-size: 22px;
  box-shadow: 0 10px 30px -10px rgba(42,28,15,0.2);
}
.mobile-menu[hidden] { display: none; }
@media (min-width: 921px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dotted rgba(42,28,15,0.15);
}
.mobile-menu .mobile-cta {
  background: var(--wine);
  color: var(--parchment-soft);
  text-align: center;
  padding: 14px;
  border-bottom: none;
  margin-top: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 16px;
}
.mobile-menu .mobile-call {
  text-align: center;
  border: 1px solid var(--ink);
  padding: 12px;
  border-bottom: 1px solid var(--ink);
  letter-spacing: 0.1em;
  font-size: 18px;
}

@media (max-width: 920px) {
  .nav { grid-template-columns: 1fr auto auto; gap: 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { padding: 8px 16px; font-size: 14px; letter-spacing: 0.12em; }
}


/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head.dark {
  color: var(--cream);
}

.kicker {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kicker.dark { color: var(--gold-soft); }

.section-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  color: var(--wine);
  font-family: var(--serif-display);
  font-weight: 500;
}

.section-sub {
  font-family: var(--serif-body);
  font-size: 18px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
}

.head-flourish {
  width: 240px;
  margin: 26px auto 0;
  color: var(--gold);
}
.head-flourish svg { width: 100%; height: 24px; }


/* ============================================================
   HERO — dark cinematic, upscale Italian
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--gutter) clamp(80px, 12vw, 160px);
  overflow: hidden;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d0905;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) brightness(0.55) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.25), rgba(0,0,0,0.78) 75%),
    linear-gradient(180deg, rgba(13,9,5,0.6) 0%, rgba(13,9,5,0.45) 40%, rgba(13,9,5,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

/* ===== Villa hero — light parchment + blended Tuscan-village illustration ===== */
.hero-villa {
  background:
    radial-gradient(ellipse 120% 80% at 50% -8%, var(--cream), rgba(250,243,225,0) 60%),
    radial-gradient(ellipse at 50% 30%, rgba(168,138,79,0.10), transparent 60%),
    linear-gradient(180deg, var(--parchment-soft), var(--parchment) 55%, var(--parchment-deep));
  color: var(--ink);
}
.hero-scape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(180deg, #000 48%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 48%, transparent 100%);
}
.hero-scape img { width: 100%; height: auto; display: block; }
@media (max-width: 640px) { .hero-scape { opacity: 0.55; } }
.hero-villa .hero-eyebrow { color: var(--wine); }
.hero-villa .hero-title-text { color: var(--ink); }
.hero-villa .ht-primo { color: var(--wine); }
.hero-villa .hero-script { color: var(--wine); }
.hero-villa .hero-tag { color: var(--ink-soft); }
.hero-villa .hero-call { color: var(--ink-mute); }
.hero-villa .hero-call a { color: var(--wine); border-bottom-color: rgba(122,24,24,0.35); }
.hero-villa .hero-call a:hover { color: var(--ink); border-color: var(--ink); }
.hero-villa .hero-scroll { border-color: rgba(122,24,24,0.4); }
.hero-villa .hero-scroll span { background: var(--wine); }

/* Polaroid snaps — scattered like photos thrown on a desk */
.hero-snap {
  margin: 0;
  background: var(--cream);
  padding: 11px 11px 12px;
  border: 1px solid rgba(42,28,15,0.14);
  box-shadow:
    0 1px 0 rgba(42,28,15,0.08),
    0 22px 40px -22px rgba(42,28,15,0.5),
    0 44px 60px -44px rgba(42,28,15,0.3);
  transition: transform 0.5s var(--ease);
}
.hero-snap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: sepia(0.08) contrast(1.02);
}
.hero-snap figcaption {
  margin-top: 9px;
  text-align: center;
  font-family: var(--script);
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1;
}
/* Mobile/tablet: a little scattered row under the text */
.hero-snaps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  margin: 40px auto 0;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.hero-snaps .hero-snap { flex: 1; max-width: 240px; }
.hero-snaps-left { margin-top: 48px; }
.hero-snaps-left .hero-snap:first-child  { transform: rotate(-3deg) translateY(6px); }
.hero-snaps-left .hero-snap:last-child   { transform: rotate(2.5deg) translateY(-4px); }
.hero-snaps-right .hero-snap:first-child { transform: rotate(2deg) translateY(-3px); }
.hero-snaps-right .hero-snap:last-child  { transform: rotate(-3.5deg) translateY(7px); }
/* Desktop: pinned clusters either side of the title, overlapping casually */
@media (min-width: 1100px) {
  .hero-snaps {
    position: absolute;
    display: block;
    margin: 0;
    width: clamp(215px, 18vw, 290px);
    max-width: none;
  }
  .hero-snaps .hero-snap { max-width: none; }
  .hero-snaps-right {
    top: clamp(56px, 7vw, 110px);
    right: clamp(20px, 3.5vw, 72px);
  }
  .hero-snaps-left {
    top: clamp(96px, 10vw, 160px);
    left: clamp(20px, 3.5vw, 72px);
  }
  .hero-snaps-right .hero-snap:first-child { transform: rotate(2.5deg); }
  .hero-snaps-right .hero-snap:last-child  { transform: rotate(-4deg) translate(7%, -6%); }
  .hero-snaps-left .hero-snap:first-child  { transform: rotate(-3deg); }
  .hero-snaps-left .hero-snap:last-child   { transform: rotate(3.5deg) translate(-6%, -7%); }
  .hero-snap:hover { transform: rotate(0) scale(1.03); z-index: 2; position: relative; }
}

.hero-eyebrow {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.36em;
  font-size: 12.5px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-text {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 11vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream);
}
.ht-monti { display: block; font-style: normal; }
.ht-primo {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero-ristorante {
  display: none; /* logo image now includes "RISTORANTE" wordmark */
}

.hero-script {
  font-family: var(--script);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--gold-soft);
  line-height: 1;
  margin: 6px 0 22px;
  font-weight: 400;
  transform: rotate(-1.5deg);
}

.hero-tag {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250,243,225,0.82);
  max-width: 580px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-call {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(250,243,225,0.6);
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-call a {
  color: var(--gold-soft);
  font-style: normal;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-bottom: 1px solid rgba(200,169,88,0.4);
  padding-bottom: 2px;
}
.hero-call a:hover { color: var(--cream); border-color: var(--cream); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(200,169,88,0.5);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--gold-soft);
  border-radius: 1px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  61% { transform: translate(-50%, 0); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}



/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--wine);
  color: var(--parchment-soft);
  border-color: var(--wine-deep);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--gold-soft);
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--parchment-soft);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-gold {
  background: var(--gold-soft);
  color: #1a1208;
  border-color: var(--gold-soft);
  font-weight: 500;
}
.btn-gold:hover {
  background: var(--cream);
  color: #1a1208;
  border-color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,243,225,0.6);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-tie {
  width: 13px;
  height: 19px;
  color: currentColor;
}


/* ============================================================
   ORDER (delivery platforms)
   ============================================================ */
.order {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 920px) { .platforms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .platforms { grid-template-columns: 1fr; gap: 14px; } }

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 28px 22px;
  min-height: 180px;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  color: var(--ink);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  box-shadow: 0 1px 0 rgba(42,28,15,0.04), 0 14px 24px -22px rgba(42,28,15,0.3);
}
.platform::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.08);
  pointer-events: none;
  transition: border-color 0.45s var(--ease);
}
.platform:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 1px 0 rgba(42,28,15,0.06), 0 28px 40px -22px rgba(42,28,15,0.35);
}
.platform:hover::before {
  border-color: color-mix(in srgb, var(--brand) 30%, transparent);
}

.platform-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 8px 0 20px;
}
.platform-logo svg {
  max-width: 180px;
  width: 100%;
  height: auto;
  max-height: 50px;
}

.platform-cta {
  font-family: var(--serif-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease);
}
.platform:hover .platform-cta { gap: 14px; }

.order-note {
  text-align: center;
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
}
.order-note a {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* ============================================================
   STORY
   ============================================================ */
.story {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid rgba(42,28,15,0.12);
}
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story-photo { max-width: 480px; margin: 0 auto; }
}

.story-photo .photo-frame {
  position: relative;
  background: var(--cream);
  padding: 16px 16px 56px;
  box-shadow:
    0 1px 0 rgba(42,28,15,0.1),
    0 22px 40px -22px rgba(42,28,15,0.5),
    0 50px 70px -45px rgba(42,28,15,0.3);
  transform: rotate(-1.4deg);
  border: 1px solid rgba(42,28,15,0.1);
}
.story-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.18) saturate(1.05) contrast(1.02);
}
.photo-caption {
  position: absolute;
  left: 0; right: 0;
  bottom: 16px;
  text-align: center;
  font-family: var(--script);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}

.story-text {
  padding-top: 8px;
}
.story-text .kicker { text-align: left; margin-bottom: 14px; }
.story-text .section-title { text-align: left; }

.story-text p {
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.story-text em { color: var(--wine); font-style: italic; }
.story-text strong { color: var(--ink); font-weight: 600; }

.dropcap .drop {
  float: left;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 5.2rem;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--wine);
  font-style: italic;
}

.pullquote {
  margin: 36px 0;
  padding: 30px 32px 24px;
  border-left: 3px solid var(--wine);
  background: linear-gradient(90deg, rgba(122,24,24,0.04), transparent);
  position: relative;
}
.pullquote .quote-mark {
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--serif-display);
  font-size: 80px;
  color: var(--wine);
  opacity: 0.4;
  line-height: 1;
}
.pullquote p {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 12px;
}
.pullquote footer {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  font-size: 14px;
}


/* ============================================================
   HERITAGE — parents & Naples Italian
   ============================================================ */
.heritage {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background:
    radial-gradient(ellipse at 70% 0%, rgba(168,138,79,0.10), transparent 55%),
    var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
}
.heritage-head,
.heritage-grid,
.heritage-text {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.heritage-head { text-align: center; margin-bottom: clamp(50px, 7vw, 90px); }
.heritage-head .section-title { margin-bottom: 0; }

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(60px, 7vw, 90px);
  padding: 20px 0;
}
@media (max-width: 820px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 32px; }
}

.poly {
  margin: 0;
  background: var(--cream);
  padding: 14px 14px 12px;
  border: 1px solid rgba(42,28,15,0.16);
  box-shadow:
    0 1px 0 rgba(42,28,15,0.08),
    0 24px 40px -24px rgba(42,28,15,0.5),
    0 50px 60px -45px rgba(42,28,15,0.25);
  position: relative;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.poly::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.poly img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: sepia(0.18) contrast(1.04) brightness(0.99);
}
.poly figcaption {
  margin-top: 12px;
  text-align: center;
  font-family: var(--script);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink-soft);
  padding: 0 4px 4px;
}
.poly:hover { transform: translateY(-6px) rotate(0) !important; }

.poly-1 { transform: rotate(-2.4deg) translateY(8px); }
.poly-2 { transform: rotate(0.8deg) translateY(-14px); z-index: 2; }
.poly-3 { transform: rotate(2deg) translateY(12px); }

@media (max-width: 820px) {
  .poly, .poly-1, .poly-2, .poly-3 { transform: none; }
  .poly img { aspect-ratio: 16 / 12; }
}

.heritage-text {
  max-width: 720px;
  text-align: center;
}
.heritage-text p {
  font-family: var(--serif-body);
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.heritage-text em { color: var(--wine); font-style: italic; }

.heritage-coda {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(122,24,24,0.25);
  font-family: var(--serif-display) !important;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  color: var(--ink) !important;
  line-height: 1.4 !important;
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.dishes {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(122,24,24,0.5), transparent 70%),
    linear-gradient(180deg, #2a1c0f, #1d1308 60%, #2a1c0f);
  color: var(--cream);
}
.dishes .section-title { color: var(--cream); }
.dishes .section-title em { color: var(--gold-soft); }
.dishes .head-flourish { color: var(--gold); }

.dish-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .dish-grid { grid-template-columns: 1fr; gap: 18px; } }

.dish {
  background: linear-gradient(180deg, rgba(250,243,225,0.04), rgba(250,243,225,0.01));
  border: 1px solid rgba(168,138,79,0.35);
  padding: 40px 32px 36px;
  position: relative;
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.dish::before, .dish::after {
  content: '';
  position: absolute;
  left: 32px; right: 32px;
  height: 1px;
  background: rgba(168,138,79,0.25);
}
.dish::before { top: 12px; }
.dish::after { bottom: 12px; }
.dish:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(250,243,225,0.06), rgba(250,243,225,0.02));
}

.dish-photo {
  margin: -40px -32px 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(168,138,79,0.1), rgba(122,24,24,0.15));
  border-bottom: 1px solid rgba(168,138,79,0.25);
}
.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.dish:hover .dish-photo img { transform: scale(1.05); }
.dish-photo.no-photo { display: none; }

.dish-number {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.dish h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.dish-it {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.dish-desc {
  font-family: var(--serif-body);
  color: rgba(250,243,225,0.78);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; gap: 20px; } }

.menu-card {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 34px 32px 30px;
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.08);
  pointer-events: none;
}
.menu-card-wide { grid-column: 1 / -1; }

.menu-card-head {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px dotted rgba(42,28,15,0.25);
}
.menu-card-illus {
  display: block;
  width: clamp(58px, 7vw, 76px);
  height: auto;
  margin: 0 auto 8px;
}
.menu-card h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 32px);
  letter-spacing: 0.01em;
  color: var(--wine);
  margin-bottom: 4px;
}
.menu-card-sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}

.menu-section-label {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--wine);
  text-transform: uppercase;
  text-align: center;
  margin: 14px 0 8px;
}

.menu-list-inline {
  text-align: center;
  font-family: var(--serif-body);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 8px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif-body);
  font-size: 17px;
  color: var(--ink);
}
.menu-list li {
  padding: 8px 0;
  border-bottom: 1px dotted rgba(42,28,15,0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li > span:first-child { font-weight: 500; color: var(--ink); }
.menu-list li > em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
  flex: 1 1 100%;
  margin-top: -2px;
}
.menu-list .li-it { flex: 1 1 100%; }

.menu-list-compact li { padding: 5px 0; border-bottom: none; font-size: 16px; }

.menu-prose {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}

.menu-foot {
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
}
.menu-foot a { font-weight: 500; font-style: normal; letter-spacing: 0.04em; }


/* ============================================================
   THE SPACE
   ============================================================ */
.space {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(42,28,15,0.12);
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 14px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.space-gallery .g {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 8px;
  box-shadow: 0 18px 30px -24px rgba(42,28,15,0.4);
}
.space-gallery .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.space-gallery .g:hover img { transform: scale(1.03); }
.space-gallery .g1 { aspect-ratio: 5 / 4; transform: rotate(-1deg); }
.space-gallery .g2 { aspect-ratio: 4 / 3; transform: translateY(20px); }
.space-gallery .g3 { aspect-ratio: 4 / 5; transform: rotate(1.2deg); }
@media (max-width: 820px) {
  .space-gallery { grid-template-columns: 1fr; gap: 18px; }
  .space-gallery .g { transform: none !important; aspect-ratio: 16 / 10; }
}

.space-content {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .space-content { grid-template-columns: 1fr; } }

.space-text .kicker { text-align: left; }
.space-text .section-title { text-align: left; }
.space-text p {
  font-family: var(--serif-body);
  font-size: 18.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.space-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stat {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.15);
  padding: 28px 18px;
  text-align: center;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(42,28,15,0.08);
  pointer-events: none;
}
.stat-num {
  display: block;
  font-family: var(--serif-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--wine);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--serif-body);
  letter-spacing: 0.15em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink-soft);
}


/* ============================================================
   CATERING PAGE — interior page hero variant + sections
   ============================================================ */
.hero-page { min-height: min(72vh, 680px); padding-bottom: clamp(60px, 8vw, 100px); }
.hero-page .hero-scroll { display: none; }

.cat-types {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .type-grid { grid-template-columns: 1fr; } }

.type {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.type::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.type:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.type-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.type h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--wine);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.type p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cat-how {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(122,24,24,0.4), transparent 70%),
    linear-gradient(180deg, #2a1c0f, #1d1308 60%, #2a1c0f);
  color: var(--cream);
}
.cat-how .section-title { color: var(--cream); }
.cat-how .section-title em { color: var(--gold-soft); }
.cat-how .head-flourish { color: var(--gold); }

.how-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; gap: 18px; } }

.how-step {
  background: linear-gradient(180deg, rgba(250,243,225,0.04), rgba(250,243,225,0.01));
  border: 1px solid rgba(168,138,79,0.35);
  padding: 36px 30px 32px;
  text-align: center;
  position: relative;
}
.how-step::before, .how-step::after {
  content: '';
  position: absolute;
  left: 28px; right: 28px;
  height: 1px;
  background: rgba(168,138,79,0.25);
}
.how-step::before { top: 10px; }
.how-step::after { bottom: 10px; }
.how-step-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.how-step h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--cream);
  margin: 0 0 10px;
}
.how-step p {
  font-family: var(--serif-body);
  color: rgba(250,243,225,0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cat-requirements {
  max-width: var(--container);
  margin: clamp(50px, 6vw, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(168,138,79,0.25);
  border: 1px solid rgba(168,138,79,0.25);
}
@media (max-width: 820px) { .cat-requirements { grid-template-columns: repeat(2, 1fr); } }

.req {
  background: #1d1308;
  padding: 28px 18px;
  text-align: center;
}
.req-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 8px;
}
.req-value {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--cream);
  line-height: 1;
  margin: 0 0 6px;
}
.req-note {
  font-family: var(--serif-body);
  font-size: 13px;
  color: rgba(250,243,225,0.55);
  margin: 0;
}

.cat-menu {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.cat-inquiry {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(80px, 10vw, 130px);
}
.inquiry-card {
  max-width: 980px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(168,138,79,0.25), transparent 60%),
    linear-gradient(180deg, #3a261a, #2a1c0f);
  color: var(--cream);
  padding: clamp(48px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border: 1px solid rgba(168,138,79,0.4);
  text-align: center;
}
.inquiry-card .catering-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 6px 0 16px;
  color: var(--cream);
}
.inquiry-card .catering-sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(250,243,225,0.82);
  max-width: 600px;
  margin: 0 auto 36px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--serif-body);
  font-size: 16px;
  background: rgba(250,243,225,0.06);
  border: 1px solid rgba(168,138,79,0.35);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(250,243,225,0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-soft);
  background: rgba(250,243,225,0.1);
}
.field select option { background: #2a1c0f; color: var(--cream); }
.field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 640px) {
  .inquiry-form { grid-template-columns: 1fr; }
}

.form-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.form-or {
  font-family: var(--serif-body);
  font-style: italic;
  color: rgba(250,243,225,0.7);
  margin: 0;
}
.form-or a {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .form-actions { flex-direction: column; gap: 10px; }
}

/* ============================================================
   PRIVATE EVENTS PAGE
   ============================================================ */
.ev-why {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.why-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.why-inner .kicker { text-align: center; }
.why-inner .section-title { text-align: center; }
.why-lead {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 56px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px clamp(40px, 5vw, 64px);
  text-align: left;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { border-top: 1px solid rgba(122,24,24,0.25); padding-top: 18px; }
.why-item h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--wine);
  margin: 0 0 8px;
}
.why-item p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ── The Private Room showcase ── */
.ev-showcase {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(10px, 3vw, 30px) var(--gutter) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
@media (max-width: 860px) {
  .ev-showcase { grid-template-columns: 1fr; gap: 40px; }
}
.showcase-media {
  position: relative;
  background: var(--cream);
  padding: 14px;
  border: 1px solid rgba(42,28,15,0.16);
  box-shadow:
    0 1px 0 rgba(42,28,15,0.08),
    0 30px 50px -28px rgba(42,28,15,0.5);
}
.showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: sepia(0.12) contrast(1.03);
}
.showcase-badge {
  position: absolute;
  right: -16px;
  bottom: -16px;
  background: var(--wine);
  color: var(--cream);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
  box-shadow: 0 14px 28px -14px rgba(42,28,15,0.7);
  border: 2px solid var(--parchment);
}
.showcase-badge strong {
  display: block;
  font-family: var(--serif-display);
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  color: var(--gold-soft);
}
.showcase-text .kicker { text-align: left; }
.showcase-text .section-title { text-align: left; margin-bottom: 20px; }
.showcase-text > p {
  font-family: var(--serif-body);
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.showcase-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif-body);
  font-size: 16.5px;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid rgba(122,24,24,0.14);
}
.showcase-list li:last-child { border-bottom: 0; }
.showcase-list .ico { width: 18px; height: 18px; color: var(--wine); flex: none; }
.showcase-list strong { color: var(--wine); font-weight: 600; }
.showcase-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.ev-rooms {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(168,138,79,0.18), transparent 60%),
    linear-gradient(180deg, #1d1308, #0f0904 60%, #1d1308);
  color: var(--cream);
}
.ev-rooms .section-title { color: var(--cream); }
.ev-rooms .section-title em { color: var(--gold-soft); }
.ev-rooms .head-flourish { color: var(--gold); }

.room-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .room-grid { grid-template-columns: 1fr; } }

.room {
  background: linear-gradient(180deg, rgba(250,243,225,0.04), rgba(250,243,225,0.01));
  border: 1px solid rgba(168,138,79,0.35);
  padding: 40px 30px 32px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.room:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.room-feature {
  background: linear-gradient(180deg, rgba(200,169,88,0.08), rgba(200,169,88,0.02));
  border-color: var(--gold);
}
.room-tag {
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--gold-soft);
  color: #1a1208;
  padding: 6px 14px;
  font-family: var(--serif-body);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}
.room-cap {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(34px, 4vw, 46px);
  color: var(--gold-soft);
  line-height: 1;
  margin: 0 0 4px;
}
.room-cap span {
  font-style: italic;
  font-size: 0.4em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,243,225,0.55);
  margin-left: 6px;
}
.room h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 32px);
  color: var(--cream);
  margin: 4px 0 14px;
  letter-spacing: -0.01em;
}
.room-desc {
  font-family: var(--serif-body);
  font-style: italic;
  color: rgba(250,243,225,0.78);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.room-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dotted rgba(168,138,79,0.3);
}
.room-features li {
  font-family: var(--serif-body);
  color: rgba(250,243,225,0.85);
  font-size: 15px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(168,138,79,0.3);
  position: relative;
  padding-left: 18px;
}
.room-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.ev-occasions {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42,28,15,0.18);
  border: 1px solid rgba(42,28,15,0.18);
  margin-top: 20px;
}
@media (max-width: 820px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
.occ-grid span {
  background: var(--cream);
  padding: 22px 18px;
  text-align: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink);
  letter-spacing: 0.005em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.occ-grid span:hover { background: var(--wine); color: var(--cream); }

.ev-gallery {
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--container);
  margin: 0 auto;
}
.gal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) { .gal-grid { grid-template-columns: 1fr; } }
.gal {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gal:hover img { transform: scale(1.04); }

.ev-packages {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .pack-grid { grid-template-columns: 1fr; } }

.pack {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.pack::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.pack:hover { transform: translateY(-6px); }

.pack-featured {
  background: linear-gradient(180deg, #2a1c0f, #1d1308);
  color: var(--cream);
  border-color: var(--gold);
  transform: scale(1.03);
  z-index: 2;
}
.pack-featured::before { border-color: rgba(200,169,88,0.25); }
.pack-featured:hover { transform: scale(1.03) translateY(-6px); }

.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-soft);
  color: #1a1208;
  padding: 6px 18px;
  font-family: var(--serif-body);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}

.pack-illus {
  display: block;
  width: clamp(86px, 12vw, 108px);
  height: auto;
  margin: -6px auto 12px;
}
.pack-featured .pack-illus { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.pack-tier {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 14px;
}
.pack-featured .pack-tier { color: var(--gold-soft); }

.pack-price {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(52px, 6vw, 72px);
  color: var(--ink);
  line-height: 1;
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px dotted rgba(42,28,15,0.25);
}
.pack-featured .pack-price { color: var(--cream); border-bottom-color: rgba(200,169,88,0.3); }
.pack-dollar {
  font-size: 0.5em;
  vertical-align: 0.5em;
  margin-right: 2px;
  color: var(--wine);
}
.pack-featured .pack-dollar { color: var(--gold-soft); }
.pack-per {
  font-style: italic;
  font-size: 0.32em;
  color: var(--ink-mute);
  margin-left: 8px;
  letter-spacing: 0.05em;
}
.pack-featured .pack-per { color: rgba(250,243,225,0.55); }

.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.pack-featured .pack-list { color: rgba(250,243,225,0.9); }
.pack-list li {
  padding: 10px 0;
  border-bottom: 1px dotted rgba(42,28,15,0.15);
}
.pack-featured .pack-list li { border-bottom-color: rgba(200,169,88,0.18); }
.pack-list li:last-child { border-bottom: none; }
.pack-list li em {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.pack-featured .pack-list li em { color: rgba(250,243,225,0.6); }

.pack-fine {
  margin-top: 32px;
  text-align: center;
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
}

.ev-close {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
  text-align: center;
}
.close-inner { max-width: 760px; margin: 0 auto; }
.close-inner .section-title em { font-style: italic; color: var(--wine); }
.close-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================================
   GIFT CARDS PAGE
   ============================================================ */
.gc-promo {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--parchment-soft);
  border-bottom: 1px solid rgba(42,28,15,0.12);
}
.promo-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 740px) { .promo-inner { grid-template-columns: 1fr; text-align: center; } }

.promo-badge {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d6b96b, #a98a3f);
  color: #1a1208;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  box-shadow: 0 20px 40px -20px rgba(168,138,79,0.6), inset 0 0 0 3px rgba(255,255,255,0.18);
  position: relative;
}
.promo-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(26,18,8,0.35);
}
@media (max-width: 740px) { .promo-badge { margin: 0 auto; } }
.promo-pct {
  font-style: italic;
  font-size: clamp(46px, 5vw, 60px);
  line-height: 1;
  font-weight: 500;
}
.promo-label {
  font-family: var(--serif-body);
  letter-spacing: 0.3em;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 4px;
}

.promo-text .kicker { margin-bottom: 14px; }
.promo-text .section-title { margin-bottom: 18px; font-size: clamp(2rem, 3.6vw, 2.8rem); }
.promo-text p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.promo-tiers {
  max-width: var(--container);
  margin: clamp(40px, 5vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(168,138,79,0.4);
  border: 1px solid rgba(168,138,79,0.4);
}
@media (max-width: 740px) { .promo-tiers { grid-template-columns: repeat(2, 1fr); } }

.tier {
  background: var(--cream);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--serif-display);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  transition: background 0.3s var(--ease);
}
.tier:hover { background: var(--parchment); }
.tier-spend { font-weight: 500; }
.tier-arrow { color: var(--gold); font-style: italic; }
.tier-bonus { font-style: italic; color: var(--wine); }
.tier-best { background: #2a1c0f; color: var(--cream); }
.tier-best .tier-spend { color: var(--gold-soft); }
.tier-best .tier-arrow { color: var(--gold-soft); }
.tier-best .tier-bonus { color: var(--cream); }
.tier-best:hover { background: #3a261a; }

.gc-buy {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.gc-form { max-width: 920px; margin: 0 auto; }

.gc-amounts {
  border: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.gc-amounts legend {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
  width: 100%;
  text-align: center;
}
@media (max-width: 920px) { .gc-amounts { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .gc-amounts { grid-template-columns: repeat(2, 1fr); } }

.amt {
  position: relative;
  cursor: pointer;
}
.amt input { position: absolute; opacity: 0; pointer-events: none; }
.amt span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  transition: all 0.3s var(--ease);
  text-align: center;
}
.amt span em {
  display: block;
  margin-top: 4px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.amt:hover span { border-color: var(--wine); }
.amt input:checked + span {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.amt input:checked + span em { color: rgba(250,243,225,0.7); }
.amt-popular span em { color: var(--gold); }
.amt-custom span { font-size: clamp(15px, 1.4vw, 18px); }

.gc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 740px) { .gc-grid { grid-template-columns: 1fr; gap: 24px; } }

.gc-block { background: var(--cream); border: 1px solid rgba(42,28,15,0.16); padding: 28px 26px; }
.gc-block-wide { grid-column: 1 / -1; }
.gc-block h3 {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(42,28,15,0.25);
}
.gc-block .field { margin-bottom: 14px; }
.gc-block .field:last-child { margin-bottom: 0; }
.gc-block .field label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.gc-block .field label .opt {
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.gc-block input,
.gc-block select,
.gc-block textarea {
  font-family: var(--serif-body);
  font-size: 16px;
  background: var(--parchment-soft);
  border: 1px solid rgba(42,28,15,0.18);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.gc-block input:focus,
.gc-block select:focus,
.gc-block textarea:focus { border-color: var(--wine); background: var(--cream); }
.gc-block textarea { resize: vertical; min-height: 88px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--serif-body);
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input { width: 16px; height: 16px; accent-color: var(--wine); }

.gc-actions {
  text-align: center;
}
.btn-large { padding: 18px 40px; font-size: 16px; }
.form-note {
  margin-top: 14px;
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
}

.gc-balance {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.balance-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
}
.balance-card .kicker { text-align: center; }
.balance-card .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.balance-form {
  display: flex;
  gap: 10px;
  margin: 24px auto 14px;
  max-width: 440px;
}
.balance-form input {
  flex: 1;
  font-family: var(--serif-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(42,28,15,0.25);
  background: var(--parchment-soft);
  color: var(--ink);
  letter-spacing: 0.06em;
}
.balance-form input::placeholder { color: var(--ink-mute); font-style: italic; }
.balance-form input:focus { border-color: var(--wine); outline: none; background: var(--cream); }
.balance-or {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
  margin: 0;
}
@media (max-width: 480px) { .balance-form { flex-direction: column; } }

.gc-fine {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 100px);
  border-top: 1px solid rgba(42,28,15,0.12);
}
.fine-inner {
  max-width: 760px;
  margin: 0 auto;
}
.fine-inner h3 {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 16px;
}
.fine-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif-body);
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.65;
}
.fine-inner li {
  padding: 8px 0;
  border-bottom: 1px dotted rgba(42,28,15,0.15);
  padding-left: 18px;
  position: relative;
}
.fine-inner li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 18px; line-height: 1; }
.fine-inner li:last-child { border-bottom: none; }
.fine-inner a { color: var(--wine); }

/* ============================================================
   VIP PAGE
   ============================================================ */
.vip-welcome {
  padding: clamp(40px, 5vw, 60px) var(--gutter);
  background: var(--parchment-soft);
  border-bottom: 1px solid rgba(42,28,15,0.12);
}
.welcome-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 740px) { .welcome-inner { grid-template-columns: 1fr; text-align: center; } }
.welcome-badge {
  background: var(--wine);
  color: var(--cream);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-weight: 600;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.06em;
  margin: 0 auto;
  box-shadow: 0 18px 30px -18px rgba(122,24,24,0.5);
}
.welcome-text h2 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.welcome-text p {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.vip-perks {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .perks-grid { grid-template-columns: 1fr; } }

.perk {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.perk::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.perk:hover { transform: translateY(-4px); border-color: var(--gold); }
.perk-icon {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.perk h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--wine);
  margin: 0 0 10px;
}
.perk p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.vip-milestones {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(168,138,79,0.16), transparent 60%),
    linear-gradient(180deg, #1d1308, #0f0904 60%, #1d1308);
  color: var(--cream);
}
.vip-milestones .section-title { color: var(--cream); }
.vip-milestones .head-flourish { color: var(--gold); }

.milestones-track {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 920px) { .milestones-track { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .milestones-track { grid-template-columns: 1fr; } }

.milestone {
  background: linear-gradient(180deg, rgba(250,243,225,0.04), rgba(250,243,225,0.01));
  border: 1px solid rgba(168,138,79,0.4);
  padding: 32px 18px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.milestone:hover { transform: translateY(-4px); border-color: var(--gold-soft); }

.ms-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--gold-soft);
  line-height: 1;
}
.ms-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(250,243,225,0.6);
}
.ms-reward {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--cream);
  padding-top: 10px;
  border-top: 1px dotted rgba(168,138,79,0.3);
  margin-top: 6px;
}

.vip-tiers {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tiers-grid { grid-template-columns: 1fr; } }

.vtier {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 32px 26px 28px;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.vtier::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.vtier:hover { transform: translateY(-5px); }

.vt-featured {
  background: linear-gradient(180deg, #2a1c0f, #1d1308);
  color: var(--cream);
  border-color: var(--gold);
  transform: scale(1.04);
}
.vt-featured::before { border-color: rgba(200,169,88,0.2); }
.vt-featured:hover { transform: scale(1.04) translateY(-5px); }

.vt-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-soft);
  color: #1a1208;
  padding: 5px 14px;
  font-family: var(--serif-body);
  letter-spacing: 0.18em;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}

.vt-name {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 32px);
  color: var(--wine);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.vt-featured .vt-name { color: var(--gold-soft); }

.vt-req {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(42,28,15,0.2);
}
.vt-featured .vt-req { color: rgba(250,243,225,0.65); border-bottom-color: rgba(200,169,88,0.25); }

.vtier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.vt-featured ul { color: rgba(250,243,225,0.88); }
.vtier li {
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
}
.vtier li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.vt-featured li::before { color: var(--gold-soft); }

.vip-join {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px);
}

/* ============================================================
   LOCATION (city) PAGES
   ============================================================ */
.loc-intro {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.loc-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.loc-inner .kicker { text-align: center; }
.loc-inner .section-title { text-align: center; }
.loc-lead {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 48px;
}

.loc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42,28,15,0.18);
  border: 1px solid rgba(42,28,15,0.18);
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 580px) { .loc-stats { grid-template-columns: repeat(2, 1fr); } }

.loc-stat {
  background: var(--cream);
  padding: 22px 14px;
  text-align: center;
}
.loc-stat-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--wine);
  display: block;
  line-height: 1;
}
.loc-stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--serif-body);
  letter-spacing: 0.16em;
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.loc-offer {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
  border-bottom: 1px solid rgba(42,28,15,0.12);
}
.offer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .offer-grid { grid-template-columns: 1fr; } }

.offer {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 32px 30px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.offer::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.offer:hover { transform: translateY(-4px); border-color: var(--gold); }
.offer h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--wine);
  margin: 0 0 12px;
}
.offer p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.offer-link {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.06em;
  font-size: 14.5px;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.loc-directions {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.dir-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
@media (max-width: 820px) { .dir-inner { grid-template-columns: 1fr; } }
.dir-text p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.dir-address {
  border-top: 1px solid rgba(42,28,15,0.15);
  padding-top: 16px;
  margin-top: 22px;
}
.dir-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 6px !important;
  display: flex;
  align-items: center;
}
.dir-body {
  font-family: var(--serif-display);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 6px !important;
}
.dir-link {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14.5px;
  color: var(--wine);
}
.dir-map {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 8px;
  min-height: 360px;
}
.dir-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: sepia(0.25) saturate(0.9) hue-rotate(-8deg) contrast(0.95);
  display: block;
}

.loc-local {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
}
.local-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.local-inner .kicker { text-align: center; }
.local-inner .section-title { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-top: 40px;
  text-align: left;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) { .local-grid { grid-template-columns: 1fr; } }
.local-grid h3 {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 14px;
}
.local-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink);
}
.local-list li {
  padding: 9px 0;
  border-bottom: 1px dotted rgba(42,28,15,0.2);
  padding-left: 18px;
  position: relative;
}
.local-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.local-list li:last-child { border-bottom: none; }

.loc-others {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.others-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 920px) { .others-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .others-grid { grid-template-columns: 1fr; } }
.others-grid a {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 16px 18px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  text-align: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.others-grid a:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

/* Locations Index page */
.loc-index {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.loc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .loc-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .loc-tiles { grid-template-columns: 1fr; } }

.loc-tile {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 32px 28px 26px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}
.loc-tile::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.loc-tile:hover {
  transform: translateY(-4px);
  border-color: var(--wine);
}
.loc-tile-city {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 32px);
  color: var(--wine);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.loc-tile-meta {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.loc-tile-cta {
  font-family: var(--serif-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dotted rgba(42,28,15,0.2);
}

/* Footer "cities we serve" band — shared across all pages */
.footer-cities {
  border-top: 1px solid rgba(200,169,88,0.18);
  padding: 32px var(--gutter) 24px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.footer-cities-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
}
.footer-cities-list {
  font-family: var(--serif-body);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(250,243,225,0.7);
}
.footer-cities-list a {
  color: rgba(250,243,225,0.7);
  text-decoration: none;
  margin: 0 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.footer-cities-list a:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* ============================================================
   CATEGORY (SEO) PAGES
   ============================================================ */
.cat-pillars {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
  border-bottom: 1px solid rgba(42,28,15,0.12);
}
.pillar-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 28px 24px 24px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(42,28,15,0.06);
  pointer-events: none;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--gold); }
.pillar-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.pillar h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--wine);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.pillar p {
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}

.cat-cities {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.city-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 920px) { .city-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .city-tiles { grid-template-columns: 1fr; } }

.city-tile {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.16);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.city-tile:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}
.city-tile-name {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 18px);
  color: inherit;
}
.city-tile-meta {
  font-family: var(--serif-body);
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.3s var(--ease);
}
.city-tile:hover .city-tile-meta { color: rgba(250,243,225,0.7); }

.cat-other {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 10vw, 120px);
  max-width: var(--container);
  margin: 0 auto;
}
.other-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 740px) { .other-cats { grid-template-columns: 1fr; } }
.other-cats a {
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 22px 24px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  text-align: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.other-cats a:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

/* ============================================================
   PHOTO GALLERY + LIGHTBOX
   ============================================================ */
.gallery {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(42,28,15,0.12);
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
@media (max-width: 920px) {
  .photo-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 580px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}

/* Mosaic: feature a few tiles larger */
.gphoto-1 { grid-column: span 2; grid-row: span 2; }
.gphoto-5 { grid-column: span 2; }
.gphoto-8 { grid-row: span 2; }
@media (max-width: 580px) {
  .gphoto-1, .gphoto-5, .gphoto-8 { grid-column: auto; grid-row: auto; }
}

.gphoto {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(42,28,15,0.18);
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease), filter 0.4s var(--ease);
}
.gphoto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,24,24,0.0), rgba(42,28,15,0.0));
  transition: background 0.4s var(--ease);
  pointer-events: none;
}
.gphoto:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(42,28,15,0.5);
}
.gphoto:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gphoto:hover::after { background: linear-gradient(135deg, rgba(122,24,24,0.18), rgba(42,28,15,0.25)); }
.gphoto:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
.gphoto-empty { display: none; } /* hide tiles whose source 404s */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13,9,5,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }

.lightbox-frame {
  margin: 0;
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(200,169,88,0.3);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.lightbox-caption {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--gold-soft);
  text-align: center;
  letter-spacing: 0.02em;
  max-width: 800px;
  margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(250,243,225,0.08);
  border: 1px solid rgba(200,169,88,0.4);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--serif-body);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 22px;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold-soft);
  color: #1a1208;
  border-color: var(--gold-soft);
}
@media (max-width: 580px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 18px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
}

.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(250,243,225,0.7);
  text-transform: uppercase;
}

body.lightbox-open { overflow: hidden; }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 10vw, 130px);
  max-width: var(--container);
  margin: 0 auto;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif-body);
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.75;
}
.legal-inner .kicker { text-align: center; }
.legal-inner h1.section-title { text-align: center; font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin-bottom: 12px; }
.legal-updated {
  text-align: center;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}
.legal-intro {
  font-style: italic;
  font-size: 17.5px;
  color: var(--ink);
  border-top: 1px solid rgba(122,24,24,0.25);
  border-bottom: 1px solid rgba(122,24,24,0.25);
  padding: 22px 0;
  margin: 0 0 36px;
}
.legal-inner h2 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--wine);
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px dotted rgba(122,24,24,0.3);
}
.legal-inner h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 22px 0 8px;
}
.legal-inner p { margin: 0 0 14px; }
.legal-inner ul { padding-left: 20px; margin: 0 0 18px; }
.legal-inner li { margin-bottom: 8px; padding-left: 4px; }
.legal-inner li::marker { color: var(--gold); }
.legal-inner strong { color: var(--ink); font-weight: 600; }
.legal-inner a { color: var(--wine); border-bottom: 1px solid rgba(122,24,24,0.3); }
.legal-inner a:hover { color: var(--wine-deep); border-color: var(--wine-deep); }
.legal-fineprint {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(42,28,15,0.15);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ============================================================
   CATERING (homepage CTA card)
   ============================================================ */
.catering {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(80px, 10vw, 130px);
}

.catering-card {
  max-width: 980px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(168,138,79,0.25), transparent 60%),
    linear-gradient(180deg, #3a261a, #2a1c0f);
  color: var(--cream);
  padding: clamp(56px, 8vw, 100px) clamp(32px, 6vw, 80px);
  position: relative;
  text-align: center;
  border: 1px solid rgba(168,138,79,0.4);
}
.catering-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(168,138,79,0.2);
  pointer-events: none;
}

.catering-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  color: var(--gold-soft);
}
.catering-corner.tl { top: -2px; left: -2px; }
.catering-corner.tr { top: -2px; right: -2px; transform: scaleX(-1); }
.catering-corner.bl { bottom: -2px; left: -2px; transform: scaleY(-1); }
.catering-corner.br { bottom: -2px; right: -2px; transform: scale(-1, -1); }

.catering-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--cream);
}
.catering-title em { font-style: italic; color: var(--gold-soft); }

.catering-sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(250,243,225,0.85);
  max-width: 580px;
  margin: 0 auto 32px;
}

.catering-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(42,28,15,0.12);
}

.visit-head { text-align: center; margin-bottom: 60px; }
.visit-head .section-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.visit-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-info {
  display: grid;
  gap: 32px;
}
.info-block {
  border-top: 1px solid rgba(42,28,15,0.15);
  padding-top: 18px;
}
.info-block:first-child { border-top: none; padding-top: 0; }

.info-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  color: var(--wine);
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
}
.info-body {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 8px;
}
.info-link {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--serif-body);
  font-size: 16px;
}
.hours th, .hours td {
  padding: 7px 0;
  text-align: left;
  border-bottom: 1px dotted rgba(42,28,15,0.2);
  font-weight: 400;
}
.hours th {
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: 18px;
  width: 40%;
}
.hours td {
  text-align: right;
  color: var(--ink-soft);
  font-style: italic;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }

.big-phone {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--wine);
  letter-spacing: 0.04em;
}
.big-phone:hover { color: var(--wine-deep); }

.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.socials a:hover { background: var(--wine); border-color: var(--wine); color: var(--cream); }

.visit-map {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border: 1px solid rgba(42,28,15,0.18);
  padding: 8px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.25) saturate(0.9) hue-rotate(-8deg) contrast(0.95);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1d1308;
  color: var(--parchment-soft);
  padding: 60px var(--gutter) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 120px;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif-display);
  color: var(--cream);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-monti, .footer-primo { font-weight: 500; }
.footer-tie {
  width: 18px;
  height: 26px;
  color: var(--wine);
  align-self: center;
}
.footer-rist {
  display: block;
  width: 100%;
  font-family: var(--serif-body);
  letter-spacing: 0.55em;
  font-size: 12px;
  color: var(--gold-soft);
  margin-top: 8px;
  padding-left: 0.55em;
}
.footer-line {
  font-family: var(--serif-body);
  font-size: 16px;
  color: rgba(250,243,225,0.8);
  margin: 4px 0;
}
.footer-line a { color: var(--gold-soft); }
.footer-line a:hover { color: var(--cream); }

.footer-hills {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;        /* full-bleed; .footer{overflow:hidden} clips any excess */
  max-width: none;     /* escape the global `img, svg { max-width: 100% }` clamp */
  min-width: 100%;
  height: 90px;
  color: var(--parchment-soft);
  opacity: 0.18;
}
.footer-fine {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(250,243,225,0.5);
  margin: 0;
}


/* ============================================================
   OUR STORY — page intro, timeline, values, sign-off
   ============================================================ */
.story-intro {
  padding: clamp(60px, 8vw, 110px) var(--gutter) clamp(20px, 4vw, 50px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.story-intro .kicker { text-align: center; }
.story-intro-lead {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.story-intro-lead em { color: var(--wine); }

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 100px);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.5;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(54px, 7vw, 96px);
}
.tl-item:last-child { margin-bottom: 0; }

/* The dot on the spine */
.tl-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--wine);
  border: 2px solid var(--parchment);
  box-shadow: 0 0 0 3px rgba(168,138,79,0.35);
  z-index: 3;
}

/* Default: media left, text right */
.tl-media { order: 1; }
.tl-body  { order: 2; }
/* Alternate: media right, text left */
.tl-item:nth-child(even) .tl-media { order: 2; }
.tl-item:nth-child(even) .tl-body  { order: 1; text-align: right; }

.tl-media {
  background: var(--cream);
  padding: 14px 14px 12px;
  border: 1px solid rgba(42,28,15,0.16);
  box-shadow:
    0 1px 0 rgba(42,28,15,0.08),
    0 24px 40px -24px rgba(42,28,15,0.5),
    0 50px 60px -45px rgba(42,28,15,0.25);
  transform: rotate(-1.6deg);
  transition: transform 0.6s var(--ease);
  justify-self: end;
  max-width: 420px;
  width: 100%;
}
.tl-item:nth-child(even) .tl-media { justify-self: start; transform: rotate(1.6deg); }
.tl-media:hover { transform: rotate(0) translateY(-5px); }
.tl-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: sepia(0.2) contrast(1.04) brightness(0.99);
}
.tl-media figcaption {
  margin-top: 11px;
  text-align: center;
  font-family: var(--script);
  font-size: 21px;
  line-height: 1.15;
  color: var(--ink-soft);
  padding: 0 4px 3px;
}

.tl-era {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--gold);
  margin-bottom: 8px;
}
.tl-body h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.tl-body h2 em { font-style: italic; color: var(--wine); font-weight: 500; }
.tl-body p {
  font-family: var(--serif-body);
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.tl-body p:last-child { margin-bottom: 0; }
.tl-body em { color: var(--wine); font-style: italic; }

@media (max-width: 820px) {
  .timeline::before { left: 19px; }
  .tl-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 54px;
    margin-bottom: 48px;
  }
  .tl-item::after { left: 19px; top: 30px; transform: translate(-50%, 0) rotate(45deg); }
  .tl-media,
  .tl-item:nth-child(even) .tl-media { order: 0; justify-self: start; transform: none; max-width: 360px; }
  .tl-body,
  .tl-item:nth-child(even) .tl-body { order: 0; text-align: left !important; }
  .tl-media img { aspect-ratio: 16 / 12; }
}

/* Thrown-on-the-table scatter — each photo lands at its own angle */
.tl-item:nth-child(1) .tl-media { transform: rotate(-2.8deg); }
.tl-item:nth-child(2) .tl-media { transform: rotate(3.2deg) translateY(8px); }
.tl-item:nth-child(3) .tl-media { transform: rotate(-1.6deg) translateY(-6px); }
.tl-item:nth-child(4) .tl-media { transform: rotate(2.6deg) translateY(5px); }
.tl-item:nth-child(5) .tl-media { transform: rotate(-3.4deg); }
.tl-item:nth-child(6) .tl-media { transform: rotate(1.9deg) translateY(10px); }
.tl-item:nth-child(7) .tl-media { transform: rotate(-2.2deg) translateY(-4px); }
.tl-item .tl-media:hover { transform: rotate(0) translateY(-5px); }

/* Two polaroids thrown together in one timeline block */
.tl-pair {
  order: 1;
  justify-self: end;
  width: 100%;
  max-width: 470px;
  position: relative;
}
.tl-pair .tl-media {
  width: 76%;
  max-width: none;
  justify-self: auto;
}
.tl-pair .tl-media:first-child {
  transform: rotate(-3.2deg);
  position: relative;
  z-index: 1;
}
.tl-pair .tl-media:last-child {
  transform: rotate(2.4deg);
  margin: -24% 0 0 24%;
}
.tl-pair .tl-media:hover { transform: rotate(0) translateY(-5px); z-index: 2; }
@media (max-width: 820px) {
  .tl-pair { justify-self: start; max-width: 380px; }
  .tl-pair .tl-media:first-child { transform: rotate(-3.2deg); }
  .tl-pair .tl-media:last-child { transform: rotate(2.4deg); }
}

/* ── Values band ── */
.story-values {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  background:
    radial-gradient(ellipse at 70% 0%, rgba(168,138,79,0.10), transparent 55%),
    var(--parchment-soft);
  border-top: 1px solid rgba(42,28,15,0.12);
  border-bottom: 1px solid rgba(42,28,15,0.12);
  text-align: center;
}
.story-values-inner { max-width: 760px; margin: 0 auto; }
.story-values .section-title { margin-bottom: 30px; }
.story-values-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.story-values-list li {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(122,24,24,0.18);
}
.story-values-list li:last-child { border-bottom: 0; }
.story-values-coda {
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 30px;
}

/* ── Sign-off ── */
.story-signoff {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.story-illus {
  display: block;
  width: clamp(150px, 22vw, 210px);
  height: auto;
  margin: 0 auto 26px;
}
.story-signoff p {
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.story-signoff em { color: var(--wine); font-style: italic; }
.story-signoff strong { color: var(--ink); font-weight: 600; }
.story-signoff-script {
  font-family: var(--script);
  font-size: clamp(34px, 5vw, 52px);
  color: var(--wine);
  line-height: 1;
  margin: 30px 0 6px;
}
.story-signoff-name {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  font-size: 16px;
}
.story-signoff .hero-ctas { justify-content: center; margin-top: 40px; }

/* ── Pull quote ── */
.story-quote {
  padding: clamp(50px, 7vw, 96px) var(--gutter);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.story-quote blockquote {
  margin: 0;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(25px, 3.8vw, 42px);
  line-height: 1.34;
  color: var(--ink);
}
.story-quote blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--serif-display);
  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.6;
  color: var(--wine);
  opacity: 0.28;
}
.story-quote em { color: var(--wine); font-style: italic; }
.story-quote cite {
  display: block;
  margin-top: 26px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── By the numbers ── */
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 50px);
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) var(--gutter) clamp(50px, 7vw, 90px);
  text-align: center;
}
.story-stat {
  position: relative;
  padding: 0 clamp(8px, 2vw, 20px);
}
.story-stat + .story-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(122,24,24,0.18);
}
.story-stat-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 66px);
  color: var(--wine);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 14px auto 0;
  max-width: 16ch;
}
@media (max-width: 620px) {
  .story-stats { grid-template-columns: 1fr; gap: 34px; }
  .story-stat + .story-stat::before { display: none; }
}


/* ============================================================
   HOMEPAGE — short "Our Story" teaser band
   ============================================================ */
.story-teaser {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  border-top: 1px solid rgba(42,28,15,0.12);
}
.story-teaser-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .story-teaser-inner { grid-template-columns: 1fr; }
}
.story-teaser-photos {
  position: relative;
  min-height: 300px;
}
.story-teaser-photos figure {
  margin: 0;
  background: var(--cream);
  padding: 13px 13px 11px;
  border: 1px solid rgba(42,28,15,0.16);
  box-shadow:
    0 1px 0 rgba(42,28,15,0.08),
    0 24px 40px -24px rgba(42,28,15,0.5),
    0 50px 60px -45px rgba(42,28,15,0.25);
}
.story-teaser-photos img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.2) contrast(1.04);
}
.story-teaser-photos .stp-1 {
  width: 62%;
  transform: rotate(-2.4deg);
  position: relative;
  z-index: 2;
}
.story-teaser-photos .stp-2 {
  width: 52%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(2.6deg);
  z-index: 1;
}
.story-teaser-photos figcaption {
  margin-top: 9px;
  text-align: center;
  font-family: var(--script);
  font-size: 19px;
  color: var(--ink-soft);
}
@media (max-width: 540px) {
  .story-teaser-photos { min-height: 0; }
  .story-teaser-photos .stp-2 { display: none; }
  .story-teaser-photos .stp-1 { width: 86%; margin: 0 auto; transform: rotate(-1.6deg); }
}
.story-teaser-text .kicker { text-align: left; }
.story-teaser-text .section-title { text-align: left; }
.story-teaser-text p {
  font-family: var(--serif-body);
  font-size: 18.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.story-teaser-text em { color: var(--wine); font-style: italic; }
.story-teaser-text .btn { margin-top: 14px; }


/* ============================================================
   OPENING-SOON POPUP — countdown + email/phone capture
   ============================================================ */
.mp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13, 9, 5, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.mp-modal-overlay.is-open { opacity: 1; }
.mp-modal-overlay[hidden] { display: none; }

.mp-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background:
    radial-gradient(ellipse 120% 70% at 50% -8%, var(--cream), rgba(250,243,225,0) 60%),
    linear-gradient(180deg, var(--parchment-soft), var(--parchment));
  border: 1px solid rgba(42,28,15,0.25);
  border-top: 3px solid #008C45;
  border-bottom: 3px solid #CD212A;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
  padding: clamp(30px, 5vw, 46px) clamp(22px, 4vw, 44px) clamp(26px, 4vw, 38px);
  text-align: center;
  transform: translateY(14px) scale(0.985);
  transition: transform 0.45s var(--ease);
}
.mp-modal-overlay.is-open .mp-modal { transform: translateY(0) scale(1); }

.mp-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-mute);
  transition: color 0.3s;
}
.mp-modal-close:hover { color: var(--wine); }

.mp-modal-kicker {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.34em;
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 14px;
}
.mp-modal-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.5vw, 2.8rem);
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 6px;
}
.mp-modal-title em { font-style: italic; color: var(--wine); font-weight: 500; }
.mp-modal-script {
  font-family: var(--script);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--wine);
  margin: 4px 0 14px;
  transform: rotate(-1.5deg);
}
.mp-modal-tag {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 auto 22px;
}
.mp-modal-tag strong { color: var(--wine); font-weight: 600; }

.mp-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(168,138,79,0.35);
  border: 1px solid rgba(168,138,79,0.45);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 440px;
}
.mp-count-cell { background: var(--cream); padding: 13px 4px 10px; }
.mp-count-num {
  display: block;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--wine);
  line-height: 1;
}
.mp-count-label {
  display: block;
  margin-top: 5px;
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.mp-modal-form .mp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 480px) { .mp-modal-form .mp-fields { grid-template-columns: 1fr; } }
.mp-modal-form input {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--serif-body);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(168,138,79,0.5);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.mp-modal-form input:focus { border-color: var(--wine); background: #fff; }
.mp-modal-form button {
  width: 100%;
  padding: 14px;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--wine);
  border: 1px solid var(--wine-deep);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.mp-modal-form button:hover { background: var(--ink); }
.mp-modal-form button[disabled] { opacity: 0.6; cursor: wait; }
.mp-modal-note {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 12px 0 0;
}
.mp-modal-error {
  font-family: var(--serif-body);
  font-size: 14px;
  color: #a32020;
  margin: 10px 0 0;
}
.mp-modal-success {
  display: none;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--wine);
  margin: 14px 0 4px;
}
.mp-modal.is-done .mp-modal-form,
.mp-modal.is-done .mp-modal-note { display: none; }
.mp-modal.is-done .mp-modal-success { display: block; }
.mp-modal-skip {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-mute);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(129,102,65,0.4);
  padding: 0 0 2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.mp-modal-skip:hover { color: var(--wine); border-color: var(--wine); }
