/* =========================================================
   VERDURA — Modern California vegetable-forward restaurant
   Template B (food) — Scoped to .vd- prefix
   Albertson Designs LLC template gallery
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Reenie+Beanie&family=Homemade+Apple&display=swap');

/* ---------- Tokens ---------- */
:root {
  --vd-bone: #F4EDDF;
  --vd-bone-2: #EFE5D1;
  --vd-bone-3: #E7DABE;
  --vd-eggplant: #3A1B3D;
  --vd-eggplant-2: #2A0F2D;
  --vd-eggplant-soft: #5A3A5E;
  --vd-gold: #D9A24B;
  --vd-gold-deep: #B5832F;
  --vd-herb: #4F7A4C;
  --vd-herb-deep: #355233;
  --vd-tomato: #B83A2C;
  --vd-tomato-deep: #8C2618;
  --vd-ink: #221422;
  --vd-ink-soft: #4A3949;
  --vd-line: rgba(58, 27, 61, 0.18);
  --vd-line-strong: rgba(58, 27, 61, 0.45);

  --vd-serif: 'DM Serif Display', 'Recoleta', Georgia, serif;
  --vd-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --vd-hand: 'Reenie Beanie', 'Homemade Apple', cursive;
  --vd-hand-2: 'Homemade Apple', 'Reenie Beanie', cursive;

  --vd-shadow-sm: 0 2px 8px rgba(58, 27, 61, 0.08);
  --vd-shadow-md: 0 12px 30px rgba(58, 27, 61, 0.14);
  --vd-shadow-lg: 0 28px 60px rgba(58, 27, 61, 0.22);

  --vd-radius-sm: 6px;
  --vd-radius-md: 14px;
  --vd-radius-lg: 28px;

  --vd-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --vd-easing-snap: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset (scoped lightly) ---------- */
.vd-root *,
.vd-root *::before,
.vd-root *::after {
  box-sizing: border-box;
}

.vd-root {
  margin: 0;
  padding: 0;
  font-family: var(--vd-sans);
  color: var(--vd-ink);
  background: var(--vd-bone);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.vd-root a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--vd-easing);
}

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

.vd-root h1,
.vd-root h2,
.vd-root h3,
.vd-root h4 {
  margin: 0;
  font-family: var(--vd-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--vd-eggplant);
}

.vd-root p {
  margin: 0 0 1em 0;
}

/* ---------- Layout helpers ---------- */
.vd-wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.vd-wrap-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.vd-section {
  padding: 110px 0;
  position: relative;
}

.vd-section--tight {
  padding: 70px 0;
}

.vd-section--wide {
  padding: 140px 0;
}

/* ---------- Eyebrow / labels ---------- */
.vd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vd-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--vd-eggplant);
  margin-bottom: 22px;
}

.vd-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--vd-eggplant);
  display: inline-block;
}

.vd-eyebrow--gold { color: var(--vd-gold-deep); }
.vd-eyebrow--gold::before { background: var(--vd-gold-deep); }

.vd-eyebrow--bone { color: var(--vd-bone); }
.vd-eyebrow--bone::before { background: var(--vd-bone); }

.vd-hand-note {
  font-family: var(--vd-hand);
  font-size: 30px;
  line-height: 1.05;
  color: var(--vd-tomato);
  display: inline-block;
  transform: rotate(-2deg);
}

.vd-hand-note--small {
  font-size: 22px;
}

.vd-hand-note--gold { color: var(--vd-gold-deep); }
.vd-hand-note--herb { color: var(--vd-herb); }
.vd-hand-note--cream { color: var(--vd-bone); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.vd-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--vd-bone);
  border-bottom: 1px solid var(--vd-line);
  transition: box-shadow 0.4s var(--vd-easing), background 0.4s var(--vd-easing);
}

.vd-nav.vd-nav--scrolled {
  box-shadow: var(--vd-shadow-sm);
  background: rgba(244, 237, 223, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
}

.vd-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  gap: 24px;
  max-width: 1480px;
  margin: 0 auto;
}

.vd-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vd-nav__links--left { justify-content: flex-start; }
.vd-nav__links--right { justify-content: flex-end; }

.vd-nav__link {
  position: relative;
  padding: 6px 0;
  color: var(--vd-ink);
}

.vd-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--vd-eggplant);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--vd-easing);
}

.vd-nav__link:hover::after,
.vd-nav__link.vd-active::after {
  transform: scaleX(1);
}

.vd-nav__link.vd-active {
  color: var(--vd-eggplant);
}

.vd-nav__logo {
  font-family: var(--vd-serif);
  font-size: 30px;
  color: var(--vd-eggplant);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vd-nav__logo small {
  font-family: var(--vd-hand);
  font-size: 16px;
  color: var(--vd-tomato);
  letter-spacing: 0;
  transform: rotate(-3deg) translateY(-2px);
  display: inline-block;
}

.vd-nav__cta {
  padding: 11px 22px;
  background: var(--vd-eggplant);
  color: var(--vd-bone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--vd-easing), transform 0.3s var(--vd-easing);
  display: inline-block;
}

.vd-nav__cta:hover {
  background: var(--vd-tomato);
  transform: translateY(-2px);
}

.vd-nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--vd-eggplant);
}

/* ============================================================
   HERO
   ============================================================ */
.vd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--vd-eggplant);
}

.vd-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: vd-hero-zoom 14s var(--vd-easing) forwards;
}

@keyframes vd-hero-zoom {
  to { transform: scale(1); }
}

.vd-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58,27,61,0.28) 0%, rgba(58,27,61,0) 35%, rgba(58,27,61,0) 55%, rgba(58,27,61,0.78) 100%);
  z-index: 1;
}

.vd-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 56px 80px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto;
}

.vd-hero__title {
  font-family: var(--vd-serif);
  font-size: clamp(58px, 9vw, 132px);
  color: var(--vd-bone);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
}

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

.vd-hero__sub {
  font-family: var(--vd-hand);
  font-size: 38px;
  line-height: 1;
  color: var(--vd-gold);
  margin-top: 28px;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.vd-hero__meta {
  color: var(--vd-bone);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  text-align: right;
}

.vd-hero__meta strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--vd-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.vd-hero__pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(244, 237, 223, 0.16);
  border: 1px solid rgba(244, 237, 223, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.vd-hero__pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--vd-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 162, 75, 0.25);
  animation: vd-pulse 2s infinite;
}

@keyframes vd-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217, 162, 75, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(217, 162, 75, 0); }
}

.vd-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vd-bone);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0.7;
}

.vd-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: var(--vd-bone);
  margin: 12px auto 0;
  animation: vd-scroll-tick 2s var(--vd-easing) infinite;
  transform-origin: top center;
}

@keyframes vd-scroll-tick {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}

/* ============================================================
   PHILOSOPHY / INTRO
   ============================================================ */
.vd-philosophy {
  background: var(--vd-bone);
  position: relative;
}

.vd-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.vd-philosophy__lead {
  font-family: var(--vd-serif);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  color: var(--vd-eggplant);
}

.vd-philosophy__lead em {
  font-style: italic;
  color: var(--vd-tomato);
}

.vd-philosophy__body p {
  font-size: 18px;
  color: var(--vd-ink-soft);
  margin-bottom: 1.2em;
  line-height: 1.7;
}

.vd-philosophy__signature {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.vd-philosophy__signature svg {
  flex-shrink: 0;
}

.vd-philosophy__signature span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vd-eggplant);
}

/* Hand-drawn vegetable accent positioning */
.vd-veg-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.vd-veg-accent--tomato { top: 40px; right: 60px; width: 140px; }
.vd-veg-accent--artichoke { bottom: -30px; left: -20px; width: 180px; }
.vd-veg-accent--kale { top: 50%; right: 8%; width: 160px; transform: translateY(-50%); }
.vd-veg-accent--squash { bottom: 20%; left: 5%; width: 130px; }

.vd-veg-svg path,
.vd-veg-svg line,
.vd-veg-svg circle,
.vd-veg-svg ellipse {
  fill: none;
  stroke: var(--vd-eggplant);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vd-veg-svg.vd-veg-draw path,
.vd-veg-svg.vd-veg-draw line,
.vd-veg-svg.vd-veg-draw circle,
.vd-veg-svg.vd-veg-draw ellipse {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2.4s var(--vd-easing);
}

.vd-veg-svg.vd-veg-draw.vd-in path,
.vd-veg-svg.vd-veg-draw.vd-in line,
.vd-veg-svg.vd-veg-draw.vd-in circle,
.vd-veg-svg.vd-veg-draw.vd-in ellipse {
  stroke-dashoffset: 0;
}

.vd-veg-svg--tomato path { stroke: var(--vd-tomato); }
.vd-veg-svg--herb path { stroke: var(--vd-herb); }
.vd-veg-svg--gold path { stroke: var(--vd-gold-deep); }

/* ============================================================
   THIS WEEK — CHALKBOARD MENU
   ============================================================ */
.vd-chalkboard {
  background: var(--vd-eggplant);
  color: var(--vd-bone);
  position: relative;
  overflow: hidden;
}

.vd-chalkboard::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(244, 237, 223, 0.25);
  border-radius: 4px;
  pointer-events: none;
}

.vd-chalkboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 30px;
  flex-wrap: wrap;
}

.vd-chalkboard__title {
  font-family: var(--vd-serif);
  font-size: clamp(44px, 5vw, 72px);
  color: var(--vd-bone);
  line-height: 1;
}

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

.vd-chalkboard__date {
  font-family: var(--vd-hand);
  font-size: 30px;
  color: var(--vd-gold);
  transform: rotate(-2deg);
}

.vd-chalkboard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.vd-chalkboard__col h3 {
  font-family: var(--vd-serif);
  font-size: 14px;
  color: var(--vd-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244, 237, 223, 0.3);
  padding-bottom: 14px;
  margin-bottom: 26px;
}

.vd-chalk-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(244, 237, 223, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--vd-easing), transform 0.7s var(--vd-easing);
}

.vd-chalk-item.vd-in {
  opacity: 1;
  transform: translateY(0);
}

.vd-chalk-item__name {
  font-family: var(--vd-serif);
  font-size: 22px;
  color: var(--vd-bone);
  line-height: 1.15;
  margin-bottom: 4px;
}

.vd-chalk-item__desc {
  font-size: 14px;
  color: rgba(244, 237, 223, 0.7);
  line-height: 1.5;
}

.vd-chalk-item__price {
  font-family: var(--vd-serif);
  font-size: 20px;
  color: var(--vd-gold);
  white-space: nowrap;
}

.vd-chalk-item__tags {
  display: inline-flex;
  gap: 6px;
  margin-left: 10px;
  vertical-align: middle;
}

.vd-chalk-tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 2px 7px;
  border: 1px solid rgba(244, 237, 223, 0.3);
  border-radius: 999px;
  text-transform: uppercase;
  color: rgba(244, 237, 223, 0.65);
  font-weight: 600;
}

.vd-chalk-tag--v { color: var(--vd-gold); border-color: rgba(217, 162, 75, 0.5); }
.vd-chalk-tag--gf { color: var(--vd-bone); }

.vd-chalkboard__footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 237, 223, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vd-chalkboard__footer p {
  margin: 0;
  font-family: var(--vd-hand);
  font-size: 22px;
  color: var(--vd-gold);
  max-width: 60%;
  line-height: 1.3;
}

.vd-btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: var(--vd-bone);
  color: var(--vd-eggplant);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.3s var(--vd-easing), transform 0.3s var(--vd-easing), color 0.3s var(--vd-easing);
}

.vd-btn-cream:hover {
  background: var(--vd-gold);
  color: var(--vd-eggplant);
  transform: translateY(-2px);
}

.vd-btn-cream::after {
  content: "→";
  font-size: 17px;
  transition: transform 0.3s var(--vd-easing);
}

.vd-btn-cream:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   PRODUCE STRIP — 3 photo grid
   ============================================================ */
.vd-produce {
  padding: 90px 0;
  background: var(--vd-bone-2);
}

.vd-produce__header {
  text-align: center;
  margin-bottom: 60px;
}

.vd-produce__header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(36px, 4vw, 56px);
}

.vd-produce__header h2 em { color: var(--vd-herb); font-style: italic; }

.vd-produce__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 18px;
  padding: 0 32px;
  max-width: 1480px;
  margin: 0 auto;
}

.vd-produce__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--vd-radius-md);
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.vd-produce__cell--wide { aspect-ratio: 5 / 4; }

.vd-produce__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--vd-easing);
}

.vd-produce__cell:hover img {
  transform: scale(1.06);
}

.vd-produce__cell figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--vd-hand);
  font-size: 24px;
  color: var(--vd-bone);
  background: rgba(58, 27, 61, 0.7);
  padding: 4px 14px;
  border-radius: 999px;
  transform: rotate(-2deg);
}

/* ============================================================
   FOUR-CARD SECTIONS (Lunch / Dinner / Bar / Private)
   ============================================================ */
.vd-cards {
  background: var(--vd-bone);
}

.vd-cards__header {
  text-align: center;
  margin-bottom: 70px;
}

.vd-cards__header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(40px, 4.5vw, 64px);
}

.vd-cards__header h2 em { font-style: italic; color: var(--vd-tomato); }

.vd-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vd-card {
  position: relative;
  background: var(--vd-bone-2);
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--vd-easing), box-shadow 0.5s var(--vd-easing);
}

.vd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-md);
}

.vd-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.vd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--vd-easing);
}

.vd-card:hover .vd-card__media img {
  transform: scale(1.05);
}

.vd-card__body {
  padding: 26px 26px 30px;
}

.vd-card__kicker {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--vd-gold-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.vd-card__title {
  font-family: var(--vd-serif);
  font-size: 30px;
  color: var(--vd-eggplant);
  margin-bottom: 10px;
}

.vd-card__hours {
  font-size: 13px;
  color: var(--vd-ink-soft);
  margin-bottom: 16px;
  font-weight: 500;
}

.vd-card__hours strong { color: var(--vd-eggplant); }

.vd-card__copy {
  font-size: 15px;
  color: var(--vd-ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.vd-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vd-eggplant);
  font-weight: 600;
  position: relative;
}

.vd-card__link::after {
  content: "→";
  transition: transform 0.3s var(--vd-easing);
}

.vd-card__link:hover::after { transform: translateX(4px); }

/* ============================================================
   CHEF BIO BLOCK
   ============================================================ */
.vd-chef {
  background: var(--vd-bone-3);
  position: relative;
  overflow: hidden;
}

.vd-chef__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.vd-chef__media {
  position: relative;
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--vd-shadow-md);
}

.vd-chef__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-chef__badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 140px;
  height: 140px;
  background: var(--vd-tomato);
  color: var(--vd-bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--vd-hand);
  font-size: 26px;
  line-height: 1;
  padding: 12px;
  transform: rotate(-8deg);
  box-shadow: var(--vd-shadow-sm);
}

.vd-chef__quote {
  font-family: var(--vd-serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--vd-eggplant);
  font-style: italic;
  margin: 0 0 30px;
  position: relative;
  padding-left: 22px;
  border-left: 3px solid var(--vd-gold);
}

.vd-chef__body p {
  font-size: 17px;
  color: var(--vd-ink-soft);
  line-height: 1.7;
  margin-bottom: 1.1em;
}

.vd-chef__signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.vd-chef__signature-svg {
  width: 180px;
  height: 60px;
}

.vd-chef__signature-svg path {
  fill: none;
  stroke: var(--vd-eggplant);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2.4s var(--vd-easing-snap);
}

.vd-chef__signature-svg.vd-in path {
  stroke-dashoffset: 0;
}

.vd-chef__signature span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vd-eggplant);
  font-weight: 600;
}

.vd-chef__signature span small {
  display: block;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--vd-ink-soft);
  margin-top: 4px;
  font-size: 12px;
}

/* ============================================================
   RESERVATION CTA BAND
   ============================================================ */
.vd-reserve {
  background: var(--vd-tomato);
  color: var(--vd-bone);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.vd-reserve__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.vd-reserve__title {
  font-family: var(--vd-serif);
  font-size: clamp(44px, 5vw, 78px);
  color: var(--vd-bone);
  line-height: 0.98;
}

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

.vd-reserve__sub {
  font-family: var(--vd-hand);
  font-size: 30px;
  color: var(--vd-gold);
  margin-top: 16px;
  display: inline-block;
  transform: rotate(-2deg);
}

.vd-reserve__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 15px;
}

.vd-reserve__detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vd-gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.vd-reserve__buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vd-btn-eggplant {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: var(--vd-eggplant);
  color: var(--vd-bone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s var(--vd-easing), background 0.3s var(--vd-easing);
}

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

.vd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: transparent;
  border: 1.5px solid var(--vd-bone);
  color: var(--vd-bone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s var(--vd-easing), color 0.3s var(--vd-easing);
}

.vd-btn-ghost:hover {
  background: var(--vd-bone);
  color: var(--vd-tomato);
}

/* ============================================================
   FOOTER
   ============================================================ */
.vd-footer {
  background: var(--vd-eggplant);
  color: var(--vd-bone);
  padding: 90px 0 30px;
  position: relative;
}

.vd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.vd-footer__brand {
  font-family: var(--vd-serif);
  font-size: 44px;
  color: var(--vd-bone);
  line-height: 1;
  margin-bottom: 14px;
}

.vd-footer__brand small {
  display: block;
  font-family: var(--vd-hand);
  font-size: 22px;
  color: var(--vd-gold);
  margin-top: 4px;
  transform: rotate(-2deg);
  display: inline-block;
}

.vd-footer__tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 237, 223, 0.7);
  max-width: 360px;
}

.vd-footer__heading {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vd-gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.vd-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-footer__col li,
.vd-footer__col a {
  font-size: 14px;
  color: rgba(244, 237, 223, 0.85);
  line-height: 1.5;
}

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

.vd-footer__bottom {
  border-top: 1px solid rgba(244, 237, 223, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244, 237, 223, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   ABOUT PAGE — origin / farms / team
   ============================================================ */
.vd-page-hero {
  background: var(--vd-eggplant);
  color: var(--vd-bone);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.vd-page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.vd-page-hero h1 {
  font-family: var(--vd-serif);
  font-size: clamp(58px, 7vw, 108px);
  color: var(--vd-bone);
  line-height: 1;
  margin-bottom: 24px;
}

.vd-page-hero h1 em { font-style: italic; color: var(--vd-gold); }

.vd-page-hero p {
  font-size: 18px;
  color: rgba(244, 237, 223, 0.78);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.vd-page-hero__hand {
  font-family: var(--vd-hand);
  font-size: 32px;
  color: var(--vd-gold);
  margin-top: 30px;
  display: inline-block;
  transform: rotate(-2deg);
}

.vd-story {
  background: var(--vd-bone);
  position: relative;
}

.vd-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.vd-story__media {
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: sticky;
  top: 110px;
}

.vd-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-story__body h2 {
  font-family: var(--vd-serif);
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
}

.vd-story__body h2 em { font-style: italic; color: var(--vd-tomato); }

.vd-story__body p {
  font-size: 17px;
  color: var(--vd-ink-soft);
  line-height: 1.8;
  margin-bottom: 1.3em;
}

.vd-story__body p:first-of-type::first-letter {
  font-family: var(--vd-serif);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--vd-tomato);
}

.vd-pullquote {
  font-family: var(--vd-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-style: italic;
  color: var(--vd-eggplant);
  line-height: 1.25;
  border-top: 1px solid var(--vd-line);
  border-bottom: 1px solid var(--vd-line);
  padding: 32px 0;
  margin: 40px 0;
}

.vd-pullquote::before {
  content: "“";
  font-size: 80px;
  line-height: 0;
  vertical-align: -18px;
  color: var(--vd-gold);
  margin-right: 4px;
}

/* Farms grid */
.vd-farms {
  background: var(--vd-bone-2);
}

.vd-farms__header {
  text-align: center;
  margin-bottom: 70px;
}

.vd-farms__header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(40px, 4.5vw, 64px);
}

.vd-farms__header h2 em { color: var(--vd-herb); font-style: italic; }

.vd-farms__header p {
  font-size: 17px;
  color: var(--vd-ink-soft);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.vd-farms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vd-farm {
  background: var(--vd-bone);
  border-radius: var(--vd-radius-md);
  padding: 32px 28px;
  border: 1px solid var(--vd-line);
  transition: transform 0.4s var(--vd-easing), border-color 0.4s var(--vd-easing);
}

.vd-farm:hover {
  transform: translateY(-4px);
  border-color: var(--vd-gold);
}

.vd-farm__name {
  font-family: var(--vd-serif);
  font-size: 28px;
  margin-bottom: 6px;
}

.vd-farm__where {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vd-tomato);
  font-weight: 700;
  margin-bottom: 18px;
}

.vd-farm__copy {
  font-size: 15px;
  color: var(--vd-ink-soft);
  line-height: 1.6;
}

.vd-farm__meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--vd-line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--vd-eggplant);
  letter-spacing: 0.08em;
}

/* Team grid */
.vd-team {
  background: var(--vd-bone);
}

.vd-team__header {
  text-align: center;
  margin-bottom: 60px;
}

.vd-team__header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(40px, 4.5vw, 60px);
}

.vd-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.vd-teammate {
  text-align: left;
}

.vd-teammate__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--vd-radius-md);
  margin-bottom: 16px;
}

.vd-teammate__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vd-easing);
  filter: saturate(1);
}

.vd-teammate:hover .vd-teammate__photo img {
  transform: scale(1.05);
}

.vd-teammate__name {
  font-family: var(--vd-serif);
  font-size: 22px;
  color: var(--vd-eggplant);
  margin-bottom: 2px;
}

.vd-teammate__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vd-tomato);
  font-weight: 600;
  margin-bottom: 8px;
}

.vd-teammate__quote {
  font-family: var(--vd-hand);
  font-size: 18px;
  color: var(--vd-eggplant-soft);
  line-height: 1.2;
}

/* Kitchen photo strip */
.vd-kitchen {
  background: var(--vd-bone-3);
  padding: 0;
}

.vd-kitchen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.vd-kitchen__cell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.vd-kitchen__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--vd-easing);
}

.vd-kitchen__cell:hover img {
  transform: scale(1.07);
}

/* ============================================================
   SERVICES (Menu + Visit) PAGE
   ============================================================ */
.vd-menu-page {
  background: var(--vd-bone);
}

.vd-menu-header {
  text-align: center;
  margin-bottom: 70px;
}

.vd-menu-header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(44px, 5vw, 68px);
}

.vd-menu-header h2 em { font-style: italic; color: var(--vd-tomato); }

.vd-menu-header__hand {
  font-family: var(--vd-hand);
  font-size: 26px;
  color: var(--vd-gold-deep);
  margin-top: 14px;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.vd-menu-section {
  margin-bottom: 70px;
}

.vd-menu-section__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--vd-line-strong);
  padding-bottom: 16px;
  margin-bottom: 30px;
  gap: 18px;
}

.vd-menu-section__title h3 {
  font-family: var(--vd-serif);
  font-size: 36px;
  color: var(--vd-eggplant);
}

.vd-menu-section__title h3 em { font-style: italic; color: var(--vd-tomato); }

.vd-menu-section__title span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vd-gold-deep);
  font-weight: 700;
}

.vd-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 50px;
}

.vd-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--vd-line);
  align-items: start;
}

.vd-menu-item__name {
  font-family: var(--vd-serif);
  font-size: 22px;
  color: var(--vd-eggplant);
  line-height: 1.15;
  margin-bottom: 4px;
}

.vd-menu-item__desc {
  font-size: 14px;
  color: var(--vd-ink-soft);
  line-height: 1.55;
  max-width: 520px;
}

.vd-menu-item__price {
  font-family: var(--vd-serif);
  font-size: 20px;
  color: var(--vd-tomato);
  white-space: nowrap;
}

.vd-menu-tags {
  display: inline-flex;
  gap: 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.vd-menu-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border: 1px solid var(--vd-line-strong);
  border-radius: 999px;
  text-transform: uppercase;
  color: var(--vd-eggplant);
  font-weight: 700;
}

.vd-menu-tag--v { color: var(--vd-herb-deep); border-color: var(--vd-herb); }
.vd-menu-tag--gf { color: var(--vd-gold-deep); border-color: var(--vd-gold-deep); }

/* Wine list */
.vd-wine {
  background: var(--vd-eggplant);
  color: var(--vd-bone);
}

.vd-wine .vd-eyebrow { color: var(--vd-gold); }
.vd-wine .vd-eyebrow::before { background: var(--vd-gold); }

.vd-wine h2 {
  color: var(--vd-bone);
  font-family: var(--vd-serif);
  font-size: clamp(40px, 4.5vw, 64px);
  margin-bottom: 12px;
}

.vd-wine h2 em { font-style: italic; color: var(--vd-gold); }

.vd-wine__intro {
  font-size: 17px;
  color: rgba(244, 237, 223, 0.75);
  max-width: 640px;
  margin-bottom: 50px;
  line-height: 1.7;
}

.vd-wine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.vd-wine-col h3 {
  color: var(--vd-gold);
  font-family: var(--vd-serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244, 237, 223, 0.3);
  padding-bottom: 12px;
  margin-bottom: 22px;
}

.vd-wine-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(244, 237, 223, 0.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.vd-wine-item__name {
  font-family: var(--vd-serif);
  font-size: 19px;
  color: var(--vd-bone);
  line-height: 1.2;
}

.vd-wine-item__producer {
  display: block;
  font-family: var(--vd-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 237, 223, 0.6);
  font-weight: 500;
  margin-top: 4px;
}

.vd-wine-item__price {
  font-family: var(--vd-serif);
  font-size: 18px;
  color: var(--vd-gold);
  text-align: right;
}

.vd-wine-item__price small {
  display: block;
  font-size: 11px;
  color: rgba(244, 237, 223, 0.55);
  margin-top: 2px;
  letter-spacing: 0.1em;
}

/* Visit / Hours block */
.vd-visit {
  background: var(--vd-bone-2);
}

.vd-visit__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.vd-visit__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 30px;
}

.vd-visit__info h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vd-tomato);
  font-weight: 700;
  margin-bottom: 14px;
}

.vd-visit__info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vd-ink-soft);
  margin-bottom: 8px;
}

.vd-visit__info strong {
  color: var(--vd-eggplant);
}

.vd-visit__map {
  position: relative;
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  background: var(--vd-eggplant);
  aspect-ratio: 1 / 1.1;
  padding: 32px;
  color: var(--vd-bone);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vd-visit__map h3 {
  color: var(--vd-bone);
  font-family: var(--vd-serif);
  font-size: 38px;
  line-height: 1;
}

.vd-visit__map h3 em { font-style: italic; color: var(--vd-gold); }

.vd-visit__map p {
  font-size: 14px;
  color: rgba(244, 237, 223, 0.78);
  line-height: 1.6;
  max-width: 320px;
}

.vd-visit__map a {
  color: var(--vd-gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vd-visit__map a::after { content: "→"; }

.vd-visit__map-svg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.vd-visit__map-svg path,
.vd-visit__map-svg circle {
  fill: none;
  stroke: var(--vd-gold);
  stroke-width: 1;
}

.vd-visit__map > * { position: relative; z-index: 1; }

/* FAQ for private events */
.vd-faq {
  background: var(--vd-bone);
}

.vd-faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.vd-faq__header h2 {
  font-family: var(--vd-serif);
  font-size: clamp(40px, 4.5vw, 60px);
}

.vd-faq__header h2 em { font-style: italic; color: var(--vd-tomato); }

.vd-faq__list {
  max-width: 880px;
  margin: 0 auto;
}

.vd-faq-item {
  border-bottom: 1px solid var(--vd-line);
  padding: 24px 0;
  cursor: pointer;
}

.vd-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--vd-serif);
  font-size: 22px;
  color: var(--vd-eggplant);
  gap: 20px;
}

.vd-faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--vd-eggplant);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s var(--vd-easing), transform 0.4s var(--vd-easing);
}

.vd-faq-item__icon::before,
.vd-faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--vd-eggplant);
  transition: opacity 0.3s var(--vd-easing);
}

.vd-faq-item__icon::before {
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.vd-faq-item__icon::after {
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.vd-faq-item.vd-open .vd-faq-item__icon {
  background: var(--vd-eggplant);
  transform: rotate(45deg);
}

.vd-faq-item.vd-open .vd-faq-item__icon::before,
.vd-faq-item.vd-open .vd-faq-item__icon::after {
  background: var(--vd-bone);
}

.vd-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--vd-easing), padding 0.4s var(--vd-easing);
  font-size: 16px;
  color: var(--vd-ink-soft);
  line-height: 1.7;
}

.vd-faq-item.vd-open .vd-faq-item__a {
  max-height: 400px;
  padding-top: 18px;
}

/* ============================================================
   REVEAL ANIMATIONS — generic
   ============================================================ */
.vd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--vd-easing), transform 0.9s var(--vd-easing);
}

.vd-reveal.vd-in {
  opacity: 1;
  transform: translateY(0);
}

.vd-reveal--slow { transition-duration: 1.4s; }

.vd-stagger > * { transition-delay: var(--vd-stagger, 0ms); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .vd-cards__grid,
  .vd-team__grid { grid-template-columns: repeat(2, 1fr); }
  .vd-kitchen__grid { grid-template-columns: repeat(2, 1fr); }
  .vd-farms__grid { grid-template-columns: repeat(2, 1fr); }
  .vd-produce__grid { grid-template-columns: 1fr 1fr; }
  .vd-produce__cell:nth-child(3) { display: none; }
  .vd-philosophy__grid,
  .vd-chef__grid,
  .vd-story__grid,
  .vd-visit__grid,
  .vd-reserve__inner { grid-template-columns: 1fr; gap: 50px; }
  .vd-story__media { position: relative; top: 0; max-width: 480px; }
  .vd-hero__inner { grid-template-columns: 1fr; padding: 0 32px 60px; }
  .vd-hero__meta { align-items: flex-start; text-align: left; }
  .vd-chalkboard__grid,
  .vd-wine__grid,
  .vd-menu-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .vd-root { font-size: 16px; }
  .vd-section { padding: 70px 0; }
  .vd-wrap, .vd-wrap-narrow { padding: 0 22px; }
  .vd-nav__inner { grid-template-columns: 1fr auto; padding: 16px 20px; }
  .vd-nav__links--left,
  .vd-nav__links--right { display: none; }
  .vd-nav__toggle { display: inline-flex; }
  .vd-hero { min-height: 86vh; }
  .vd-hero__inner { padding: 0 22px 50px; }
  .vd-hero__sub { font-size: 28px; }
  .vd-cards__grid,
  .vd-team__grid,
  .vd-farms__grid,
  .vd-produce__grid,
  .vd-kitchen__grid { grid-template-columns: 1fr; }
  .vd-produce__cell:nth-child(3) { display: block; }
  .vd-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .vd-chef__badge { width: 110px; height: 110px; font-size: 20px; bottom: -14px; right: -14px; }
  .vd-page-hero { padding: 130px 0 70px; }
  .vd-menu-section__title { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vd-reserve { padding: 70px 0; }
}

@media (max-width: 480px) {
  .vd-footer__grid { grid-template-columns: 1fr; }
  .vd-hero__title { font-size: 52px; }
  .vd-chalkboard__title,
  .vd-cards__header h2,
  .vd-reserve__title { font-size: 38px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.vd-root :focus-visible {
  outline: 2px solid var(--vd-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .vd-root *,
  .vd-root *::before,
  .vd-root *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .vd-nav, .vd-footer, .vd-reserve, .vd-hero__scroll { display: none; }
  .vd-root { background: white; color: black; }
}
