/* ============================================================
   Dairy Diner — real-identity build
   Palette reverse-engineered from the storefront on OR-140:
   aged-cream sign · hunter-green roof + trim · wheat-tan siding ·
   barn-maroon sign lettering / phone number · warm string-light amber.
   Real on-location photography carries the design.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  --cream:      #f6eed8;
  --cream-2:    #efe3c6;
  --paper:      #fdf8ec;
  --ink:        #271f16;
  --ink-soft:   #4d4233;
  --muted:      #82715a;
  --line:       #e4d4ac;
  --line-soft:  #eee1bf;
  --pine:       #33503e;
  --pine-dark:  #253c2e;
  --pine-deep:  #1a2b20;
  --pine-light: #4d6e56;
  --maroon:     #7e2a30;
  --maroon-dark:#5f1f24;
  --wheat:      #d8b878;
  --wheat-dark: #b3914c;
  --gold:       #e0a23c;
  --char:       #20242b;
  --shadow-sm: 0 1px 2px rgba(26, 20, 12, 0.06), 0 2px 6px rgba(26, 20, 12, 0.05);
  --shadow-md: 0 4px 14px rgba(26, 20, 12, 0.10), 0 14px 36px rgba(26, 20, 12, 0.08);
  --shadow-lg: 0 8px 28px rgba(26, 20, 12, 0.16), 0 28px 72px rgba(26, 20, 12, 0.13);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --max: 1180px;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  z-index: 200;
  transition: width 0.12s ease-out;
}

/* ============================================================
   Top notice strip
   ============================================================ */
.notice-strip {
  background: var(--pine-deep);
  color: var(--cream);
  padding: 9px 0;
  font-size: 13px;
}
.notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.notice-tag {
  background: var(--gold);
  color: var(--pine-deep);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}
.notice-phone { color: var(--gold); font-weight: 700; }
.notice-dot { opacity: 0.4; }
.open-indicator {
  font-weight: 700;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.open-indicator.is-open { background: rgba(120, 150, 90, 0.28); color: #cbe29a; }
.open-indicator.is-closed { background: rgba(176, 70, 60, 0.28); color: #f0ab9f; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: rgba(246, 238, 216, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.0; }
.logo-name {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: 0.01em;
  font-style: italic;
  color: var(--maroon);
  font-variation-settings: "SOFT" 60, "opsz" 18;
}
.logo-sub {
  font-size: 10px;
  color: var(--pine);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav > a:hover { color: var(--maroon); }
.nav-cta {
  background: var(--maroon);
  color: var(--cream) !important;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(126, 42, 48, 0.28);
  transition: all 0.15s ease;
}
.nav-cta:hover { background: var(--maroon-dark); transform: translateY(-1px); }

.nav-toggle { display: none; width: 40px; height: 40px; background: transparent; border: 0; padding: 0; position: relative; }
.nav-toggle span { display: block; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s ease; }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  transition: all 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(126, 42, 48, 0.34);
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(253, 248, 236, 0.12);
  color: var(--cream);
  border: 1.5px solid rgba(246, 238, 216, 0.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost-ink:hover { background: var(--ink); color: var(--cream); }
.btn-large { padding: 18px 32px; font-size: 16px; }

/* ============================================================
   Section headings
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  margin: 0 0 14px;
}
.section-head { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.section-title {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-variation-settings: "SOFT" 90, "opsz" 144;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.section-sub { font-size: 18px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ============================================================
   Hero — full-bleed food photography
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pine-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 14, 10, 0.93) 0%, rgba(20, 16, 12, 0.6) 30%, rgba(24, 20, 14, 0.16) 62%, transparent 100%),
    linear-gradient(to right, rgba(18, 14, 10, 0.72) 0%, rgba(18, 14, 10, 0.22) 46%, transparent 74%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 24px 60px;
  width: 100%;
}
.hero-copy { max-width: 660px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 14, 10, 0.5);
  border: 1px solid rgba(246, 238, 216, 0.34);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(3px);
}
.hero-badge svg { color: var(--gold); }
.hero-title {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-variation-settings: "SOFT" 70, "opsz" 144;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: #fdf6e6;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-title .line { display: block; }
.hero-title .ital { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 19px;
  color: rgba(248, 240, 222, 0.94);
  max-width: 540px;
  margin: 0 0 30px;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 0;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 12px;
  color: rgba(246, 238, 216, 0.78);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-trust li strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  color: #fdf6e6;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 2px;
}

/* ============================================================
   Marquee / belt
   ============================================================ */
.belt {
  background: var(--pine);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  border-top: 5px solid var(--maroon);
  border-bottom: 5px solid var(--gold);
}
.belt-inner {
  display: flex;
  gap: 56px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: belt-scroll 34s linear infinite;
}
.belt-inner span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.belt-inner span::after {
  content: '✦';
  font-style: normal;
  color: var(--gold);
  font-size: 17px;
}
@keyframes belt-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Today's Specials
   ============================================================ */
.specials { padding: 88px 0; }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.special-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  transition: all 0.2s ease;
  opacity: 0.72;
}
.special-card.is-today {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine-dark);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 43, 32, 0.30);
}
.special-card .day-name {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--maroon);
}
.special-card.is-today .day-name { color: var(--gold); }
.special-card .special-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.special-card.is-today .special-name { color: var(--cream); }
.special-card .special-price {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.special-card.is-today .special-price { color: var(--gold); }
.special-card .today-pill {
  display: none;
  background: var(--gold);
  color: var(--pine-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.special-card.is-today .today-pill { display: inline-block; }

.specials-note {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.specials-note strong { color: var(--maroon); font-style: normal; }

/* ============================================================
   Menu (from the kitchen)
   ============================================================ */
.menu {
  padding: 88px 0;
  background: var(--cream-2);
}
.menu-intro {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 44px;
}
.menu-head { text-align: left; margin: 0; max-width: none; }
.menu-feature {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.menu-feature img { width: 100%; height: 100%; object-fit: cover; }
.menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  box-shadow: var(--shadow-md);
}
.menu-cat {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { padding: 11px 0; border-bottom: 1px dashed var(--line-soft); }
.menu-list li:last-child { border-bottom: 0; }
.mi-name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
}
.mi-flag {
  background: var(--maroon);
  color: var(--cream);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
}
.mi-desc { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.menu-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.menu-foot strong { color: var(--maroon); font-style: normal; }

/* ============================================================
   Pie case — editorial split (text + real photo accent)
   ============================================================ */
.pies { padding: 88px 0; }
.pies-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.pies-copy .section-head { text-align: left; margin: 0 0 22px; max-width: none; }
.pies-copy .section-title { text-align: left; }
.pies-copy p { font-size: 17px; color: var(--ink-soft); margin: 0 0 16px; }
.pies-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pies-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.pies-list li:last-child { border-bottom: 0; }
.pies-list .pie-name {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  color: var(--maroon);
  white-space: nowrap;
}
.pies-list .pie-note { color: var(--muted); font-size: 14px; }
.pies-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.pies-photo img { width: 100%; height: 100%; object-fit: cover; }
.pies-photo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.92) 12%, rgba(20, 18, 14, 0.55) 60%, transparent);
  padding: 46px 26px 22px;
  color: var(--cream);
  text-align: center;
}
.pies-photo-cap strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #fdf6e6;
  margin-bottom: 4px;
}
.pies-photo-cap span { display: block; font-size: 14px; color: rgba(246, 238, 216, 0.88); margin-bottom: 14px; }
.pies-photo-cap .btn { padding: 11px 22px; font-size: 14px; }

/* ============================================================
   Gallery — the place on OR-140 (real photos)
   ============================================================ */
.gallery {
  padding: 88px 0;
  background: var(--cream-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.span-2col { grid-column: span 2; }
.gallery-item.span-2row { grid-row: span 2; }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.78), transparent);
  color: var(--cream);
  padding: 22px 16px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-cap { opacity: 1; }

/* ============================================================
   Sam's story — real photo, dark pine section
   ============================================================ */
.story {
  padding: 92px 0;
  background: var(--pine-deep);
  color: var(--cream);
}
.story .section-eyebrow { color: var(--gold); }
.story-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.story-rating { display: flex; align-items: center; gap: 12px; }
.story-stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.story-rating-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: 46px;
  color: var(--maroon);
  line-height: 1;
}
.story-rating-sub { margin: 6px 0 20px; color: var(--muted); font-size: 14px; }
.story-rating-sub strong { color: var(--ink); }
.story-facts { list-style: none; margin: 0; padding: 0; }
.story-facts li { display: flex; flex-direction: column; gap: 3px; padding: 12px 0; border-top: 1px dashed var(--line); }
.story-facts li span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.story-facts li strong { font-size: 15px; color: var(--ink); font-weight: 700; }

.story-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #fdf6e6;
}
.story-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246, 238, 216, 0.85);
  margin: 0 0 14px;
}
.story-copy p.lede {
  font-size: 19px;
  color: #fdf6e6;
  font-weight: 500;
}
.story-sig {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-sig-name {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}
.story-sig-role { color: rgba(246, 238, 216, 0.6); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { padding: 88px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}
.review-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-meta strong { color: var(--ink); font-weight: 700; }
.review-meta span { font-size: 11px; letter-spacing: 0.06em; }

.reviews-source {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}
.reviews-source strong { color: var(--ink); font-size: 15px; }
.reviews-source a { color: var(--maroon); border-bottom: 1px dotted var(--maroon); }

/* ============================================================
   Traveler page (OR-140) — dusk photo band
   ============================================================ */
.traveler {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background: var(--pine-deep);
  color: var(--cream);
}
.traveler-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.26;
}
.traveler-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20, 30, 24, 0.72), rgba(20, 30, 24, 0.88));
}
.traveler .container { position: relative; z-index: 2; }
.traveler .section-eyebrow { color: var(--gold); }
.traveler .section-title { color: #fdf6e6; }
.traveler .section-sub { color: rgba(246, 238, 216, 0.82); }
.traveler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.traveler-card {
  background: rgba(253, 248, 236, 0.07);
  border: 1px solid rgba(246, 238, 216, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(3px);
  transition: all 0.2s ease;
}
.traveler-card:hover { transform: translateY(-3px); background: rgba(253, 248, 236, 0.12); }
.traveler-card svg { width: 34px; height: 34px; color: var(--gold); margin: 0 auto 12px; }
.traveler-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 4px;
  color: #fdf6e6;
}
.traveler-card .distance {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 8px 0 4px;
}
.traveler-card .direction { font-size: 13px; color: rgba(246, 238, 216, 0.72); }

/* ============================================================
   FAQ — visible answer blocks (mirrors FAQPage schema)
   ============================================================ */
.faq { padding: 88px 0; background: var(--cream-2); }
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--maroon);
}
.faq-item p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.faq-item p a { color: var(--maroon); font-weight: 700; border-bottom: 1px dotted var(--maroon); }

/* ============================================================
   Community note (Produce Connection)
   ============================================================ */
.community {
  padding: 0 0 88px;
}
.community-band {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
.community-band .cb-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  color: var(--gold);
}
.community-band .cb-text { flex: 1; min-width: 260px; }
.community-band h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 23px;
  margin: 0 0 4px;
  color: var(--gold);
}
.community-band p { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(246, 238, 216, 0.88); }

/* ============================================================
   Visit / find us — real embedded map
   ============================================================ */
.visit { padding: 88px 0; }
.visit-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 38px;
}
.visit-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.visit-info-row .visit-block { text-align: center; }
.visit-block h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
  border-bottom: 2px solid var(--maroon);
  display: inline-block;
  padding-bottom: 4px;
}
.visit-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.visit-block a { color: var(--maroon); font-weight: 700; border-bottom: 1px dotted var(--maroon); }
.visit-block a:hover { color: var(--maroon-dark); }
.visit-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visit-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(18, 14, 10, 0.82), transparent);
  color: var(--cream);
  padding: 28px 18px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Preview banner (Rise Local)
   ============================================================ */
.preview-banner {
  background: linear-gradient(135deg, var(--pine-deep), var(--pine-dark));
  color: var(--cream);
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}
.preview-banner strong { color: var(--gold); }
.preview-banner a { color: var(--gold); border-bottom: 1px dotted var(--gold); }
.preview-banner a:hover { color: var(--cream); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--pine-deep);
  color: var(--cream);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 46px;
}
.footer-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--gold);
}
.footer-col p { font-size: 14px; line-height: 1.85; color: rgba(246, 238, 216, 0.78); margin: 0; }
.footer-col a { color: rgba(246, 238, 216, 0.92); border-bottom: 1px dotted rgba(246, 238, 216, 0.3); }
.footer-col a:hover { color: var(--gold); border-color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo .logo-name { color: var(--gold); }
.footer-logo .logo-sub { color: rgba(246, 238, 216, 0.6); }
.footer-tag { font-size: 14px; line-height: 1.6; color: rgba(246, 238, 216, 0.72); margin: 0; }

.footer-bottom {
  border-top: 1px solid rgba(246, 238, 216, 0.12);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(246, 238, 216, 0.55);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   Reveal animations
   ============================================================ */
.menu-card, .pie-card, .review, .special-card, .traveler-card, .gallery-item, .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu-card.revealed, .pie-card.revealed, .review.revealed, .special-card.revealed,
.traveler-card.revealed, .gallery-item.revealed, .faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.special-card.is-today { opacity: 1; }
.special-card.is-today.revealed { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .belt-inner { animation: none; }
  .menu-card, .pie-card, .review, .special-card, .traveler-card, .gallery-item, .faq-item {
    opacity: 1; transform: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero { min-height: 80vh; }
  .hero-copy { max-width: none; }
  .order-layout { grid-template-columns: 1fr; gap: 24px; }
  .order-summary { position: static; }
  .pies-inner { grid-template-columns: 1fr; gap: 36px; }
  .pies-photo { max-width: 440px; margin: 0 auto; }
  .menu-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .menu-feature { max-width: 480px; }
  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-card { max-width: 440px; margin: 0 auto; }
  .menu-cols { grid-template-columns: 1fr; gap: 4px 22px; padding: 26px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .traveler-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2col { grid-column: span 1; }
  .visit-info-row { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
  .visit-media-row { grid-template-columns: 1fr; gap: 18px; }
  .visit-photo, .visit-map { aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .specials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 18px 24px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); align-items: stretch; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .visit-info-row { grid-template-columns: 1fr; gap: 18px; }
  .traveler-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.span-2row { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .specials-grid { grid-template-columns: 1fr 1fr; padding: 16px; }
  .hero { min-height: 0; padding-top: 42vh; }
  .hero-inner { padding-bottom: 44px; }
  .hero-title { font-size: clamp(38px, 11vw, 58px); }
  .hero-trust { gap: 22px; }
  .specials, .menu, .pies, .gallery, .story, .reviews, .traveler, .faq, .visit { padding: 60px 0; }
  .community { padding-bottom: 60px; }
  .community-band { padding: 24px; }
  .belt-inner { font-size: 18px; gap: 36px; }
  .belt-inner span { gap: 36px; }
}
