:root {
  --bg: #f5f2ea;
  --bg-alt: #efe8d6;
  --surface: rgba(255,255,255,.82);
  --surface-strong: rgba(255,255,255,.92);
  --text: #24211c;
  --muted: #665f53;
  --olive: #667a36;
  --olive-deep: #435322;
  --olive-soft: #90a55c;
  --gold: #c69a2d;
  --gold-soft: #e2c36b;
  --plum: #5a3d5c;
  --dark: #171512;
  --dark-soft: #211d18;
  --border: rgba(36,33,28,.12);
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --max: 1200px;
  --header: 92px;
}
@media (max-width: 640px) {
  :root {
    --header: 80px;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.menu-section-card,
.menu-item-card,
.menu-item-body,
.menu-item-copy {
  min-width: 0;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid rgba(198,154,45,.9);
  outline-offset: 3px;
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 15px 0 125px;
}
.section:not(.hero-home) {
  z-index: 2;
}
.section-light { background: var(--bg); }
.section-olive { background: linear-gradient(180deg, #788d47 0%, #607336 100%); color: #fff; }
.section-cream { background: var(--bg-alt); }
.section-dark { background: radial-gradient(circle at top, rgba(86,95,48,.25), transparent 36%), linear-gradient(180deg, #171512 0%, #100f0d 100%); color: #fff; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,245,236,.95));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36,33,28,.08);
  box-shadow: 0 8px 24px rgba(28,25,20,.08);
}
.site-header.scrolled { background: linear-gradient(180deg, rgba(255,255,255,.995), rgba(250,245,236,.97)); }
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  width: clamp(9.8rem, 15vw, 15rem);
  padding:8px 0;
  height: auto;
}
.desktop-nav {
  margin-left: auto;
}
.desktop-nav ul,
.mobile-menu ul,
.contact-list,
.hero-highlights,
.site-footer ul,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--text);
}
.desktop-nav a,
.desktop-nav button {
  position: relative;
  color: var(--text);
  background: none;
  border: 0;
  padding: .85rem .35rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease;
}

.desktop-nav a::after,
.desktop-nav button::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: .45rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--olive-soft));
  transform: translateX(-50%);
  transition: width .24s ease, opacity .24s ease;
  opacity: .85;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav button:hover,
.desktop-nav button:focus-visible {
  color: var(--olive-deep);
  transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav button:hover::after,
.desktop-nav button:focus-visible::after {
  width: calc(100% - .7rem);
}

.desktop-nav a[aria-current="page"],
.desktop-nav button.is-current-parent,
.desktop-nav button[aria-expanded="true"] {
  color: var(--olive-deep);
}

.desktop-nav a[aria-current="page"]::after,
.desktop-nav button.is-current-parent::after,
.desktop-nav button[aria-expanded="true"]::after {
  width: calc(100% - .7rem);
  opacity: 1;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 15rem;
  padding: .65rem;
  background: rgba(255,250,241,.98);
  border: 1px solid rgba(36,33,28,.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(.65rem) scale(.98);
  transform-origin: top left;
  transition: opacity .22s ease, transform .22s ease;
}
.has-dropdown.is-open .dropdown,
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li + li { margin-top: .15rem; }
.dropdown a {
  display: block;
  padding: .75rem .9rem;
  border-radius: 14px;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(102,122,54,.08);
}
.dropdown a[aria-current="page"] {
  background: rgba(102,122,54,.12);
  color: var(--olive-deep);
}
.menu-toggle {
  display: none;
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(104, 97, 77, 0.18);
  background: var(--olive);
  box-shadow: 0 8px 20px rgba(28, 25, 20, 0.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(198,154,45,.28);
  box-shadow: 0 12px 24px rgba(28,25,20,.12);
}
.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: #fff;
  margin: .24rem auto;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .34s ease, visibility .34s ease;
}

.mobile-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(198,154,45,.18), transparent 30%),
    linear-gradient(180deg, rgba(31, 36, 21, .90), rgba(14, 15, 10, .97));
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .36s ease;
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  padding: 5.75rem 2rem 2rem;
  background:
    linear-gradient(180deg, rgba(30,33,23,.96), rgba(17,19,13,.985)),
    url('/assets/img/brand/olive-overlay.png') center/cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(2.25rem) scale(.985);
  transition:
    opacity .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-visible .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .34s cubic-bezier(.22, 1, .36, 1),
    transform .34s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-visible ul li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-visible ul li:nth-child(1) { transition-delay: .10s; }
.mobile-menu.is-visible ul li:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-visible ul li:nth-child(3) { transition-delay: .18s; }
.mobile-menu.is-visible ul li:nth-child(4) { transition-delay: .22s; }
.mobile-menu.is-visible ul li:nth-child(5) { transition-delay: .26s; }
.mobile-menu.is-visible ul li:nth-child(6) { transition-delay: .30s; }
.mobile-menu.is-visible ul li:nth-child(7) { transition-delay: .34s; }
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(240, 207, 127, 0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px) scale(.94);
  transition:
    opacity .28s ease,
    transform .28s ease,
    background .22s ease;
}

.mobile-menu:not([hidden]) .menu-close {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .08s;
}
.menu-close:hover,
.menu-close:focus-visible {
  background: rgba(240, 207, 127, 0.14);
}
.mobile-menu ul { text-align: center; }
.mobile-menu a {
  display: inline-block;
  color: #fff;
  font: 600 clamp(1.85rem, 7vw, 3rem)/1.08 'Cormorant Garamond', serif;
  padding: .5rem 1rem;
  margin: 4px auto;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: #f0cf7f;
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.mobile-menu a[aria-current="page"] {
  color: #f0cf7f;
  background: rgba(240,207,127,.10);
  box-shadow: inset 0 0 0 1px rgba(240,207,127,.18);
}
.social-nav {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;    
  width: 100%;
  margin: auto;
  max-width: 265px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(36,33,28,.12);
  background: rgba(255,255,255,.82);
  color: var(--text);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.social-link svg {
  width: 1rem;
  height: 1rem;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(144,165,92,.9);
  border-color: rgba(198,154,45,.28);
}
.social-nav-mobile {
  justify-content: center;
  margin-top: 1.5rem;
  margin:auto;
}
.social-nav-mobile .social-link {
  background: rgba(255,255,255,.08);
  border-color: rgba(240,207,127,.18);
  color: #fff;
}
.mobile-menu .social-nav-mobile a.social-link {
	display: grid;
}
.social-nav-footer {
  margin-top: 1.25rem;
}
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.social-link-review {
  width: auto;
  min-width: 0;
  padding: .6rem .9rem;
  gap: .55rem;
}
.social-link-text {
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.mobile-menu-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.mobile-menu-legal a {
  font: 500 1rem/1.4 Inter, sans-serif;
  color: rgba(255,255,255,.75);
}
.hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-home {
  position: sticky;
  top: 0;
  margin-top: 0;
  z-index: 0;
}

.short-hero { min-height: 34rem; }
.mini-hero { min-height: 18rem; }

.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: -104px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(14,13,11,.82),
    rgba(14,13,11,.4) 60%,
    rgba(14,13,11,.62)
  );
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  inset: auto -8rem -5rem auto;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle at center, rgba(198,154,45,.35), transparent 60%);
  filter: blur(8px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: 100vh;
  margin-left:120px;	
}
/* Simple gradient hero for interior pages */
.hero-simple {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(198,154,45,.16), transparent 28%),
    radial-gradient(circle at left center, rgba(144,165,92,.14), transparent 32%),
    linear-gradient(180deg, #1b1814 0%, #12100d 100%);
  color: #fff;
}

.hero-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 45%);
  pointer-events: none;
}

.hero-simple-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.hero-simple h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: .95;
  margin: 0 0 1rem;
}

.hero-simple .hero-copy {
  max-width: 40rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.legal-shell {
  max-width: 56rem;
}

.legal-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  margin: 1.6rem 0 .5rem;
}

.legal-copy p + p {
  margin-top: .9rem;
}

.not-found-card {
  max-width: 42rem;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .hero-simple {
    min-height: 15.5rem;
  }

  .hero-simple-content {
    padding-bottom: 4rem;
  }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 800;
  color: #e6c56e;
}
.hero h1,
.section h2,
.site-footer .footer-title,
.faq-card h2,
.menu-category h3,
.info-card h3,
.cta-card h2,
.provider-card strong {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0 0 1rem;
}
.hero h1 { font-size: clamp(3.2rem, 4vw, 6.5rem); }
.hero-copy {
  font-size: clamp(1.04rem, 2.2vw, 1.26rem);
  max-width: 42rem;
  color: rgba(255,255,255,.88);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #241a05; }
.button-secondary {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.section-light .button-secondary,
.section-cream .button-secondary {
  color: var(--text);
  border-color: rgba(36,33,28,.15);
  background: rgba(255,255,255,.72);
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.86);
}
.hero-highlights li {
  padding: .45rem .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: var(--olive);
}

.section-divider {
  display: block;
  line-height: 0;
  margin-top: -4.5rem;
  position: relative;
  z-index: 3;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 104px;
}
.section-divider path:first-child { fill: currentColor; }
.divider-to-light { color: var(--bg); }
.divider-to-olive { color: #788d47; }
.divider-to-cream { color: var(--bg-alt); }
.divider-to-dark { color: #151310; }
.vine-stem {
  fill: none;
  stroke: rgba(84,106,44,.85);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.vine-leaf.leaf-olive { fill: rgba(102,122,54,.95); }
.vine-leaf.leaf-sage { fill: rgba(161,178,108,.92); }
.vine-leaf.leaf-gold { fill: rgba(198,154,45,.85); }
.vine-olive { fill: rgba(92,61,92,.88); }
.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}
.align-center { align-items: center; }
.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}
.section h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  color: var(--olive-deep);
  margin-top: 1rem;
}
.text-link::after { content: '→'; }
.media-card,
.video-frame,
.map-card,
.info-card,
.cta-card,
.menu-category,
.provider-card,
.faq-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card,
.video-frame,
.map-card { background: #dcd7cb; }
.media-card video,
.media-card img,
.map-card img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}
.vine-frame {
  position: relative;
}
.vine-frame::before,
.vine-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198,154,45,.18);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.vine-frame::after {
  inset: auto auto 20px 20px;
  width: 6rem;
  height: 6rem;
  border: 0;
  background: radial-gradient(circle at 35% 35%, rgba(198,154,45,.4), transparent 60%);
  filter: blur(8px);
}
.video-frame {
  position: relative;
}
.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.play-button {
  position: absolute;
  inset: auto auto 1.2rem 1.2rem;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  font-size: 1.35rem;
  color: #111;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.card-grid,
.faq-grid {
  display: grid;
  gap: 1.4rem;
}
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-2,
.faq-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-preview {
  display: grid;
  gap: 1.2rem;
}
.info-card,
.cta-card,
.provider-card,
.faq-card {
  padding: 1rem;
}
.info-card,
.cta-card,
.theme-card,
.provider-card,
.faq-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.section-light .info-card,
.section-cream .info-card,
.section-light .cta-card,
.section-cream .cta-card,
.section-light .faq-card,
.section-cream .faq-card {
  background: var(--surface-strong);
}
.info-card img {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
  height: auto;
}
.info-card h3,
.provider-card strong {
  font-size: 1.55rem;
}
.cta-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  min-height: 2rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(198,154,45,.35);
  background: rgba(198,154,45,.14);
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
}
.bullet-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-top: .55rem;
}
.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}
.contact-list li {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(36,33,28,.08);
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.provider-card {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.1)), rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}
.provider-card span {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.72);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.menu-category {
  background: var(--surface-strong);
  padding: 1.25rem;
}
.menu-category h3 { font-size: 2rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid var(--border);
}
.menu-item:first-child { border-top: 0; }
.menu-item strong { display: block; }
.parallax-shell { overflow: hidden; }
.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .11;
  transform: translateY(0) scale(1.15);
  will-change: transform;
  pointer-events: none;
}
.legal-content {
  max-width: 54rem;
}
.legal-content h2 { font-size: 2rem; margin-top: 2rem; }
.centered-copy {
  text-align: center;
}
.centered-action,
.centered-buttons {
  justify-content: center;
}
.site-footer {
  background: #100f0d;
  color: #fff;
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-logo {
  width: clamp(10rem, 18vw, 14rem);
  height: auto;
  margin-bottom: 1rem;
}
.site-footer .footer-title {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
}
.footer-bottom nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-nav.social-nav-footer {margin:auto;max-width:100%;} 
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .button,
  .dropdown,
  .menu-toggle span,
  .parallax-bg,
  .provider-card {
    transition: none;
  }
}
@media (max-width: 1024px) {
  .desktop-nav,
  .social-nav-header { display: none; }

  .menu-toggle { display: block; }

  .grid-two,
  .cols-3,
  .cols-2,
  .menu-grid,
  .footer-grid,
  .provider-grid,
  .faq-preview {
    grid-template-columns: 1fr;
  }

  .hero h1 { max-width: 12ch; }

  .site-header {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,245,236,.94));
  }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .section { padding: 1px 0 120px; }
  .header-inner { min-height: 80px; }
 .hero-content {
	 margin-left:25px;
	 padding-right:25px;
 }
  .hero-home .hero-content {
    display: flex;
    flex-direction: column;
  }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 6.5rem); }
  .short-hero { min-height: 26rem; }
  .mini-hero { min-height: 14rem; }
  .button { width: 100%; }
  .button-row.wrap .button { width: auto; }
  .hero-highlights { gap: .6rem; }
  .hero-highlights li { font-size: .9rem; }
  .play-button { width: 3.2rem; height: 3.2rem; }
  .mobile-menu { padding-top: 5.5rem; }
  .provider-card { min-height: 11rem; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none; }
}


body.menu-open { overflow: hidden; }
@media (min-width: 1025px) {
  .mobile-menu { display: none; }
}
@media (max-width: 640px) {
  .social-nav-footer, .review-links { justify-content: flex-start; }
  .social-link-review { width: auto; }
  .parallax-bg {background-position:15%;	}
}


/* Family Story Home Page */
@media (max-width: 1024px) {
  .family-story-media {
    order: -1;
  }
}
@media (max-width: 640px) {
  .family-story-media video {
    min-height: 20rem;
  }
}


/* Reserve / Order cards on homepage */
.home-reserve-order .section-heading {
  max-width: 46rem;
}

.reserve-order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.reserve-order-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.reserve-order-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: .95;
}

.reserve-order-card p {
  margin: 0;
  color: rgba(255,255,255,.84);
}

.reserve-order-card .bullet-list {
  margin-top: .25rem;
}

.reserve-order-card .button-stack,
.reserve-order-card .delivery-app-list {
  margin-top: auto;
}

.reserve-order-feature {
  border-color: rgba(198,154,45,.22);
  background:
    radial-gradient(circle at top right, rgba(198,154,45,.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}

.delivery-app-list {
  display: grid;
  gap: .8rem;
}

.delivery-app {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.delivery-app strong {
  font-size: 1rem;
  color: #fff;
}

.delivery-app span {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}

.delivery-app:hover,
.delivery-app:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198,154,45,.34);
  background: rgba(255,255,255,.08);
}

@media (max-width: 1024px) {
  .reserve-order-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reserve-order-card {
    padding: 1.15rem;
  }

  .reserve-order-card h3 {
    font-size: 1.9rem;
  }
}


/* Menu Page */
.menu-hero .hero-content {
  max-width: 56rem;
}

.menu-intro-section {
  padding-top: 3.5rem;
}

.menu-overview-grid {
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 2rem;
}

.menu-cta-card {
  align-self: stretch;
}

.button-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.menu-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.menu-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.menu-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  min-height: 1.8rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(102,122,54,.1);
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-rendered {
  display: grid;
  gap: 1.5rem;
}

.menu-section-card {
  background: var(--surface-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(36,33,28,.08);
  width: 100%;
}
.menu-section-card {
  background: var(--surface-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(36,33,28,.08);
  margin: 0 auto 45px;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}
.menu-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-section-head .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.45rem;
  color: rgba(102,122,54,.88);
}


.menu-section-head h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 0.94;
}

.menu-section-head p:last-child,
.menu-section-head > div > p:last-child {
  max-width: 54rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.menu-count {
  white-space: nowrap;
  font-weight: 700;
  color: var(--olive-deep);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.menu-item-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
  border-radius: 18px;
  padding-inline: 0.25rem;
}

.menu-item-card:nth-child(-n + 2) {
  border-top: 0;
  padding-top: 0.35rem;
}

.menu-item-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.22rem;
  font-family: 'Cormorant Garamond', serif;
}

.menu-item-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
	letter-spacing: -0.01em;
  margin-bottom: 0.22rem;
}

.menu-item-price {
  margin: 0;
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
  color: var(--olive-deep);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.menu-item-price span[itemprop="price"] {
  display: none;
}

.menu-item-price > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.menu-item-card.has-image {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  border: 1px solid rgba(36,33,28,.08);
}

.menu-item-media {
  border-radius: 18px;
  overflow: hidden;
  background: #ddd7ca;
  min-height: 140px;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.menu-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
}

.menu-item-card.has-image .menu-item-price {
  text-align: left;
}

@media (max-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-item-card:nth-child(-n + 2) {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  .menu-item-card:first-child {
    border-top: 0;
    padding-top: 0.35rem;
  }
}

@media (max-width: 640px) {
  .menu-chip-nav {
    gap: 0.6rem;
  }

  .menu-chip {
    width: 100%;
    justify-content: space-between;
  }

  .menu-section-head {
    flex-direction: column;
    align-items: start;
  }

  .menu-item-card {
    gap: 0.75rem;
  }

  .menu-item-copy h3 {
    font-size: 1.3rem;
  }

  .menu-item-card.has-image {
    grid-template-columns: 1fr;
  }

  .menu-item-media,
  .menu-item-media img {
    min-height: 220px;
  }
}

.menu-hero .hero-content {
  max-width: 56rem;
}

.menu-intro-section {
  padding-top: 3.5rem;
}

.menu-overview-grid {
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 2rem;
}

.menu-cta-card {
  align-self: stretch;
}

.button-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.menu-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.menu-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.menu-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  min-height: 1.8rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(102,122,54,.1);
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-rendered {
  display: grid;
  gap: 1.5rem;
}

.menu-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.menu-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-section-head h2 {
  margin-bottom: 0.35rem;
}

.menu-section-head p:last-child,
.menu-section-head > div > p:last-child {
  margin-bottom: 0;
}

.menu-count {
  white-space: nowrap;
  font-weight: 700;
  color: var(--olive-deep);
}

.menu-item-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198,154,45,0), rgba(198,154,45,.42), rgba(198,154,45,0));
  opacity: 0;
  transition: opacity .22s ease;
}

.menu-item-card:hover,
.menu-item-card:focus-within {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.3));
}

.menu-item-card:hover::after,
.menu-item-card:focus-within::after {
  opacity: 1;
}

.menu-item-card:nth-child(-n + 2) {
  border-top: 0;
  padding-top: 0.35rem;
}

.menu-item-copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  overflow-wrap: anywhere;
  word-break: normal;
}

.menu-item-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
  word-break: normal;
}

.menu-item-price {
  margin: 0;
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
  color: var(--olive-deep);
}

.menu-item-price > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (max-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-item-card:nth-child(-n + 2) {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  .menu-item-card:first-child {
    border-top: 0;
    padding-top: 0.35rem;
  }
}

@media (max-width: 640px) {
  .menu-chip-nav {
    gap: 0.6rem;
  }

  .menu-chip {
    width: 100%;
    justify-content: space-between;
  }

  .menu-section-head {
    flex-direction: column;
    align-items: start;
  }

  .menu-item-card {
    gap: 0.75rem;
  }

  .menu-item-copy h3 {
    font-size: 1.3rem;
  }
}

.menu-section-card {
  scroll-margin-top: calc(var(--header) + 2rem);
}

@media (max-width: 640px) {
  .menu-section-card {
    scroll-margin-top: calc(var(--header) + 1.25rem);
  }
}

.menu-preview-mode {
  display: grid;
  gap: 1.5rem;
}

.menu-preview-mode .menu-section-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,244,236,.88));
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.menu-preview-mode .menu-section-head {
  margin-bottom: 1rem;
}

.menu-preview-mode .menu-items-grid {
  gap: 1rem;
}

.menu-preview-mode .menu-item-card.has-image {
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
}

.menu-preview-mode .menu-item-media {
  min-height: 220px;
}

.menu-preview-mode .menu-item-media img {
  min-height: 220px;
  height: 220px;
}

.menu-preview-mode .menu-item-body {
  padding-top: .25rem;
}

.menu-preview-mode .menu-item-copy p {
  display: none;
}

.menu-preview-mode .menu-item-price {
  font-size: 1rem;
  font-weight: 700;
}

.menu-preview-footer {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(36,33,28,.08);
}

@media (min-width: 900px) {
  .menu-preview-mode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-item-card.no-image {
  display: block;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(36,33,28,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
}

.menu-item-card.no-image .menu-item-body {
  display: grid;
  gap: .65rem;
}

.menu-item-card.no-image .menu-item-price {
  text-align: left;
  font-size: 1.05rem;
}

.menu-item-card.no-image .menu-item-copy h3 {
  margin-bottom: .35rem;
}

.menu-item-card.no-image .menu-item-copy p {
  max-width: 52ch;
}

/* Homepage location / map section */
.home-location .section-heading {
  max-width: 52rem;
}

.location-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 1.35rem;
  align-items: stretch;
}

.location-photo-card,
.location-map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(36,33,28,.08);
  background: var(--surface-strong);
}

.location-photo-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(249,246,239,.95));
}

.location-photo-placeholder {
  min-height: 100%;
  height: 100%;
  min-height: 38rem;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(102,122,54,.08), rgba(198,154,45,.08)),
    radial-gradient(circle at top right, rgba(198,154,45,.18), transparent 32%),
    #e7e0d2;
  color: var(--olive-deep);
  text-align: center;
  font-weight: 700;
  letter-spacing: .02em;
}

.location-photo-placeholder span {
  display: inline-flex;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(36,33,28,.1);
}

.location-map-card {
  display: flex;
  flex-direction: column;
}

.map-embed-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d8d2c6;
  border-bottom: 1px solid rgba(36,33,28,.08);
}

.map-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 1.15rem 0;
}

.location-details p {
  margin: 0;
}

.location-label {
  margin-bottom: .35rem !important;
  color: var(--olive-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  padding: 1.15rem;
}

@media (max-width: 1024px) {
  .location-showcase {
    grid-template-columns: 1fr;
  }

  .location-photo-placeholder {
    min-height: 24rem;
  }

  .location-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .location-actions {
    flex-direction: column;
  }

  .location-actions .button {
    width: 100%;
  }
}	


/* Sectioned luxury-menu browsing on larger screens */
@media (min-width: 1025px) {
  html {
    scroll-padding-top: calc(var(--header) + 1.5rem);
  }

  .menu-rendered {
    scroll-snap-type: y proximity;
  }

  .menu-section-card {
    scroll-snap-align: start;
  }

  .menu-chip-nav {
    position: sticky;
    top: calc(var(--header) + 1rem);
    z-index: 6;
    padding: 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
    border: 1px solid rgba(36,33,28,.08);
  }

  .menu-chip {
    transition:
      transform .2s ease,
      background .2s ease,
      border-color .2s ease,
      box-shadow .2s ease;
  }

  .menu-chip:hover,
  .menu-chip:focus-visible {
    transform: translateY(-1px);
    background: #fff;
    border-color: rgba(198,154,45,.28);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
  }
}

/*  About Page */
.about-hero-content {
	margin-right:25px;
	padding-left:0;
	max-width:600px;	
}

@media (max-width: 640px) {
 .about-hero-content {
	margin-right:0;
	padding-left:25px;
 }
 }