
:root {
  --primary: #008854;
  --primary-dark: #177a43;
  --secondary: #13AA6D;
  --secondary-gold: #E6F7EE;
  --secondary-brown: #13AA6D;
  --accent-green: #5E9B3A;
  --accent-cream: #efebe1;
  --accent-2: #13AA6D;
  --fg-accent-2: #13AA6D;
  --bg: #f3efe7;
  --text: #4a4842;
  --gray: #7c7a72;
  --border: #e2dccf;
  --surface: #fbfaf6;
  --page: #f3efe7;
  --font-heading: 'Playfair Display', serif;
  --font-display: 'Playfair Display', serif;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Template-specific styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Oswald:wght@400;500;700&family=PT+Serif:wght@400;700&family=Arvo:wght@400;700&display=swap');

/* ─── Custom Properties ──────────────────────────────────────────────────────
   Mapped to the theme tokens emitted by the site theme (--primary, --secondary,
   --text, --font-heading, …) so the editor's color palettes / fonts drive the
   template. The literals are fallbacks that preserve the default Storefront look —
   a warm, light-mode cafe theme: cream surfaces, near-black headings, emerald accent. */
:root {
  --fg-primary:      var(--primary);
  --fg-primary-dark: var(--primary-dark);
  --fg-secondary:    var(--secondary);
  --fg-accent:       var(--accent-cream);
  --fg-accent-2:     var(--accent-2, var(--secondary));
  --fg-cream:        var(--surface);
  --fg-bg:           var(--bg);
  --fg-surface:      var(--surface;)
  --fg-text:         #161616;;
  --fg-text-muted:   #161616;
  --fg-heading:      #161616;
  --fg-border:        #525252;
  --fg-border1:        #C6C3BA;
  /* Brand type families — Display / Title / Body. A [data-font] variant on the
     root element swaps all three at once (see the brand font variants below).
     Title currently mirrors Display; the editor's --font-heading / --font-body
     still win when explicitly set. */
  /* --font-display:    'Playfair Display', Georgia, serif;
  --font-title:      'Playfair Display', Georgia, serif;
  --fg-font-heading: var(--font-heading, var(--font-display));
  --fg-font-title:   var(--font-title, var(--font-display, 'Playfair Display', Georgia, serif));
  --fg-font-body:    var(--font-body, 'Lora', Georgia, serif); */
  /* Font family */
  /* --font-display: 'Inter', sans-serif;
  --font-title:   'Inter', sans-serif;
  --font-body:    'Inter', sans-serif; */



  /* Font weight (constant across all font-family modes) */
  --font-weight-bold: 700;
  --font-weight-semi: 500;
  --font-weight-book: 400;

  /* Font size (constant across modes, except xl5 under "condensed") */
  --font-size-xs:  0.750rem; /* 12px */
  --font-size-sm:  0.875rem; /* 14px */
  --font-size-md:  1.000rem; /* 16px */
  --font-size-lg:  1.250rem; /* 20px */
  --font-size-xl:  1.500rem; /* 24px */
  --font-size-xl2: 2.000rem; /* 32px */
  --font-size-xl3: 2.500rem; /* 40px */
  --font-size-xl4: 3.500rem; /* 56px */
  --font-size-xl5: 4.500rem; /* 72px (condensed = 5.500rem / 88px) */

  /* Line height (constant across modes, except xl5 under "condensed") */
  --line-height-sm:  1.250rem; /* 20px */
  --line-height-md:  1.500rem; /* 24px */
  --line-height-lg:  1.750rem; /* 28px */
  --line-height-xl:  2.000rem; /* 32px */
  --line-height-xl2: 2.500rem; /* 40px */
  --line-height-xl3: 2.750rem; /* 44px */
  --line-height-xl4: 3.750rem; /* 60px */
  --line-height-xl5: 4.500rem; /* 72px (condensed = 5.500rem / 88px) */

  /* Letter spacing (constant across all font-family modes) */
  --letter-spacing-tighter: -0.0625rem; /* -1.0px */
  --letter-spacing-tight:   -0.0250rem; /* -0.4px */
  --letter-spacing-normal:   0rem;      /*  0.0px */
  --letter-spacing-wide:     0.0250rem; /*  0.4px */
}

/* ─── Brand font variants — set data-font on the root element to apply ────────
   Each variant defines the Display / Title / Body families per the brand type
   system:  Sans Serif · Condensed · Serif · Slab. */
[data-font="sans-serif"] { --font-display: 'Inter', system-ui, sans-serif;    --font-title: 'Inter', system-ui, sans-serif;    --font-body: 'Inter', system-ui, sans-serif; }
[data-font="condensed"]  { --font-display: 'Oswald', system-ui, sans-serif;   --font-title: 'Oswald', system-ui, sans-serif;   --font-body: 'Inter', system-ui, sans-serif; }
[data-font="serif"]      { --font-display: 'PT Serif', Georgia, serif;         --font-title: 'PT Serif', Georgia, serif;         --font-body: 'PT Serif', Georgia, serif; }
[data-font="slab"]       { --font-display: 'Arvo', Georgia, serif;             --font-title: 'Arvo', Georgia, serif;             --font-body: 'Inter', system-ui, sans-serif; }

/* ─── Base ───────────────────────────────────────────────────────────────── */
body { font-family: var(--fg-font-body); color: var(--fg-text); background: var(--fg-bg); line-height: 1.6; margin: 0; }
*, *::before, *::after { box-sizing: border-box; }
/* h1, h2, h3 { font-family: var(--fg-font-heading); color: var(--fg-heading); margin: 0; }
h4, h5, h6 { font-family: var(--fg-font-title); color: var(--fg-heading); margin: 0; } */
p { margin: 0; }
img { display: block; max-width: 100%; }
.container { max-width: 1366px; margin: 0 auto; padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }
@media (max-width: 1024px) { .container { padding: 0 16px !important; } }
@media (max-width: 768px)  { .container { padding: 0 16px !important; }
.locations-fg__map {
  min-width: 328px !important;
  max-height: 200px !important;
}
.section-locations-fg { padding-block: var(--spacing-lg) !important; }
  .banner__btn {
  min-height: 48px !important; width:100% !important;
}
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-finegrille             { display: inline-block; font-family: var(--fg-font-body); font-weight: 700; font-size: 1rem; text-decoration: none; border-radius: 0px; padding: 0.85rem 2rem; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.btn-primary-finegrille     { background: transparent; border: 2px solid var(--fg-secondary); color: #fff; }
.btn-primary-finegrille:hover { background: var(--fg-primary); border-color: var(--fg-primary); color: #fff; }
.btn-outline-finegrille     { background: transparent; color: var(--fg-secondary); border: 2px solid var(--fg-secondary); }
.btn-outline-finegrille:hover { background: var(--fg-primary); color: #fff; }
.btn-outline-white-finegrille { background: transparent; border: 2px solid var(--fg-secondary); color: #fff; }
.btn-outline-white-finegrille:hover { background: var(--fg-primary); border-color: var(--fg-primary); color: #fff; }
.featured-dish-cat .btn-primary-finegrille,
.cta-content .btn-primary-finegrille,
.map-fg-card .btn-primary-finegrille      { border-radius: 0px;
    background: var(--fg-secondary);
    color: #ffffff;
    font-size: 14px;
    font-weight: normal; 
        width: max-content;
    margin: 0 auto;
    padding: 0.75rem 2rem;
  }
.featured-dish-cat .btn-primary-finegrille:hover,
.cta-content .btn-primary-finegrille:hover,
.map-fg-card .btn-primary-finegrille:hover  { border-radius: 0px;
    background: color-mix(in srgb, var(--fg-primary) 85%, transparent);
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;  }

/* ─── Section shared ─────────────────────────────────────────────────────── */
.section-finegrille { padding: 80px 0; }
.section-eyebrow-finegrille { font-size: 16px;
        text-transform: uppercase;
        letter-spacing: .3em;
        color: #7c7c7c !important;
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        height: inherit !important; }
.section-heading-finegrille { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1.1; color: var(--fg-heading); margin-bottom: 1.25rem; text-align: center; }
.section-desc-finegrille    { font-size: 1.125rem; color: var(--fg-text-muted); line-height: 1.6; max-width: 660px; }

/* ─── Header ────────────────────────────────────────────────────────────── */
.site-header-FineGrille { background: var(--fg-primary); color: #fff; position: sticky; top: 0; z-index: 50; transition: background 0.3s ease, backdrop-filter 0.3s ease; }
.header-topbar-FineGrille { background: rgba(0,0,0,0.18); height: 40px; display: flex; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.85); }
.header-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; padding: 0 88px; }
.header-topbar-left  { display: flex; align-items: center; gap: 1.25rem; }
.header-topbar-right { display: flex; align-items: center; gap: 0.6rem; }
.topbar-item         { display: flex; align-items: center; gap: 0.35rem; opacity: 0.9; }
.topbar-icon         { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-link         { color: inherit; text-decoration: none; }
.topbar-link:hover   { opacity: 0.8; }
.social-icon-link    { display: flex; align-items: center; color: inherit; opacity: 0.8; transition: opacity 0.2s; }
.social-icon-link:hover { opacity: 1; }
.site-nav-FineGrille { display: flex; justify-content: space-between; align-items: center; min-height: 72px; max-width: 1296px; margin: 0 auto; padding: 0 88px; }
.logo { font-family: var(--fg-font-heading); font-size: 1.4rem; font-weight: 600; color: #fff; text-decoration: none; }
.logo-img-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-links-FineGrille { display: flex; gap: 2rem; align-items: center; }
/* Phone/email live in the topbar on desktop; only surface inside the mobile menu */
.nav-contact-fg { display: none; }
.nav-link { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; padding: 0.25rem 0; border-bottom: 1px solid transparent; }
.nav-link:hover, .nav-link-active { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }
.header-cta-FineGrille { background: var(--fg-secondary); color: #fff; text-decoration: none; padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; transition: background 0.2s; margin-left: 1rem; }
.header-cta-FineGrille:hover { background: var(--fg-primary); }
body.has-hero .site-header-FineGrille { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 70%, transparent 100%); box-shadow: none; }
.site-header-FineGrille.header-scrolled { background: var(--fg-primary) !important; backdrop-filter: blur(12px) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.15) !important; }
.hamburger-menu { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 0; gap: 5px; color: white; }
.hamburger-line { width: 24px; height: 2.5px; background: var(--fg-surface); border-radius: 2px; transition: all 0.3s ease; }
.hamburger-menu.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger-menu.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-menu.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
@media (max-width: 768px) {
  .nav-links-FineGrille { display: none; flex-direction: column; align-items: flex-start; gap: 1.5rem; width: 100%; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
  .nav-links-FineGrille.active { display: flex; }
  .hamburger-menu { display: flex; }
  .site-nav-FineGrille { padding: 0 20px; flex-wrap: wrap; }
  /* Hide topbar on mobile; phone & email move into the hamburger menu */
  .header-topbar-FineGrille { display: none; }
  .nav-contact-fg {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .nav-contact-fg-link { display: inline-flex; align-items: center; gap: 0.55rem; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; }
  .nav-contact-fg-link:hover { color: #fff; }
  .nav-contact-fg-icon { width: 16px; height: 16px; flex-shrink: 0; }
  .form2__main, .form2__aside {
    padding: var(--spacing-xs) !important;
    border-top: 1px solid var(--fg-border) !important;
  }
  .form2__btn {
    min-height: 48px !important;
    width: 100% !important;
}
.form2__form > :not(:last-child):not(:nth-last-child(5)) {
  margin-bottom: 0px;
}
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer-FineGrille { background: var(--fg-surface); color: var(--fg-text-muted); padding: 60px 0 32px; padding-top: 0px; }
.footer-inner-FineGrille { display: flex; flex-direction: column; gap: 0px; }
.footer-brand-fg    { font-family: var(--fg-font-heading); font-size: 1.4rem; font-weight: 600; color: var(--fg-text-muted); margin-bottom: 4px; }
.footer-tagline-fg  { font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-nav-fg      { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding-bottom: 20px;  }
.footer-nav-fg a    { color: var(--fg-text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-nav-fg a:hover { color: var(--fg-text-muted); }
.footer-legal-fg    { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-legal-fg a  { color: var(--fg-text-muted); text-decoration: none; font-size: 0.8rem; }
.footer-bottom-fg   { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #333333; gap: 1rem; flex-wrap: wrap; }
.footer-copyright-fg { font-size: 0.8rem; color: var(--fg-text-muted) }
.footer-powered-fg  { font-size: 0.8rem; color: var(--fg-text-muted) }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.section-hero-finegrille { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-fg-bg  { position: absolute; inset: 0; }
.hero-fg-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-fg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); }
.hero-fg-content    { position: relative; z-index: 2; width: 100%; padding: 160px 0 100px; }
.hero-fg-text       { max-width: 100%; text-align: center;}
.hero-fg-eyebrow    { font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.hero-fg-headline   { font-size: 88px; font-weight: bold; line-height: 1.2; color: #fff; margin-bottom: 1.25rem; }
.hero-fg-subheadline { font-size: 20px; color: rgba(255,255,255,0.70); line-height: 1.6; margin: 0 auto 2rem; max-width: 70%;}
.hero-fg-ctas       { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 0 auto;}
@media (max-width: 768px) { 
  .hero-fg-subheadline {
    font-size: 20px; line-height: 1.45;
  }
  .hero-landscape h1 {
    margin-bottom: 1rem;
  }
  .footer-bottom-fg, .footer-nav-fg  {
    justify-content: center !important;
    padding-top: 20px !important;
  }
  .hero-fg-content { padding: 120px 0 80px; } .hero-fg-headline { margin-bottom:1rem !important; max-width: 80%; margin: 0 auto; font-size: 2.5rem; line-height: 1.2; } }

/* ─── Menu Preview ───────────────────────────────────────────────────────── */
.section-menu-preview-finegrille { background: var(--fg-bg); padding: 80px 0; }
.menu-preview-fg-header { margin-bottom: 48px; }
.menu-preview-fg-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-preview-fg-card   { border-radius: 12px; overflow: hidden; background: var(--fg-cream); }
.menu-preview-fg-img    { width: 100%; height: 320px; object-fit: cover; display: block; }
.menu-preview-fg-body   { padding: 28px 24px; }
.menu-preview-fg-title  { font-family: var(--fg-font-body); font-size: 1.25rem; font-weight: 700; color: var(--fg-heading); margin-bottom: 8px; }
.menu-preview-fg-desc   { font-size: 0.95rem; color: var(--fg-text-muted); line-height: 1.5; }
@media (max-width: 768px) { .menu-preview-fg-grid { grid-template-columns: 1fr; } }

/* ─── About Story ────────────────────────────────────────────────────────── */
.section-about-story-finegrille { background: var(--fg-bg); padding-block: var(--spacing-xl); }
@media (max-width: 768px) { .section-about-story-finegrille { padding-block: var(--spacing-sm); } }
.about-story-fg-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .about-story-fg-inner { gap: var(--spacing-md) !important; } }
.about-story-fg-img     { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; display: block; border-radius: 25vw 25vw 0 0;}
.about-story-fg-text    { display: flex; flex-direction: column; gap:var(--spacing-lg) }
@media (max-width: 768px) { .about-story-fg-text { padding-inline: var(--spacing-sm); text-align: left;    gap: var(--spacing-md); } }
@media (max-width: 768px) { .about-story-fg-cta { padding-bottom: var(--spacing-md) !important; } }
.about-story-fg-heading { font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 0;
    color: var(--fg-heading);}
.about-story-fg-body    { 
    /* margin-bottom: 1.5rem !important; */
    color: var(--fg-accent) !important;
    }
/* .about-story-fg-badges  { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; padding-top: 8px; border-top: 1px solid var(--fg-border); } */
.about-story-fg-badge   { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 600; color: var(--fg-text-muted); white-space: nowrap; }
.about-story-img { padding: 0; height: 500px;}
@media (max-width: 1100px) { .about-story-fg-inner { grid-template-columns: 1fr; } .about-story-fg-img { height: 400px; }
  /* Full-width "Our Story" image once the section stacks */
  .about-story-img { padding: 0; height: auto; }
  .about-story-fg-img { border-radius: 40vw 40vw 0 0; }

.section-about-story-finegrille, 
.section-featured-dishes-finegrille,
.section-cta-banner-finegrille,
.section-map-finegrille {
  /* padding: 2rem 1rem !important; */
    text-align: center !important;
}
header.site-header:has(.nav-links.active) {
    background:var(--fg-primary)!important;
}
 .mobNav #mobile-nav, .mobNavNt #mobile-nav {
        margin: 0 auto;
    }
     .nav-links.active {
        display: flex !important;
        gap: 1.5rem;
        flex-direction: column;
        width: max-content !important;
        align-items: center !important;
        border-top: none !important;
    }
        .mobNav:has(.nav-links.active) .logo, .mobNavNt:has(.nav-links.active) .logo {
        display: none !important;
    }
}

/* ─── Featured Dishes ────────────────────────────────────────────────────── */
.section-featured-dishes-finegrille { background: var(--fg-bg); padding: 80px 0;  text-align: center;}
.featured-dishes-fg-header { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.featured-dishes-fg-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;}
.featured-dishes-fg-grid div.featured-dishes-container{ background: var(--fg-surface); }
.featured-dish-fg-img      { width: 100%; height: 240px; object-fit: cover; border-radius: 0px; display: block; margin-bottom: 20px; }
.featured-dish-fg-name-row { display: block; justify-content: space-between; align-items: baseline; margin-bottom: 0px; padding: 0 2rem;}
.featured-dish-fg-name     {     font-size: 24px;
    margin-bottom: 0.5rem;
    line-height: 1.45;
    color: var(--fg-text) !important;
    font-family: 'PT Serif', serif;
    font-weight: bold;
 }
.featured-dish-fg-price    { font-size: 24px;
    line-height: 1.45;
    color: var(--fg-primary) !important;
    font-family: 'PT Serif', serif;
    font-weight: bold !important;
    margin-bottom: .5rem !important;
    font-weight: bold !important; }
.featured-dish-fg-desc     { font-size: 16px;
    font-family: 'Raleway', sans-serif;
    padding: 0px 2rem;
    line-height: 1.6;
    min-height: 130px;
    margin-bottom: 1.5rem !important;
    color: #b8b8b8 !important;
    font-weight: 300 !important;}
    .featured-dishes-container {
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .featured-dishes-container:hover {
    transform: scale(1.05);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .featured-dish-cat {display: flex;flex-direction: column; min-height: 300px; justify-content: space-between; gap: 16px; padding-bottom: 20px;}
@media (max-width: 1024px) { .featured-dishes-fg-grid { grid-template-columns: repeat(2, 1fr);

} .featured-dishes-fg-header { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .featured-dishes-fg-grid { grid-template-columns: 1fr; } }

/* Featured Dishes — slider variant (shows all menu items) */
.featured-dishes-fg-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 0.5rem 4px 1.5rem; -ms-overflow-style: none; scrollbar-width: none; }
.featured-dishes-fg-track::-webkit-scrollbar { display: none; }
.fd-fg-slide { scroll-snap-align: start; flex: 0 0 300px; max-width: 88vw; background: var(--fg-surface); }
.fd-arrow { position: absolute; top: 45%; transform: translateY(-50%); z-index: 10; background: var(--fg-primary); color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 22px; cursor: pointer; line-height: 1; box-shadow: 0 2px 8px rgba(44,47,36,0.18); transition: background 0.2s; }
.fd-arrow:hover { background: var(--fg-primary-dark); }
.fd-wrap { padding: 0 66px; }
.fd-prev { left: 8px; }
.fd-next { right: 8px; }
.fd-dots { display: flex; gap: 8px; justify-content: center; margin-top: 1.5rem; }
.fd-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--fg-border); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.fd-dot.active { background: var(--primary); }
@media (max-width: 768px)  { .fd-fg-slide { flex: 0 0 100%; max-width: 100%; } .fd-wrap { padding: 0 52px; } .fd-arrow { width: 36px; height: 36px; font-size: 18px; } }
@media (max-width: 380px)  { .fd-wrap { padding: 0 44px; } .fd-arrow { width: 30px; height: 30px; font-size: 16px; } }
@media (max-width: 768px)  { html, body { overflow-x: hidden; } }

.offers-banner-slider .obs-arrow{ background: var(--fg-primary) !important; }
.obs-card a { background: var(--fg-primary) !important;     padding: 0.4rem 1rem !important;}
.obs-card h3 { font-size: 1.2rem !important; color: var(--fg-text-muted) !important;}
.obs-card p { color: var(--fg-text-muted) !important;}
.obs-card div:first-child{ background-color: #e8e5d7 !important; }

/* ─── Testimonials Preview ───────────────────────────────────────────────── */
.section-testimonials-preview-finegrille { background: var(--fg-bg); padding: 80px 0; }
.testimonials-preview-fg-header  { text-align: center; margin-bottom: 3rem; }
.testimonials-preview-fg-heading { font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: .5rem !important;
        color: var(--fg-text) !important;}
.testimonials-preview-fg-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-fg-card    { background: var(--fg-cream); border-radius: 12px; padding: 35px; display: flex; flex-direction: column; gap: 32px; border: 1px solid #e9e9e9;}
.testimonial-fg-quote   { font-size: 1rem; color: #7c7c7c; line-height: 1.6; }
.testimonial-fg-review  { font-size: 1rem; color: var(--fg-text-muted); line-height: 1.6; flex: 1; }
.testimonial-fg-divider { border: none; border-top: 1px solid var(--fg-border); margin: 0; }
.testimonial-fg-user    { display: flex; gap: 20px; align-items: center; }
.testimonial-fg-avatar  { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-fg-avatar-placeholder { width: 70px; height: 70px; border-radius: 50%; background: var(--fg-border); flex-shrink: 0; }
.testimonial-fg-name     { font-size: 1rem; font-weight: 700; color: var(--fg-heading); }
.testimonial-fg-location { font-size: 1rem; color: var(--fg-text-muted); }
@media (max-width: 900px) { .testimonials-preview-fg-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.section-faq-finegrille { background: var(--fg-bg); padding: 80px 0; }
.faq-fg-header   { text-align: center; margin-bottom: 3rem; }
.faq-fg-heading  { font-size: 3.5rem; font-weight: 300; line-height: 1.1; margin-top: 0; margin-bottom: .5rem !important; color: var(--fg-text) !important; }
.faq-fg-list     { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-fg-item     { background: var(--fg-cream); border: 1px solid #e9e9e9; border-radius: 12px; padding: 0 28px; transition: border-color 0.2s; }
.faq-fg-item[open] { border-color: var(--primary); }
.faq-fg-question { display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; list-style: none; padding: 24px 0; font-family: var(--fg-font-heading); font-size: 1.25rem; font-weight: 500; color: var(--fg-heading); }
.faq-fg-question::-webkit-details-marker { display: none; }
.faq-fg-icon     { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-fg-icon::before, .faq-fg-icon::after { content: ""; position: absolute; background: var(--fg-primary); transition: transform 0.2s, opacity 0.2s; }
.faq-fg-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-fg-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-fg-item[open] .faq-fg-icon::after { opacity: 0; transform: scaleY(0); }
.faq-fg-answer   { padding: 0 0 24px; font-size: 1rem; color: var(--fg-text-muted); line-height: 1.6; }
@media (max-width: 768px) { .faq-fg-heading { font-size: 2.25rem; } .faq-fg-question { font-size: 1.1rem; } }

/* ─── Blog Preview ───────────────────────────────────────────────────────── */
.section-blog-preview-finegrille { background: var(--fg-cream); padding: 80px 0; }
.blog-preview-fg-header       { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.blog-preview-fg-heading      { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 500; color: var(--fg-heading); }
.blog-preview-fg-see-all      { font-size: 0.95rem; font-weight: 600; color: var(--fg-primary); text-decoration: none; white-space: nowrap; }
.blog-preview-fg-see-all:hover { color: var(--fg-primary-dark); }
.blog-preview-fg-grid         { display: grid; grid-template-columns: 636px 1fr; gap: 24px; }
.blog-preview-fg-featured     { background: var(--fg-bg); border-radius: 12px; overflow: hidden; }
.blog-preview-fg-featured-img { width: 100%; height: 456px; object-fit: cover; display: block; }
.blog-preview-fg-featured-body { padding: 28px; }
.blog-preview-fg-date         { font-size: 0.8rem; color: var(--fg-text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-preview-fg-featured-title { font-family: var(--fg-font-body); font-size: 1.25rem; font-weight: 700; color: var(--fg-heading); line-height: 1.35; margin-bottom: 12px; }
.blog-preview-fg-excerpt      { font-size: 0.9rem; color: var(--fg-text-muted); line-height: 1.6; }
.blog-preview-fg-small-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-preview-fg-small-card   { background: var(--fg-bg); border-radius: 12px; overflow: hidden; }
.blog-preview-fg-small-img    { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-preview-fg-small-body   { padding: 20px; }
.blog-preview-fg-small-title  { font-family: var(--fg-font-body); font-size: 1rem; font-weight: 700; color: var(--fg-heading); line-height: 1.35; }
@media (max-width: 1100px) { .blog-preview-fg-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .blog-preview-fg-small-grid { grid-template-columns: 1fr; } }

/* ─── Map ────────────────────────────────────────────────────────────────── */
.section-map-finegrille   { background: var(--fg-bg); padding: 80px 0; }
.map-fg-heading           { font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 20px !important;
        color: var(--fg-text) !important; }
.map-fg-tabs-wrapper      { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.map-fg-tabs              { display: flex; gap: 8px; overflow-x: auto; flex: 1; scrollbar-width: none; }
.map-fg-tabs::-webkit-scrollbar { display: none; }
.map-fg-tab               { padding: 0.45rem 1.25rem; border: 1.5px solid var(--fg-border); border-radius: 999px; background: transparent; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.map-fg-tab-active        { background: var(--fg-secondary); color: #fff; border-color: var(--fg-secondary); }
.map-fg-tab-arrow         { background: none; border: none; font-size: 1.5rem; color: var(--fg-text-muted); cursor: pointer; padding: 0 4px; flex-shrink: 0; line-height: 1; }
.map-fg-tab-arrow:hover   { color: var(--fg-secondary); }
.map-fg-grid              {    display: grid;
    grid-template-columns: 400px 1fr !important;
    gap: 0rem;
    align-items: stretch;
    min-height: 350px !important;
    background: var(--fg-accent-2);
    padding: 8px;
    border-radius: 24px;
    /* box-shadow: 2px 2px 6px rgba(0, 0, 0, .5); */
         
        flex-direction: column !important; }
.map-fg-card              { background: transparent; border-radius: 8px 0 0 8px; padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.map-fg-loc-name          { font-family: var(--fg-font-heading); font-size: 1.4rem; font-weight: 600; color: var(--fg-heading); padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.map-fg-row               { display: flex; gap: 12px; align-items: flex-start; }
.map-fg-icon              { width: 18px; height: 18px; flex-shrink: 0; color:var(--fg-secondary); margin-top: 2px; }
.map-fg-card-value        { font-size: 0.9375rem; color: var(--fg-secondary); line-height: 1.55; }
.map-fg-card-value a      { color: var(--fg-secondary); text-decoration: none; }
.map-fg-card-value a:hover { color: var(--primary); text-decoration: underline; }
.map-fg-see-hours         { font-size: 0.8125rem; color: var(--fg-primary); text-decoration: none; margin-top: 4px; display: inline-block; }
.map-fg-see-hours:hover   { color: #e04b55; text-decoration: underline; }
.map-fg-cta               { margin-top: auto; text-align: center; }
.map-fg-map-wrap          { border-radius: 0 8px 8px 0; overflow: hidden; background: var(--fg-cream); }
.map-fg-map-wrap iframe   { width: 100%; height: 100%; border: none; display: block; }
.map-fg-placeholder       { display: flex; align-items: center; justify-content: center; height: 100%; min-height: 300px; color: var(--fg-text-muted); font-size: 0.875rem; }
@media (max-width: 900px)  { .map-fg-map-wrap iframe {
  min-height: 37vh !important;
} .map-fg-grid { grid-template-columns: 1fr; min-height: auto;  display: flex !important;} .map-fg-card { border-radius: 8px 8px 0 0; color: #f00; } 
.map-fg-loc-name {
  color: var(--fg-text-muted) !important;
  border-bottom: 1px solid rgba(0,0,0,0.60) !important;
}
.map-fg-row, .map-fg-card-value,.map-fg-icon, .map-fg-card-value a {
  color: var(--fg-text-muted) !important;
}
.map-fg-map-wrap { border-radius: 0 0 8px 8px; min-height: 300px; } }
@media (max-width: 768px)  { .map-fg-tabs-wrapper { gap: 4px; } .map-fg-tab-arrow { display: none; } }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.section-cta-banner-finegrille { background: var(--fg-surface); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner-fg-heading { font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 3rem !important;
        color: #fff !important;}
.cta-banner-fg-body    { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-bg-img{ background-size: cover; background-position: center; background-attachment: fixed; min-height: 400px; padding-top:20px; padding-bottom:20px; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 25px;}
.cta-overlay-bg{position: absolute;inset: 0;border-radius: 25px;background-color: rgba(0, 0, 0, 0.4);z-index: 1}
.cta-content { z-index: 2; }
/* ─── Contact Details ────────────────────────────────────────────────────── */
.section-contact-details-finegrille { background: var(--fg-cream); padding: 80px 0; }
.contact-details-fg-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-details-fg-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--fg-text); margin-bottom: 8px; }
.contact-details-fg-value { font-size: 1rem; color: var(--fg-text-muted); }
.contact-details-fg-value a { color: var(--fg-primary); text-decoration: none; }
/* Contact form */
.contact-fg-layout { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
.contact-fg-info   { display: flex; flex-direction: column; gap: 28px; }
.contact-fg-intro  { font-size: 1.0625rem; color: var(--fg-text-muted); line-height: 1.7; }
.contact-fg-form   { background: var(--fg-surface); border: 1px solid var(--fg-border); padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-fg-field  { display: flex; flex-direction: column; }
.contact-fg-field.full, .contact-fg-submit, .contact-fg-status { grid-column: 1 / -1; }
.contact-fg-label  { font-size: 0.85rem; font-weight: 600; color: var(--fg-text); margin-bottom: 6px; }
.contact-fg-input  { padding: 0.7rem 0.85rem; border: 1px solid var(--fg-border); border-radius: 0; font-family: var(--fg-font-body); font-size: 0.95rem; color: var(--fg-text); background: var(--fg-surface); transition: border-color 0.2s; }
.contact-fg-input:focus { outline: none; border-color: var(--primary); }
textarea.contact-fg-input { resize: vertical; min-height: 120px; }
.contact-fg-btn    { background: var(--fg-secondary); color: #fff; border: none; border-radius: 0; padding: 0.85rem 2.5rem; font-family: var(--fg-font-body); font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.contact-fg-btn:hover { background: var(--fg-primary); }
.contact-fg-btn:disabled { opacity: 0.6; cursor: default; }
.contact-fg-status { margin: 0; font-size: 0.9rem; color: var(--fg-text-muted); }
@media (max-width: 900px) { .contact-fg-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) { .contact-details-fg-grid { grid-template-columns: 1fr; } .contact-fg-form { grid-template-columns: 1fr; padding: 24px; } }

/* ─── Hours Table ────────────────────────────────────────────────────────── */
.section-hours-table-finegrille { background: var(--fg-bg); padding: 80px 0; }
.hours-fg-table        { width: 100%; max-width: 600px; margin: 0 auto; border-collapse: collapse; }
.hours-fg-table tr     { border-bottom: 1px solid var(--fg-border); }
.hours-fg-table td     { padding: 14px 8px; font-size: 1rem; color: var(--fg-text-muted); }
.hours-fg-table td:first-child { font-weight: 600; color: var(--fg-secondary); width: 40%; }
/* Multi-location hours tabs */
.hours-fg-tabs   { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.hours-fg-tab    { flex-shrink: 0; padding: 0.5rem 1.4rem; border-radius: 0; border: 1px solid var(--fg-border); background: transparent; color: var(--fg-text); cursor: pointer; font-family: var(--fg-font-body); font-size: 0.9rem; font-weight: 600; white-space: nowrap; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.hours-fg-tab:hover { border-color: var(--primary); color: var(--primary); }
.hours-fg-tab-active { background: var(--primary); color: #fff !important; border-color: var(--primary); }
.hours-fg-panel  { display: none; }
.hours-fg-panel-active { display: block; }
/* Multi-category hours tabs (nested inside each location panel) */
.hours-cat-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.25rem; }
.hours-cat-tab { flex-shrink: 0; padding: 0.4rem 1.1rem; border-radius: 0; border: 1px solid var(--fg-border); background: transparent; color: var(--fg-text-muted); cursor: pointer; font-family: var(--fg-font-body); font-size: 0.8rem; font-weight: 600; white-space: nowrap; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.hours-cat-tab:hover { border-color: var(--primary); color: var(--primary); }
.hours-cat-tab-active { background: transparent; color: var(--primary) !important; border-color: var(--primary); }
.hours-cat-panel { display: none; }
.hours-cat-panel-active { display: block; }
.hours-fg-location { margin-bottom: 2.5rem; text-align: center; }
.hours-fg-loc-name { font-family: var(--fg-font-heading); font-size: 1.5rem; font-weight: 500; color: var(--fg-heading); margin-bottom: 1rem; }
.hours-fg-note   { margin-top: 1.25rem; font-size: 0.95rem; font-style: italic; color: var(--fg-text-muted); text-align: center; }

/* ─── Full Menu ──────────────────────────────────────────────────────────── */
.menu-location-tabs            { display: none; }
.section-full-menu-finegrille  { background: var(--fg-bg); padding-block: var(--spacing-xl) }
.full-menu-fg-layout           { display: block; }
.full-menu-fg-sidebar          { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.full-menu-fg-search-wrap      { position: relative; display: flex; align-items: center; }
.full-menu-fg-search-wrap svg  { position: absolute; left: 14px; width: 16px; height: 16px; color: var(--fg-text-muted); pointer-events: none; }
.full-menu-fg-search           { width: 100%; padding: 12px 14px 12px 40px; font-family: var(--fg-font-body); font-size: 0.95rem; color: var(--fg-text); background: var(--fg-bg); border: 1px solid var(--fg-border); border-radius: 6px; outline: none; transition: border-color 0.2s; }
.full-menu-fg-search:focus     { border-color: var(--primary); }
.full-menu-fg-sort-wrap        { display: flex; flex-direction: column; gap: 6px; }
.full-menu-fg-sort-label       { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--fg-text-muted); }
.full-menu-fg-sort             { width: 100%; padding: 10px 14px; font-family: var(--fg-font-body); font-size: 0.95rem; color: var(--fg-text); background: var(--fg-bg); border: 1px solid var(--fg-border); border-radius: 6px; cursor: pointer; outline: none; transition: border-color 0.2s; }
.full-menu-fg-sort:focus       { border-color: var(--primary); }
.full-menu-fg-loc-wrap         { position: relative; display: flex; flex-direction: column; gap: 6px; }
.full-menu-fg-loc-btn          { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 14px; font-family: var(--fg-font-body); font-size: 0.95rem; font-weight: 600; color: var(--fg-secondary); background: var(--fg-bg); border: 1px solid var(--fg-border); border-radius: 6px; cursor: pointer; text-align: left; transition: border-color 0.2s; }
.full-menu-fg-loc-btn:hover    { border-color: var(--primary); }
.full-menu-fg-loc-pin          { width: 16px; height: 16px; flex-shrink: 0; color: var(--fg-primary); }
.full-menu-fg-loc-label        { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.full-menu-fg-loc-chevron      { width: 14px; height: 14px; flex-shrink: 0; color: var(--fg-text-muted); transition: transform 0.2s; }
.full-menu-fg-loc-btn[aria-expanded="true"] .full-menu-fg-loc-chevron { transform: rotate(180deg); }
.full-menu-fg-loc-dropdown     { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--fg-bg); border: 1px solid var(--fg-border); border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 100; list-style: none; margin: 0; padding: 4px 0; overflow: hidden; }
.full-menu-fg-loc-dropdown.open { display: block; }
.full-menu-fg-loc-item         { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: 0.9rem; color: var(--fg-text-muted); cursor: pointer; transition: background 0.15s, color 0.15s; }
.full-menu-fg-loc-item svg     { width: 14px; height: 14px; flex-shrink: 0; color: var(--fg-border); }
.full-menu-fg-loc-item:hover   { background: var(--fg-cream); color: var(--fg-secondary); }
.full-menu-fg-loc-item-active  { color: var(--primary); font-weight: 600; }
.full-menu-fg-loc-item-active svg { color: var(--primary); }
.full-menu-fg-nav              { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--fg-border); padding-top: 16px; }
.full-menu-fg-nav-link         { font-size: 0.95rem; color: var(--fg-text-muted); text-decoration: none; padding: 8px 12px; border-left: 2px solid transparent; border-radius: 0 4px 4px 0; transition: color 0.2s, background 0.2s, border-color 0.2s; }
.full-menu-fg-nav-link:hover   { color: var(--fg-secondary); background: var(--fg-cream); }
.full-menu-fg-nav-link.active  { color: var(--primary); border-left-color: var(--primary); background: var(--fg-cream); font-weight: 600; }
.full-menu-fg-group            {  }
.full-menu-fg-group-header     { display: flex; align-items: baseline; gap: 12px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--fg-primary); }
.full-menu-fg-group-title      { font-size: 2rem; font-weight: 500; color: var(--fg-heading); margin: 0; }
.full-menu-fg-group-time       { font-size: 0.9rem; color: var(--fg-text-muted); }
.full-menu-fg-category         { margin-bottom: 56px; scroll-margin-top: 124px; }
.full-menu-fg-category:last-child         { margin-bottom: 0px !important }
@media (max-width: 768px)      { 
  .full-menu-fg-category         { scroll-margin-top: 150px; } 
  .full-menu-fg-category         { margin-bottom: 0px !important}
  .full-menu-fg-group            { margin-bottom: 0px !important}
}
.full-menu-fg-cat-name         {  color: var(--fg-heading);  padding-bottom: var(--spacing-xl);  }
.full-menu-fg-items            { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0rem 3rem; }
/* Floating item: stacked name/description/price on the left, optional square
   image on the right, separated from the next row by a hairline divider. */
.full-menu-fg-item             { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--spacing-md); padding-block:var(--spacing-md); border-top: 1px solid var(--fg-border);border-bottom: 1px solid var(--fg-border); }

.full-menu-fg-item + .full-menu-fg-item {border-top: none;}
.full-menu-fg-item-img         { width: 213px; height: 160px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.full-menu-fg-item-info        { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.full-menu-fg-item-name        { font-weight: 600; font-size: 1.15rem; color: var(--fg-heading); }
.full-menu-fg-item-desc        { font-size: 0.9rem; line-height: 1.5; color: var(--fg-text-muted); }
.full-menu-fg-item-price       { font-weight: 700; color: var(--fg-heading); white-space: nowrap; margin-top: 2px; }
@media (max-width: 1024px) { .full-menu-fg-layout { grid-template-columns: 1fr; gap: 32px; } .full-menu-fg-sidebar { position: static; } .full-menu-fg-nav { flex-direction: row; flex-wrap: wrap; } .full-menu-fg-nav-link { border-left: none; border-bottom: 2px solid transparent; border-radius: 4px; } .full-menu-fg-nav-link.active { border-left: none; border-bottom-color: var(--fg-primary); } }
@media (max-width: 768px) {
  .full-menu-fg-item {gap: var(--spacing-xs) !important;}
  .full-menu-fg-items { grid-template-columns: 1fr; }
  .full-menu-fg-item-img { width: 117px; height: 88px; }
  .full-menu-fg-item-desc { display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; cursor: pointer; }
  .full-menu-fg-item-desc.is-expanded { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
  .section-full-menu-finegrille { padding-left: var(--spacing-sm) !important; padding-right: var(--spacing-sm) !important;padding-block: var(--spacing-md); }
  .full-menu-fg-cat-name { padding-block: var(--spacing-md) !important; }
}
.page-catering .pd-ctaband.bdrtop,
.page-locations .pd-ctaband.bdrtop,
.page-about .pd-ctaband.bdrtop{
  border-top:1px solid var(--fg-border) !important ;
}

/* ══ Menu Cards — category grids of dish cards (floating / filled / outlined) ══ */
.section-menu-cards-fg { padding: 80px 0; }
.menu-cards__heading { margin-bottom: 40px; text-align: center; }
.menu-cards__category { margin-bottom: 56px; }
.menu-cards__category:last-child { margin-bottom: 0; }
.menu-cards__cat-name { font-size: 1.75rem; font-weight: 500; color: var(--fg-heading); margin-bottom: 24px; }
.menu-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.menu-cards__item { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.menu-cards__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.menu-cards__name { font-weight: 600; font-size: 1.15rem; color: var(--fg-heading); }
.menu-cards__desc { font-size: 0.9rem; line-height: 1.5; color: var(--fg-text-muted); }
.menu-cards__price { font-weight: 700; color: var(--fg-secondary); margin-top: 2px; }
.menu-cards__img { width: 110px; height: 110px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.menu-cards__empty { color: var(--fg-text-muted); padding: 48px 0; text-align: center; }

/* Floating — no card container; hairline divider under each row. */
.menu-cards--floating { column-gap: 3rem; row-gap: 0; }
.menu-cards--floating .menu-cards__item { padding: 20px 0; border-bottom: 1px solid var(--fg-border); }

/* Filled — warm cream/accent card per dish; image fills the card height. */
.menu-cards--filled .menu-cards__item { align-items: stretch; background: var(--fg-accent); border-radius: 14px; padding: 20px; }
.menu-cards--filled .menu-cards__img { align-self: stretch; height: auto; }

/* Outlined — hairline-bordered card per dish; image fills the card height. */
.menu-cards--outlined .menu-cards__item { align-items: stretch; background: var(--fg-bg); border: 1px solid var(--fg-border); border-radius: 14px; padding: 20px; }
.menu-cards--outlined .menu-cards__img { align-self: stretch; height: auto; }

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

/* ─── Gallery Grid ───────────────────────────────────────────────────────── */
.section-gallery-grid-finegrille { background: var(--fg-cream); padding: 80px 0; }
.gallery-fg-grid         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-fg-item         { padding: 0; margin: 0; border: none; background: none; cursor: pointer; display: block; width: 100%; overflow: hidden; border-radius: 4px; }
.gallery-fg-item img     { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; display: block; transition: transform 0.4s ease; }
.gallery-fg-item:hover img,
.gallery-fg-item:focus-visible img { transform: scale(1.06); }
.gallery-fg-item:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
@media (max-width: 768px) { .gallery-fg-grid { grid-template-columns: 1fr; } }

/* ─── Gallery Lightbox ───────────────────────────────────────────────────── */
.gallery-fg-lightbox        { position: fixed; inset: 0; z-index: 200; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 24px; padding-top:40px; background: rgba(20, 20, 18, 0.92); }
.gallery-fg-lightbox.open   { display: flex; }
.gallery-fg-lb-figure       { margin: 0; max-width: min(1100px, 92vw); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gallery-fg-lb-img          { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 6px; box-shadow: 0 12px 48px rgba(0,0,0,0.5); }
.gallery-fg-lb-caption      { color: rgba(255,255,255,0.82); font-size: 0.95rem; text-align: center; min-height: 1.2em; }
.gallery-fg-lb-counter      { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.06em; }
.gallery-fg-lb-close        { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; font-size: 2rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; transition: background 0.2s; }
.gallery-fg-lb-close:hover  { background: rgba(255,255,255,0.22); }
.gallery-fg-lb-nav          { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; cursor: pointer; transition: background 0.2s; }
.gallery-fg-lb-nav:hover    { background: var(--primary); }
.gallery-fg-lb-prev         { left: 24px; }
.gallery-fg-lb-next         { right: 24px; }
.gallery-fg-lb-strip        { display: flex; gap: 8px; max-width: min(1100px, 92vw); overflow-x: auto; padding: 4px; scrollbar-width: thin; }
.gallery-fg-lb-thumb        { width: 72px; height: 54px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.5; border: 2px solid transparent; flex-shrink: 0; transition: opacity 0.2s, border-color 0.2s; }
.gallery-fg-lb-thumb:hover  { opacity: 0.85; }
.gallery-fg-lb-thumb.active { opacity: 1; border-color: var(--primary); }
@media (max-width: 768px) {
  .gallery-fg-lb-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .gallery-fg-lb-prev { left: 8px; } .gallery-fg-lb-next { right: 8px; }
  .gallery-fg-lb-img { max-height: 60vh; }
}

/* ─── Reservation CTA ────────────────────────────────────────────────────── */
.section-reservation-cta-finegrille { background: var(--fg-cream); padding: 80px 0; text-align: center; }
.reservation-cta-fg-heading { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 500; color: var(--fg-heading); margin-bottom: 1rem; }
.reservation-cta-fg-body    { font-size: 1.1rem; color: var(--fg-text-muted); margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ─── Testimonials (full page) ───────────────────────────────────────────── */
.section-testimonials-finegrille { background: var(--fg-bg); padding: 80px 0; }

/* ─── Visit Us ───────────────────────────────────────────────────────────── */
.section-visit-us-finegrille { background: var(--fg-bg); overflow: hidden; }
.visit-us-fg-inner { display: grid; grid-template-columns: 620px 1fr; min-height: 622px; }
.visit-us-fg-card {
  background: var(--fg-surface);
  box-shadow: 0 2px 52px rgba(0,0,0,0.10);
  border-radius: 16px 0 0 16px;
  padding: 72px 72px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin-left: 88px;
}
.visit-us-fg-heading { font-size: clamp(2.5rem, 4vw, 3.6rem); font-weight: 500; line-height: 1.1; color: var(--fg-heading); }
.visit-us-fg-body { font-size: 1.0625rem; color: var(--fg-text-muted); line-height: 1.65; }
.visit-us-fg-link { font-style: italic; color: var(--fg-primary); text-decoration: none; font-size: 1.1rem; font-family: var(--fg-font-heading); margin-top: 8px; }
.visit-us-fg-link:hover { color: var(--fg-primary-dark); text-decoration: underline; }
.visit-us-fg-image-wrap { overflow: hidden; }
.visit-us-fg-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 622px; }
@media (max-width: 1100px) {
  .visit-us-fg-inner { grid-template-columns: 1fr; }
  .visit-us-fg-card { margin-left: 0; border-radius: 0; padding: 60px 40px; }
  .visit-us-fg-img { min-height: 400px; }
}
@media (max-width: 768px) { .visit-us-fg-card { padding: 48px 20px; } }

/* ─── Special Events ─────────────────────────────────────────────────────── */
.section-special-events-finegrille { background: var(--fg-cream); overflow: hidden; }
.special-events-fg-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 1040px; }
.special-events-fg-image-wrap { overflow: hidden; }
.special-events-fg-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 1040px; }
.special-events-fg-content {
  padding: 80px 88px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.special-events-fg-heading { font-size: clamp(2.25rem, 3.5vw, 3.2rem); font-weight: 500; line-height: 1.1; color: var(--fg-heading); margin-bottom: 48px; margin-top: 12px; }
.special-events-fg-list { display: flex; flex-direction: column; counter-reset: events-counter; }
.special-events-fg-item {
  counter-increment: events-counter;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--fg-border);
  align-items: start;
}
.special-events-fg-item::before {
  content: "0" counter(events-counter);
  font-family: var(--fg-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-text-muted);
  padding-top: 2px;
}
.special-events-fg-item-body { display: flex; flex-direction: column; gap: 6px; }
.special-events-fg-title { font-family: var(--fg-font-body); font-size: 1.25rem; font-weight: 700; color: var(--fg-heading); }
.special-events-fg-schedule { font-size: 0.9rem; color: var(--fg-text-muted); }
.special-events-fg-desc { font-size: 0.9375rem; color: var(--fg-text-muted); line-height: 1.6; margin-top: 4px; }
@media (max-width: 1024px) {
  .special-events-fg-inner { grid-template-columns: 1fr; }
  .special-events-fg-img { min-height: 400px; }
  .special-events-fg-content { padding: 60px 40px; }
}
@media (max-width: 768px) { .special-events-fg-content { padding: 48px 20px; } }

/* ─── Hero Reservation Widget ────────────────────────────────────────────── */
.hero-fg-content { display: flex; justify-content: center; align-items: center; gap: 40px; }
.hero-fg-reservation-widget {
  background: rgba(60,64,52,0.88);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 36px 32px;
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-fg-widget-heading { font-family: var(--fg-font-heading); font-size: 1.75rem; font-weight: 600; color: #fff; margin: 0; }
.hero-fg-widget-form { display: flex; flex-direction: column; gap: 16px; }
.hero-fg-widget-field { display: flex; flex-direction: column; gap: 6px; }
.hero-fg-widget-label { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.hero-fg-widget-select-wrap { position: relative; }
.hero-fg-widget-select,
.hero-fg-widget-input {
  width: 100%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-family: var(--fg-font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.hero-fg-widget-select:focus,
.hero-fg-widget-input:focus { border-color: rgba(255,255,255,0.5); }
.hero-fg-widget-select option { background: var(--fg-secondary); color: #fff; }
.hero-fg-widget-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
}
.hero-fg-widget-btn {
  background: var(--fg-secondary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-family: var(--fg-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.hero-fg-widget-btn:hover { background: var(--fg-primary); }
@media (max-width: 900px) { .hero-fg-reservation-widget { display: none; } }

/* ─── Blog pill CTA override ─────────────────────────────────────────────── */
.blog-preview-fg-see-all-btn { font-size: 0.875rem; padding: 0.6rem 1.25rem; }

/* ─── Diet badge colours ─────────────────────────────────────────────────── */
.diet-badge-veg .diet-badge-icon { border-color: #16a34a; }
.diet-badge-veg .diet-badge-icon span { background: #16a34a; }
.diet-badge-egg .diet-badge-icon { border-color: #ca8a04; }
.diet-badge-egg .diet-badge-icon span { background: #ca8a04; }
.diet-badge-non-veg .diet-badge-icon { border-color: #dc2626; }
.diet-badge-non-veg .diet-badge-icon span { background: #dc2626; }

/* ─── Dish page ──────────────────────────────────────────────────────────── */
.dish-page { margin: 0; background: color-mix(in srgb, var(--accent-cream, #161616) 10%, #161616); }
.dish-feature-section { max-width: 1320px; margin: 0 auto; padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 3rem); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.dish-media-panel { position: relative; min-height: 420px; border: 1px solid rgba(0,0,0,.14); overflow: hidden; background: #f3f0eb; box-shadow: 0 26px 60px rgba(0,0,0,.12); }
.dish-media-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.dish-media-image { width: 100%; height: 100%; min-height: 520px; object-fit: cover; display: block; }
.dish-media-fallback { min-height: 520px; display: grid; place-items: center; color: var(--primary, #333); font-size: clamp(5rem, 14vw, 11rem); font-weight: 700; opacity: .28; }
.dish-detail-panel { padding: clamp(1rem, 2vw, 1.5rem) 0; color: #2b2d26; }
.dish-kicker { margin: 0 0 .85rem; font-size: .86rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; color: color-mix(in srgb, var(--primary, #333) 78%, #000); }
.dish-header { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: .9rem; }
.dish-name { flex: 1 1 100%; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 700; margin: 0; line-height: .98; letter-spacing: 0; color: #25271f; }
.dish-price { font-size: 1.18rem; font-weight: 700; margin: 0 0 1.35rem; color: color-mix(in srgb, var(--primary, #333) 82%, #111); }
.dish-description { font-size: clamp(1.02rem, 1.35vw, 1.18rem); line-height: 1.72; margin: 0 0 1.65rem; max-width: 680px; color: rgba(43,45,38,.88); }
.dish-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0 0 2rem; }
.dish-tag { display: inline-block; padding: .3rem .8rem; border-radius: 999px; border: 1px solid rgba(0,0,0,.24); font-size: .78rem; font-weight: 700; color: rgba(43,45,38,.7); text-transform: capitalize; }
.dish-actions { margin: 2.1rem 0 0; }
.dish-cta-btn { display: inline-block; padding: .88rem 1.65rem; border: 1.5px solid currentColor; border-radius: 999px; font-size: .94rem; font-weight: 700; text-decoration: none; letter-spacing: 0; color: var(--fg-secondary); background: transparent; transition: transform .16s ease, background-color .16s ease, color .16s ease; }
.dish-cta-btn:hover { transform: translateY(-1px); background: var(--fg-primary); color: #fff; }
.dish-related { margin: 2.4rem 0 0; border-top: 1px solid rgba(0,0,0,.12); padding-top: 1.5rem; }
.dish-related-title { margin: 0 0 .9rem; font-size: .82rem; font-weight: 700; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; color: rgba(43,45,38,.62); }
.dish-related-grid { display: flex; flex-wrap: wrap; gap: .7rem; }
.dish-related-card { display: inline-block; padding: .55rem .9rem; border: 1px solid rgba(0,0,0,.18); border-radius: 6px; font-size: .92rem; font-weight: 600; color: #2b2d26; text-decoration: none; background: rgba(255,255,255,.45); transition: border-color .15s ease, transform .15s ease; }
.dish-related-card:hover { transform: translateY(-1px); border-color: rgba(0,0,0,.42); }
@media (max-width: 860px) {
  .dish-feature-section { grid-template-columns: 1fr; padding-top: 2rem; }
  .dish-media-panel { min-height: 300px; }
  .dish-media-image, .dish-media-fallback { min-height: 340px; }
  .dish-name { font-size: clamp(2.2rem, 12vw, 3.4rem); }
}
@media (max-width: 520px) {
  .dish-feature-section { padding-inline: 1rem; gap: 1.6rem; }
  .dish-media-image, .dish-media-fallback { min-height: 280px; }
  .dish-description { font-size: 1rem; }
}

/* ─── Menu category page ─────────────────────────────────────────────────── */
.menu-category-page { max-width: 1120px; margin: 0 auto; padding: 4rem 1.5rem; }
.menu-category-hero { max-width: 760px; margin-bottom: 2.5rem; }
.menu-category-kicker { margin: 0 0 .75rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.menu-category-hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }
.menu-category-description { margin: 1rem 0 0; font-size: 1.075rem; line-height: 1.7; opacity: .82; }
.menu-category-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.menu-category-item-card { display: block; border: 1px solid rgba(0,0,0,.12); border-radius: 8px; overflow: hidden; color: inherit; text-decoration: none; background: rgba(255,255,255,.72); }
.menu-category-item-card-link:hover { transform: translateY(-2px); transition: transform .15s ease; }
.menu-category-item-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.menu-category-item-body { padding: 1rem; }
.menu-category-item-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.menu-category-item-heading h2 { margin: 0; font-size: 1.1rem; line-height: 1.25; }
.menu-category-item-price { margin-top: .45rem; font-weight: 700; }
.menu-category-item-body p { margin: .7rem 0 0; line-height: 1.55; opacity: .8; }
.menu-category-item-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.menu-category-item-tags span { border: 1px solid currentColor; border-radius: 999px; padding: .2rem .55rem; font-size: .75rem; opacity: .65; }
.menu-category-cta { margin-top: 2.5rem; }
.menu-category-cta-link { display: inline-block; padding: .75rem 1.5rem; border-radius: 4px; background: var(--primary, #333); color: #fff; text-decoration: none; font-weight: 700; }

/* ─── Reviews block ──────────────────────────────────────────────────────── */
.reviews-section .reviews-heading { text-align: center; margin-bottom: 2rem; }
.reviews-summary { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-top: .75rem; }
.reviews-stars-full { color: var(--secondary-gold, #f39c12); }
.reviews-stars-half { color: var(--secondary-gold, #f39c12); }
.reviews-stars-empty { color: #ccc; }
.reviews-avg { font-weight: 700; font-size: 1.1rem; }
.reviews-count { opacity: .7; font-size: .9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.review-card { background: var(--surface, #161616); border: 1px solid var(--border, #e0e0e0); border-radius: 8px; padding: 1.5rem; }
.review-card-stars { color: var(--secondary-gold, #f39c12); margin-bottom: .5rem; }
.review-card-text { font-style: italic; line-height: 1.6; margin: 0 0 1rem; }
.review-card-author { font-size: .85rem; opacity: .7; margin: 0; }
.reviews-cta { text-align: center; margin-top: 2rem; }

/* ─── Mobile: consistent, smaller section headings ──────────────────────── */
@media (max-width: 768px) {
  .section-heading-finegrille,
  .about-story-fg-heading,
  .testimonials-preview-fg-heading,
  .faq-fg-heading,
  .map-fg-heading,
  .cta-banner-fg-heading,
  .blog-preview-fg-heading,
  .reservation-cta-fg-heading,
  .visit-us-fg-heading,
  .special-events-fg-heading {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

/* ═══ A/B/C content-volume variants (ported from RestoHub) ═══════════════════
   Variant B is the default markup; these add A (minimal / type-forward) and
   C (rich) presentations. Wired via the manifest `variants.map`. */
/* Hero A — Brand Color (no image) */
.hero-fg-brand { background: var(--fg-bg); color: #fff; min-height: 78vh; display: flex; align-items: center; text-align: center; }
.hero-fg-brand-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; padding-top: 72px }
.hero-fg-brand-logo { max-height: 92px; width: auto; margin-bottom: 0.25rem; }
.hero-fg-brand-eyebrow { color: rgba(255,255,255,0.85) !important; }
.hero-fg-brand-title { font-family: var(--fg-font-heading); font-weight: 600; color: #fff; font-size: clamp(2.75rem, 7vw, 6rem); line-height: 1.02; margin: 0; }
.hero-fg-brand-tagline { color: rgba(255,255,255,0.9); font-size: 1.2rem; line-height: 1.5; max-width: 620px; }
.hero-fg-brand .btn-primary-finegrille { background: var(--fg-secondary); border-color: var(--fg-secondary); color: var(--fg-font-body); }
.hero-fg-brand .btn-primary-finegrille:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: var(--primary); }

/* Hero C — Split Layout (image + brand-color text panel) */
.hero-fg-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; align-items: stretch; }
.hero-fg-split-media { position: relative; overflow: hidden; }
.hero-fg-split-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-fg-split-text { background: var(--fg-primary); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 1.15rem; padding: clamp(2rem, 6vw, 5rem); }
.hero-fg-split-title { color: #fff; }
.hero-fg-split-sub { color: rgba(255,255,255,0.9); }
.hero-fg-split .btn-primary-finegrille { background: var(--fg-surface); border-color: #fff; color: var(--fg-secondary); }
.hero-fg-split .btn-primary-finegrille:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: var(--primary); }
@media (max-width: 768px) { .hero-fg-split { grid-template-columns: 1fr; } .hero-fg-split-media { min-height: 320px; } }

/* About A — Text Only (editorial, no image) */
.about-fg-textonly-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 1.15rem; padding: clamp(0rem, 8vw, 0rem) 0; }
.about-fg-textonly-rule { width: 60px; height: 3px; background: var(--fg-primary); margin: 0 auto 0.25rem; display: block; }
.about-fg-textonly-heading { max-width: 22ch; margin: 0 auto; }

/* About C — Text + Image + Accent */
.about-fg-accent { background: var(--fg-bg); }
.about-fg-img-styled .about-story-fg-img { border-radius: var(--radius-xl2) }
@media (max-width: 768px) { .about-fg-img-styled .about-story-fg-img { border-radius: var(--radius-xl) !important; } }
/* ─── Menu Preview variants (A text-forward / B default / C rich) ───────────── */
.menu-preview-fg-textonly .menu-preview-fg-img { display: none; }
.menu-preview-fg-textonly .menu-preview-fg-card { background: transparent; border: 1px solid var(--fg-border); border-radius: 8px; }
.menu-preview-fg-textonly .menu-preview-fg-body { padding: 26px 28px; }
.menu-preview-fg-textonly .menu-preview-fg-title { font-family: var(--fg-font-heading); font-size: 1.4rem; color: var(--fg-heading); }
.menu-preview-fg-rich .menu-preview-fg-img { height: 400px; }
.menu-preview-fg-rich .menu-preview-fg-card { border-radius: 4px; box-shadow: 0 14px 36px rgba(0,0,0,0.12); }

/* ─── FAQ variants (A compact / B default / C accent) ───────────────────────── */
.faq-fg-compact .section-eyebrow-finegrille { display: none; }
.faq-fg-compact .faq-fg-header { margin-bottom: 1.5rem; }
.faq-fg-compact .faq-fg-list { gap: 8px; }
.faq-fg-compact .faq-fg-item { padding: 0 20px; }
.faq-fg-compact .faq-fg-question { padding: 16px 0; font-size: 1.05rem; }
.faq-fg-accent .faq-fg-heading { color: var(--fg-primary); }
.faq-fg-accent .faq-fg-list { gap: 0; }
.faq-fg-accent .faq-fg-item { background: transparent; border: none; border-bottom: 1px solid var(--fg-border); border-radius: 0; padding: 0 8px; }
.faq-fg-accent .faq-fg-item[open] { background: var(--fg-cream); border-bottom-color: var(--primary); }
.faq-fg-accent .faq-fg-question { font-size: 1.4rem; }

/* ─── Location variant A — Text Only (no map) ───────────────────────────────── */
.map-fg-textonly-card { max-width: 560px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map-fg-textonly .map-fg-loc-name { font-family: var(--fg-font-heading); font-size: 1.5rem; color: var(--fg-heading); margin-bottom: 6px; }
.map-fg-textonly .map-fg-card-value { color: var(--fg-text-muted); font-size: 1rem; margin: 2px 0; }
.map-fg-textonly .map-fg-hours { white-space: pre-line; }
.map-fg-textonly .map-fg-heading { text-align: center; }
.map-fg-textonly .map-fg-cta { margin-top: 22px; background: var(--fg-secondary); border-color: var(--fg-secondary); color: #fff; }

/* ═══ Footer A/B/C variants (ported from RestoHub) ═══════════════════════════ */
.footer-fg-minimal, .footer-fg-standard, .footer-fg-full { background: var(--fg-accent-2); color: rgba(255,255,255,0.82); padding: 0; border-top: 1px solid var(--fg-border);}
.footer-fg-minimal a, .footer-fg-standard a, .footer-fg-full a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color .2s; }
.footer-fg-minimal a:hover, .footer-fg-standard a:hover, .footer-fg-full a:hover { color: #fff; }
.footer-fg-minimal .btn-finegrille, .footer-fg-standard .btn-finegrille, .footer-fg-full .btn-finegrille { color: #fff; }
.footer-fg-col-title { font-family: var(--fg-font-heading); color: #fff; font-size: 1.1rem; margin: 0 0 8px; }
.footer-fg-col-nav { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.footer-fg-line { margin: 6px 0; font-size: 0.95rem; line-height: 1.5; }
.footer-fg-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; margin-top: 10px; }
.footer-fg-social .social-ic, .social-ic { width: 22px; height: 22px; display: block; }

/* A — minimal */
.footer-fg-minimal-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 0px 32px 0; flex-wrap: wrap; }
.footer-fg-minimal .footer-nav-fg { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* B — standard */
.footer-fg-standard-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 0 32px; }
.footer-fg-order { margin-top: 16px; display: inline-block; }

/* C — full */
.footer-fg-full { padding-top: 48px; }
.footer-fg-order-full { display: block; width: 100%; text-align: center; margin: 8px 0 40px; }
.footer-fg-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 8px 0 32px; }
.footer-fg-order {
  margin-top: 0px !important;
}
.footer-nav-fg {
  padding-bottom: 0px !important;
}

/* shared bottom bar (override the light-footer colors within dark variants) */
.footer-fg-minimal .footer-bottom-fg, .footer-fg-standard .footer-bottom-fg, .footer-fg-full .footer-bottom-fg { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.footer-fg-minimal .footer-copyright-fg, .footer-fg-standard .footer-copyright-fg, .footer-fg-full .footer-copyright-fg,
.footer-fg-minimal .footer-powered-fg, .footer-fg-standard .footer-powered-fg, .footer-fg-full .footer-powered-fg { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

@media (max-width: 768px) {
  .footer-fg-minimal-inner { flex-direction: column; align-items: center; padding-bottom: 32px !important; }
  .footer-fg-standard-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-fg-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) { .footer-fg-cols { grid-template-columns: 1fr; } }

/* Full-menu: heading + menu-group switcher tabs live at the top of the right column */
.full-menu-fg-heading { margin: 0 0 22px; text-align: left; }
.full-menu-fg-tabs { display: flex; flex-wrap: wrap; gap: 32px; justify-content: flex-start; padding-block: var(--spacing-md); }
.full-menu-fg-tab { font-family: var(--fg-font-body); font-weight: 500; font-size: 1.05rem; padding: 0 0 8px; border: none; border-bottom: 2px solid transparent; background: transparent; color: var(--fg-text-muted); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.full-menu-fg-tab:hover { color: var(--fg-heading); }
.full-menu-fg-tab.is-active { color: var(--fg-heading); font-weight: 600; border-bottom-color: var(--fg-heading); }

/* Featured dishes: "See Full Menu" CTA below the carousel */
.fd-fg-cta { text-align: center; margin-top: 28px; }
.fd-fg-cta a { background: transparent; color: var(--fg-secondary); border-color: var(--fg-secondary); }
.fd-fg-cta a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }


.bg-gray {
   background: var(--fg-bg) !important;
}
/* .bt-bdr-line {
  border-bottom: 1px solid #e9e9e9;
} */
/* ─── Hero (variant B / default) — full-bleed rounded frame, dark overlay ──── */
.pd-hero { padding-block: var(--spacing-xl); background: var(--fg-bg); }
@media (max-width: 768px) { .pd-hero { padding-block: var(--spacing-sm); } .pd-hero__frame { border-radius: var(--radius-xl)!important; } .pd-hero__content { gap: var(--spacing-md) !important; } }
.pd-hero__frame {
  position: relative;
  height: 70vh; height: 70svh;
  min-height: 420px; max-height: 560px;
  width: 100%;
  border-radius: var(--radius-xl2); overflow: hidden;
  background: var(--fg-surface);
}
.pd-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: rotate(-2deg) scale(1.15);
  filter: brightness(0.55);
}
.pd-hero__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.35); }
.pd-hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--spacing-lg);
  padding-inline: var(--spacing-md);
  text-align: center;
}
.pd-hero__eyebrow {
  margin: 0; color: var(--fg-primary);
  font-family: var(--fg-font-body); font-size: 1rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.pd-hero__headline {
  margin: 0; font-family: var(--fg-font-heading); font-weight: 400;
  font-size: clamp(32px, 7.5vw, 72px); line-height: 1.05;
  letter-spacing: -1px; text-wrap: balance; color: #fff;
}
.pd-hero__subheadline {
  margin: 0; max-width: 640px; color: rgba(255, 255, 255, 0.85);
  font-family: var(--fg-font-body);
}
.pd-hero__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--fg-primary);
  min-height: 56px; padding-inline: 24px; text-transform: uppercase; color: #fff;
  
  border: none; border-radius: 32px; text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.pd-hero__btn:hover { background: var(--fg-primary); }
.pd-hero__btn svg { flex-shrink: 0; }
@media (min-width: 900px) {
  .pd-hero__frame { height: 600px; max-height: none; }
}

/* ─── Header / Nav (Storefront) — badge logo left, links + Order right ─────── */
.pd-nav { position: sticky; top: 0; z-index: 100; background: var(--fg-bg); border-bottom: 1px solid var(--fg-border); }
.pd-nav__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--spacing-md); max-width: 1366px; margin-inline: auto; padding: var(--spacing-md) var(--spacing-xl); }
.pd-nav__brand { display: inline-flex; align-items: center; text-decoration: none; }
.pd-nav__badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--fg-primary); }
.pd-nav__badge svg { width: 28px; height: 28px; }
.pd-nav__logo-img { max-height: 48px; width: auto; display: block; }
@media (max-width: 768px) { .pd-nav__logo-img, .footer-sf__logo { max-height: 16px !important; } }
.pd-nav__menu { display: flex; align-items: center; gap: var(--spacing-md);  }
.pd-nav__link { color: var(--fg-text); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
.pd-nav__link:hover { color: var(--fg-primary); }
.pd-nav__link.is-active { color: var(--fg-primary); }
.pd-nav__order { display: inline-flex; text-transform: uppercase; align-items: center; justify-content: center; min-height: 32px; padding-inline: 24px; background: var(--fg-primary); color: #fff; border-radius: 22px; text-decoration: none; transition: background 0.2s; }
.pd-nav__order:hover { background: var(--fg-primary-dark); }
.pd-nav__hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; }
.pd-nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--fg-text); transition: transform 0.2s, opacity 0.2s; }
.pd-nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pd-nav__hamburger.active span:nth-child(2) { opacity: 0; }
.pd-nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .pd-nav__hamburger { display: flex; }
  .pd-nav__menu { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: flex-start; gap: 6px; background: var(--fg-bg); border-bottom: 1px solid var(--fg-border); padding: var(--spacing-xs) var(--spacing-xl) var(--spacing-md); }
  .pd-nav__menu.active { display: flex; }
  .pd-nav__link { display: flex; align-items: center; min-height: 44px; font-size: 1.05rem; }
  .pd-nav__order { width: 100%; margin-top: 8px; }
}

/* Hero CTA dropdown caret (matches the reference button) */
.pd-hero__caret { flex-shrink: 0; margin-left: 2px; opacity: 0.9; }

/* ─── About Story (variant B) — image left, text right, green CTA ──────────── */
.pd-about { padding-block: var(--spacing-xl) ; background: var(--fg-bg); }
@media (max-width: 768px) { .pd-about.pd-about--image-right { padding-block: var(--spacing-sm); border-top: 1px solid #525252 !important; }
.page-about .pd-about.pd-about--image-right { border-top: none !important }
}
/* When the inner uses the shared .container (1366px + spacing-xl gutters),
   drop the section's own horizontal padding so the gutter isn't doubled. */
.pd-about:has(> .container) { padding-inline: 0; }
.pd-about__inner { display: flex; flex-direction: column; gap: var(--spacing-xl); max-width: 1366px; margin-inline: auto; }
.pd-about__media { width: 100%; overflow: hidden; background: var(--fg-surface); }
.pd-about__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; border-radius: var(--radius-xl2); }
.pd-about__body { display: flex; flex-direction: column; align-items: flex-start; gap: var(--spacing-lg); padding-inline: var(--spacing-xl); }
.pd-about__eyebrow { margin: 0; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pd-about__heading { margin: 0; color: var(--fg-text); text-wrap: balance; }
.pd-about__text { margin: 0; max-width: 60ch; color: var(--fg-text);  }

/* Shared green CTA button (clock + label + caret) */
.pd-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 56px; padding-inline: 24px; background: var(--fg-secondary); color: #fff; font-family: var(--fg-font-body); font-size: 1rem; border: none; border-radius: 8px; text-decoration: none; cursor: pointer; transition: background 0.2s; }
@media (max-width: 768px) { .pd-cta-btn { margin-bottom: var(--spacing-md); margin-top: 0px !important; } }
.pd-cta-btn:hover { background: var(--fg-primary); }
.pd-cta-btn svg { flex-shrink: 0; }
.pd-cta-btn__caret { opacity: 0.9; margin-left: 2px; }

@media (min-width: 900px) {
  .pd-about__inner { flex-direction: row; align-items: center; }
  .pd-about__media { flex: 1; }
  .pd-about__img { height: 600px; aspect-ratio: auto; }
  .pd-about__body { flex: 1; }
}

/* Mobile: for image-right, show the image first (media above the text). */
@media (max-width: 768px) {
  .pd-about--image-right .pd-about__media { order: -1; }
  .pd-about__body { gap: var(--spacing-md) !important; }
  .pd-about__img { border-radius: var(--radius-xl) !important; }
  .review__header {    margin: 0 auto var(--spacing-lg) !important;}
  .review__card {gap: var(--spacing-md);}
  .content-app__inner--center {gap: var(--spacing-md) !important;}
  .faq2__question {     padding: var(--spacing-sm) 0 !important; }
  .gallery-fl {padding-block: var(--spacing-xl) !important;}
}

/* ─── CTA Banner (variant B) — centered heading + body + green CTA, dividers ── */
.pd-ctaband { padding-block: var(--spacing-xl3) ; background: var(--fg-bg); }
.bdrtop { border-top: none !important; }
.pd-ctaband__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(20px, 3vw, 32px); max-width: 900px; margin-inline: auto; }
.pd-ctaband__heading { margin: 0; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(30px, 5.5vw, 56px); line-height: 1.05; letter-spacing: -1px; color: #fff; text-wrap: balance; }
.pd-ctaband__body { margin: 0; max-width: 70ch; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; }
.pd-ctaband__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }
.pd-ctaband__btn { margin-top: 0; min-height: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.pd-ctaband__btn--alt { background: transparent; color: var(--fg-secondary); box-shadow: inset 0 0 0 2px var(--fg-secondary); }
.pd-ctaband__btn--alt:hover { background: var(--primary); color: #fff; box-shadow: inset 0 0 0 2px var(--primary); }
@media (max-width: 768px) {
  .pd-ctaband.bdrtop { padding-left: var(--spacing-sm) !important; padding-right: var(--spacing-sm) !important; padding-block: var(--spacing-xl); }
  .pd-ctaband__actions .pd-cta-btn {margin-bottom: 0px !important;}
}

/* ─── Content Block (reverse: text left, image right) — VISIT_US on HOME ────── */
.pd-block { padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 56px); background: var(--fg-bg); }
.pd-block__inner { display: flex; flex-direction: column; gap: clamp(24px, 5vw, 64px); max-width: 1366px; margin-inline: auto; }
.pd-block__body { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(16px, 2.5vw, 28px); }
.pd-block__eyebrow { margin: 0; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 1rem; }
.pd-block__heading { margin: 0; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(30px, 5.5vw, 56px); line-height: 1.05; letter-spacing: -1px; color: #fff; text-wrap: balance; }
.pd-block__text { margin: 0; max-width: 56ch; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.55; }
.pd-block__media { width: 100%; overflow: hidden; border-radius: 28px; background: var(--fg-surface); }
.pd-block__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; }

@media (min-width: 900px) {
  .pd-block__inner { flex-direction: row; align-items: center; }
  .pd-block__body { flex: 1; }
  .pd-block__media { flex: 1; }
  .pd-block__img { height: 600px; aspect-ratio: auto; }
  /* reverse = text first (left), image second (right) */
  .pd-block--reverse .pd-block__body { order: 1; }
  .pd-block--reverse .pd-block__media { order: 2; }
}

/* ─── Section dividers — a top border line on every page section ────────────── */
main > section + section {
    border-top: 1px solid var(--fg-border);
}

/* ─── Latest News (LATEST_NEWS) — heading + 3 icon cards ───────────────────── */
.pd-news { padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 56px); background: var(--fg-bg); }
.pd-news__inner { max-width: 1366px; margin-inline: auto; }
.pd-news__heading { margin: 0 0 clamp(28px, 5vw, 48px); text-align: center; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(28px, 5vw, 44px); letter-spacing: -1px; color: #fff; }
.pd-news__grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px); }
.pd-news__card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(16px, 3vw, 28px); padding: clamp(28px, 4vw, 48px) clamp(22px, 3vw, 36px); background: var(--fg-surface); border: 1px solid var(--fg-border); border-radius: 20px; }
.pd-news__icon-wrap { display: inline-flex; align-items: center; justify-content: center; }
.pd-news__icon { width: 40px; height: 40px; }
.pd-news__card-title { margin: 0; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(20px, 3vw, 24px); letter-spacing: -0.4px; color: #fff; }
.pd-news__card-body { margin: 0; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 1rem; line-height: 1.55; }

@media (min-width: 600px) {
  .pd-news__grid { grid-template-columns: repeat(2, 1fr); }
  .pd-news__card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .pd-news__grid { grid-template-columns: repeat(3, 1fr); }
  .pd-news__card:last-child:nth-child(odd) { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STOREFRONT — Light-mode cafe overrides
   The base rules above were authored for a dark theme and hardcode white text
   (#fff / rgba(255,255,255,…)) on sections that now sit on a light cream page.
   This block re-colors those to the light palette. It is intentionally LAST in
   source order so it wins ties against the dark-theme rules above.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section headings that hardcoded #fff — recolor to the dark heading token.
   (The hero headline stays white; it sits on a darkened photo overlay.) */
.pd-about__heading,
.pd-block__heading,
.pd-ctaband__heading,
.pd-news__heading,
.pd-news__card-title,
.cta-banner-fg-heading { color: var(--fg-heading) !important; }

/* Hero photo: drop PrimeDining's tilt/heavy-darken for a cleaner cafe framing
   while keeping enough dimming for the white headline to stay legible. */
.pd-hero__bg { transform: none; filter: brightness(0.6); }
.pd-hero__overlay { background: rgba(0, 0, 0, 0.32); }
.pd-hero__eyebrow { color: rgba(255, 255, 255, 0.9); font-style: italic; letter-spacing: 0.18em; }

/* CTA banner (fg fallback markup) — light surface instead of dark */
.section-cta-banner-finegrille { background: var(--fg-cream); color: var(--fg-text); }
.cta-banner-fg-body { color: var(--fg-text-muted); }

/* Featured-dish description was a near-white gray — too faint on cream */
.featured-dish-fg-desc { color: var(--fg-text-muted) !important; }

/* Hero variant A (brand color, no image): dark text on the cream brand field */
.hero-fg-brand { color: var(--fg-heading); }
.hero-fg-brand-title,
.hero-fg-brand .hero-fg-headline { color: var(--fg-heading); }
.hero-fg-brand-eyebrow { color: var(--fg-text-muted) !important; }
.hero-fg-brand-tagline { color: var(--fg-text-muted); }
.hero-fg-brand .btn-primary-finegrille { background: var(--fg-secondary); border-color: var(--fg-secondary); color: #fff; }
.hero-fg-brand .btn-primary-finegrille:hover { background: var(--fg-primary); border-color: var(--fg-primary); color: #fff; }

/* ── Footer (A / B / C variants) — light cafe footer ──────────────────────── */
.footer-fg-minimal, .footer-fg-standard, .footer-fg-full {
  background: var(--fg-accent-2);
  color: var(--fg-text-muted);
  border-top: 1px solid var(--fg-border);
}
.footer-fg-minimal a, .footer-fg-standard a, .footer-fg-full a { color: var(--fg-text-muted); }
.footer-fg-minimal a:hover, .footer-fg-standard a:hover, .footer-fg-full a:hover { color: var(--primary); }
.footer-fg-col-title { color: var(--fg-heading); }
.footer-fg-minimal .footer-bottom-fg,
.footer-fg-standard .footer-bottom-fg,
.footer-fg-full .footer-bottom-fg { border-top: 1px solid var(--fg-border); }
.footer-fg-minimal .footer-copyright-fg, .footer-fg-standard .footer-copyright-fg, .footer-fg-full .footer-copyright-fg,
.footer-fg-minimal .footer-powered-fg, .footer-fg-standard .footer-powered-fg, .footer-fg-full .footer-powered-fg { color: var(--fg-text-muted); }
/* The Order Now button stays green with white label */
.footer-fg-minimal .btn-finegrille, .footer-fg-standard .btn-finegrille, .footer-fg-full .btn-finegrille {
  background: var(--fg-secondary); border-color: var(--fg-secondary); color: #fff;
}
.footer-fg-social .social-ic { color: var(--fg-text-muted); }

/* Base footer bottom-bar divider (used by non-variant footer markup) */
.footer-bottom-fg { border-top: 1px solid var(--fg-border); }
.footer-tagline-fg { color: var(--fg-text-muted); }

/* Location card border line — was a translucent-white hairline */
.map-fg-loc-name { border-bottom: 1px solid var(--fg-border); }

/* Buttons: emerald pill treatment to match the reference storefront */
.btn-finegrille { border-radius: 999px; }
.pd-hero__btn, .pd-cta-btn { border-radius: 999px; }
.pd-nav { box-shadow: 0 1px 0 var(--fg-border); }

/* ══ Menu Carousel — floating (photo carousel) / filled (text cards) /
      outlined (printed-menu list) ══════════════════════════════════════════ */
.menu-carousel { padding-block: var(--spacing-xl3); background: var(--fg-bg); }
@media (max-width: 768px) { .menu-carousel { padding-block: var(--spacing-xl); } .mc__header { margin-bottom: var(--spacing-xl) !important; } .mc__cta { margin-top: var(--spacing-xl) !important; } }
.mc__header { text-align: center; max-width: 720px; margin: 0 auto var(--spacing-xl3) }
.mc__eyebrow { margin: 0 0 10px; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.mc__heading { margin: 0; font-family: var(--neutral-8); font-weight: 400; font-size: clamp(30px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.5px; color: var(--fg-heading); }
.mc__desc { margin: 14px auto 0; max-width: 60ch; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 1.05rem; line-height: 1.6; }
.mc__name { margin: 0; color: var(--fg-heading) }
.mc__item-desc { margin: 0; color: var(--fg-heading); font-family: var(--fg-font-body); font-size: 0.95rem; line-height: 1.55; }
.mc__price { margin: 0; font-family: var(--fg-heading); font-weight: 600; color: var(--fg-text); }

/* Shared CTA pill */
.mc__cta { text-align: center; margin-top: var(--spacing-xl3) }
.mc__cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding-inline: 24px;
  background: var(--fg-primary); color: #fff;
  text-transform: uppercase;
  border: none; border-radius: 999px; text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.mc__cta-btn:hover { background: var(--fg-primary); }

/* ── Floating — full-width, drag-scrollable photo carousel ─────────────────── */
/* The track spans the full section width (section drops its horizontal padding);
   the header and CTA stay centered inside their own .container. */
.menu-carousel--floating { padding-inline: 0; }
.mc__track {
  display: flex; gap: 24px; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab; user-select: none; scroll-behavior: smooth;
}
.mc__track::-webkit-scrollbar { display: none; }
.mc__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.menu-carousel--floating .mc__card {
  flex: 0 0 clamp(280px, 40vw, 400px); max-width: 88vw;
  display: flex; flex-direction: column; gap: var(--spacing-sm); text-align: center;
}
.mc__img {
  width: 100%; height: clamp(240px, 22vw, 300px); object-fit: cover; display: block;
  border-radius: var(--radius-xl); box-shadow: 0 12px 30px rgba(28, 27, 24, 0.12);
  pointer-events: none;
}
.mc__img--placeholder { background: var(--fg-surface); }
.menu-carousel--floating .mc__card-body { display: flex; flex-direction: column; gap: var(--spacing-xs); align-items: center; padding: 0 var(--spacing-md); }

/* ── Filled — grid of filled text-only cards ───────────────────────────────── */
.mc__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mc__card--filled {
  display: flex; flex-direction: column; gap: 10px; text-align: center;
  background: var(--fg-accent); border-radius: 16px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mc__card--filled:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(28,27,24,0.10); }
@media (max-width: 1024px) { .mc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .mc__grid { grid-template-columns: 1fr; } }

/* ── Outlined — two-column printed-menu list with dotted leaders ────────────── */
.mc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px clamp(32px, 5vw, 64px); }
.mc__row { padding: 14px 0; }
.mc__row-head { display: flex; align-items: baseline; gap: 4px; }
.mc__row-name { font-family: var(--fg-font-heading); font-weight: 600; font-size: 1.1rem; color: var(--fg-heading); }
.mc__row-dots { flex: 1; height: 0; border-bottom: 2px dotted var(--fg-border); transform: translateY(-4px); }
.mc__row-price { font-family: var(--fg-font-body); font-weight: 600; color: var(--fg-text); white-space: nowrap; }
.mc__row-desc { margin: 6px 0 0; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 0.9rem; line-height: 1.5; max-width: 46ch; }
@media (max-width: 760px) { .mc__list { grid-template-columns: 1fr; } }

/* ══ Review — full-width, drag-scrollable testimonials (floating / filled /
      outlined card treatments) ═════════════════════════════════════════════ */
.review { padding-block:var(--spacing-xl3); background: var(--fg-bg); }
@media (max-width: 768px) { .review { padding-block: var(--spacing-xl) !important; } }
.review__header { text-align: center; max-width: 900px; margin: 0 auto var(--spacing-xl3)}
.review__eyebrow { margin: 0 0 10px; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.review__heading { margin: 0;  color: var(--fg-heading); }
.review__track {
  display: flex; align-items: stretch; gap: 24px; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab; user-select: none; scroll-behavior: smooth;
}
.review__track::-webkit-scrollbar { display: none; }
.review__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.review__card {
  flex: 0 0 clamp(280px, 26vw, 350px); max-width: 88vw;
  display: flex; flex-direction: column; gap: var(--spacing-md);
}
.review__stars { color: var(--fg-secondary); font-size: 1.05rem; letter-spacing: 4px; line-height: 1; }
.review__text { margin: 0; color: var(--fg-heading); flex: 1; }
.review__name { margin: 0; color: var(--fg-heading);  }
.review__card .review__name {
  font-weight: 700 !important;
}

/* Floating — no chrome, centered */
.review--floating .review__card { text-align: center; align-items: center; }

/* Filled — solid tan panel, left-aligned */
.review--filled .review__card {
  text-align: left; align-items: flex-start;
  background: var(--fg-accent); border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
}

/* Outlined — bordered card, left-aligned */
.review--outlined .review__card {
  text-align: left; align-items: flex-start;
  background: transparent; border: 1px solid var(--fg-border); border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
}

/* ══ Form — contact form + info (floating / filled panels) ══════════════════ */
.form2 { padding-block: 0px !important; background: var(--fg-bg); }
.form2__grid { display: grid; grid-template-columns: 1fr 300px; gap: var(--spacing-lg); max-width: 1366px; margin-inline: auto; }
.form2__heading { margin: 0 0 clamp(20px, 3vw, 32px); font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(26px, 3.4vw, 38px); color: var(--fg-heading); }
.form2__form { display: flex; flex-direction: column; gap: var(--spacing-lg) }
.form2__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
.form2__field { display: flex; flex-direction: column; gap: var(--spacing-xs3); }
.form2__label { color: var(--fg-heading); }
.form2__input {
  width: 100%; padding: 0.75rem 0.9rem; font-family: var(--fg-font-body); font-size: 0.95rem;
  color: var(--fg-text); border: 1px solid var(--fg-border1); border-radius: 10px;
  outline: none; transition: border-color 0.2s;
  background: transparent;
}
.form2__input:focus { border-color: var(--primary); }
.form2__select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c7a72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form2__textarea { resize: vertical; min-height: 130px; }
.form2__submit { text-align: center;  }
.form2__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding-inline: 24px; border: none; border-radius: 999px; cursor: pointer;
  background: var(--fg-secondary); color: #fff; text-transform: uppercase; transition: background 0.2s;
}
.form2__btn:hover { background: var(--fg-primary); }
.form2__btn:disabled { opacity: 0.6; cursor: default; }
.form2__status { margin: 0; font-size: 0.9rem; color: var(--fg-text-muted); text-align: center; }
.form2__aside-title { margin: 0 0 20px; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(22px, 3vw, 30px); color: var(--fg-heading); }
.form2__contact { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--fg-heading); font-family: var(--fg-font-body); font-size: 1rem; }
.form2__contact svg { color: var(--fg-secondary); flex-shrink: 0; }
.form2__contact a { color: inherit; text-decoration: none; }
.form2__contact a:hover { color: var(--primary); }

/* Filled — form and info sit inside cream rounded panels */
.form2--filled .form2__main,
.form2--filled .form2__aside {
  background: var(--fg-accent); border-radius: 20px; padding: clamp(28px, 4vw, 48px);
}
.form2--filled .form2__aside { align-self: start; }
.form2__main, .form2__aside {
  padding-block:var(--spacing-xs); padding-inline:var(--spacing-md);
}
@media (max-width: 900px) {
  .form2__grid { grid-template-columns: 1fr; gap: 0px; }
  .form2__row { grid-template-columns: 1fr; }
}

/* ══ Gallery — Floating: full-width image carousel with round arrows ════════ */
.gallery-fl { padding-block: var(--spacing-xl3); background: var(--fg-bg); }
.gallery-fl__header { text-align: center; margin-bottom: var(--spacing-xl) }
.gallery-fl__eyebrow { margin: 0 0 10px; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.gallery-fl__heading { margin: 0; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(34px, 5.5vw, 60px); line-height: 1.1; letter-spacing: -0.5px; color: var(--fg-heading); }
.gallery-fl__wrap { position: relative; }
.gallery-fl__track {
  display: flex; gap: var(--spacing-lg); overflow-x: auto;
  padding: 0;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab; user-select: none; scroll-behavior: smooth;
}
.gallery-fl__track::-webkit-scrollbar { display: none; }
.gallery-fl__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.gallery-fl__item {
  flex: 0 0 clamp(280px, 30vw, 400px); max-height: 300px; margin: 0;
  padding: 0; border: none; background: none; cursor: pointer; display: block;
  border-radius: var(--radius-xl); overflow: hidden;
}
.gallery-fl__img { width: 100%; height: clamp(260px, 26vw, 340px); object-fit: cover; display: block; border-radius: 16px; pointer-events: none; transition: transform 0.4s ease; }
.gallery-fl__item:hover .gallery-fl__img,
.gallery-fl__item:focus-visible .gallery-fl__img { transform: scale(1.05); }
.gallery-fl__item:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* Lightbox popup */
.gallery-fl__lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; gap: 12px; padding: 24px;
  background: rgba(20, 20, 18, 0.92);
}
.gallery-fl__lightbox.is-open { display: flex; }
.gallery-fl__lb-figure { margin: 0; max-width: min(1100px, 92vw); display: flex; }
.gallery-fl__lb-img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 16px 50px rgba(0,0,0,0.5); }
.gallery-fl__lb-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  font-size: 2rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.12);
  border: none; border-radius: 50%; cursor: pointer; transition: background 0.2s;
}
.gallery-fl__lb-close:hover { background: rgba(255,255,255,0.24); }
.gallery-fl__lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; font-size: 2rem; line-height: 1; color: #fff;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%; cursor: pointer;
  transition: background 0.2s;
}
.gallery-fl__lb-nav:hover { background: var(--primary); }
.gallery-fl__lb-prev { left: 24px; }
.gallery-fl__lb-next { right: 24px; }
@media (max-width: 768px) {
  .gallery-fl__lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .gallery-fl__lb-prev { left: 8px; } .gallery-fl__lb-next { right: 8px; }
  .gallery-fl__item {
  flex: 0 0 clamp(280px, 30vw, 280px); max-height: 210px; 
}
.gallery-fl__track { gap: var(--spacing-sm) !important; }
}

/* ══ FAQ — floating (divider lines) / filled (tan panel) accordion ══════════ */
.faq2 { padding-block:var(--spacing-xl3); background: var(--fg-bg); }
.faq2__inner { max-width: 800px; margin-inline: auto; }
@media (max-width: 768px) {
  .faq2 { padding-block: var(--spacing-xl) !important; }
  .faq2__inner.container { padding-inline: var(--spacing-lg) !important; }
  .faq2__header { margin-bottom: var(--spacing-lg) !important; }
}
.faq2__header { text-align: center; margin-bottom: var(--spacing-xl3) }
.faq2__eyebrow { margin: 0 0 10px; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.faq2__heading { margin: 0; color: var(--fg-heading); }
.faq2__item { border-bottom: 1px solid var(--fg-border); }
.faq2__question {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none; padding: var(--spacing-md) 0;
  color: var(--fg-heading);
}
.faq2__question::-webkit-details-marker { display: none; }
.faq2__chevron { flex-shrink: 0; color: var(--fg-secondary); transition: transform 0.2s ease; }
.faq2__item[open] .faq2__chevron { transform: rotate(180deg); }
.faq2__answer { padding: 0 0 22px; }
.faq2__answer p { margin: 0; color: var(--fg-heading); max-width: 800px }

/* Floating — hairline separators around every item (line above the first too) */
.faq2--floating .faq2__list { border-top: 1px solid var(--fg-border); }

/* Filled — one tan rounded panel with internal dividers only */
.faq2--filled .faq2__list {
  background: var(--fg-accent); border-radius: 20px;
  padding: 6px clamp(24px, 3vw, 40px);
}
.faq2--filled .faq2__item:last-child { border-bottom: none; }

/* ── Content App — app-download band (text / image-right / image-left) ──────── */
.content-app { padding-block: var(--spacing-xl3); background: var(--fg-bg); }
@media (max-width: 768px) { .content-app { padding-block: var(--spacing-xl) !important; } }
.content-app__inner { max-width: 1366px; margin-inline: auto; }
.content-app__inner--center {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--spacing-lg); max-width: 1366px;
}
.content-app__inner--split {
  display: flex; flex-direction: column; gap: clamp(28px, 5vw, 64px);
}
.content-app__body {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(18px, 2.5vw, 28px);
}
.content-app__inner--center .content-app__body { align-items: center; text-align: center; }
.content-app__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--fg-secondary); flex-shrink: 0;
}
.content-app__icon svg { width: 30px; height: 30px; }
.content-app__icon--image { background: transparent; overflow: hidden; }
.content-app__icon-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.content-app__heading {
  margin: 0; 
  color: var(--fg-heading); text-wrap: balance; max-width: 800px;
}
.content-app__badges { display: flex; flex-wrap: wrap; gap: 16px; }
.content-app__inner--center .content-app__badges { justify-content: center; }
.content-app__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; min-width: 168px;
  background: #000; color: #fff; border-radius: 12px; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.content-app__badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }
.content-app__badge-logo { width: 26px; height: 26px; flex-shrink: 0; }
.content-app__badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.content-app__badge-text small { font-family: var(--fg-font-body); font-size: 0.62rem; letter-spacing: 0.02em; opacity: 0.9; text-transform: none; }
.content-app__badge-text strong { font-family: var(--fg-font-body); font-size: 1.15rem; font-weight: 600; }
.content-app__media { width: 100%; overflow: hidden; border-radius: 20px; background: var(--fg-surface); }
.content-app__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; }

@media (min-width: 900px) {
  .content-app__inner--split { flex-direction: row; align-items: center; }
  .content-app__inner--split .content-app__body { flex: 1; }
  .content-app__inner--split .content-app__media { flex: 1; }
  .content-app__inner--split .content-app__img { height: 520px; aspect-ratio: auto; }
  
}

/* ── Our Story — centered heading + body + pill CTA ─────────────────────────── */
.our-story { padding-block: var(--spacing-xl3); background: var(--fg-bg); }
.our-story__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--spacing-lg); max-width: 1366px; margin-inline: auto;
}
.our-story__eyebrow {
  margin: 0; color: var(--fg-primary); font-family: var(--fg-font-body);
  font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.our-story__heading {
  margin: 0; 
  color: var(--fg-heading); text-wrap: balance;
}
.our-story__body {
  margin: 0; color: var(--fg-heading);  max-width: 800px;
}
.our-story__btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding-inline: 24px;
  background: var(--fg-secondary); color: #fff;
  font-family: var(--fg-font-body); font-size: 1rem; font-weight: 600;
  letter-spacing: 0; text-transform: uppercase;
  border: none; border-radius: 999px; text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.our-story__btn:hover { background: var(--fg-secondary); }

/* Buttons — mobile: reduce min-height from 56px to 48px */
@media (max-width: 768px) {
  .our-story__btn, .pd-hero__btn, .mc__cta-btn, .pd-cta-btn { min-height: 48px; width: 100%; }
}
@media (max-width: 768px) {
  .our-story { padding-block: var(--spacing-xl); }
  .container.our-story__inner { padding-inline: var(--spacing-lg) !important; }
}

/* ══ Header variants (A minimal / B standard / C framed — default) ══════════
   Shared markup (brand left · nav right · Order pill); the pd-nav--A|B|C class
   drives the border/spacing treatment. */
.pd-nav__wordmark {
  font-family: var(--fg-font-heading); font-weight: 700;
  font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg-heading); white-space: nowrap; line-height: 1;
}
/* Reset the base border/shadow so each variant sets its own framing */
.pd-nav.pd-nav--A, .pd-nav.pd-nav--B, .pd-nav.pd-nav--C { border-top: none; border-bottom: 1px solid var(--fg-border); box-shadow: none; }

/* A — Minimal: borderless, compact */
.pd-nav--A .pd-nav__inner { padding-block: 12px; }
.pd-nav--A .pd-nav__wordmark { font-size: 1.35rem; }

/* B — Standard: single bottom hairline */
.pd-nav--B { border-bottom: 1px solid var(--fg-border); }
.pd-nav--B .pd-nav__inner { padding-block: 16px; }

/* ══ Footer (variant C, default) — brand left · nav + social columns right ══ */
.footer-sf { background: var(--fg-accent-2); padding: var(--spacing-xl) }
.footer-sf__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: var(--spacing-lg) }
.footer-sf__brand { text-decoration: none; }
.footer-sf__wordmark { font-family: var(--fg-font-heading); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-heading); white-space: nowrap; }
.footer-sf__logo { max-height: 48px; width: auto; display: block; }
.footer-sf__cols { display: grid; grid-template-columns: repeat(2, minmax(110px, auto)); gap: 12px clamp(48px, 8vw, 120px); }
.footer-sf__nav, .footer-sf__social { display: flex; flex-direction: column; gap: 13px; }
.footer-sf__nav a, .footer-sf__social a { 
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-sm) !important;
  line-height: var(--line-height-sm) !important;
  letter-spacing: var(--letter-spacing-normal) !important;
  color: var(--fg-heading);  text-decoration: none; transition: color 0.2s; }
.footer-sf__social a { text-transform: capitalize; }
.footer-sf__nav a:hover, .footer-sf__social a:hover { color: var(--primary); }
.footer-sf__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: var(--spacing-md); border-top:1px solid var(--fg-border); max-width: 1286px;
    margin: 0 auto; }
.footer-sf__copy, .footer-sf__powered { margin: 0;  color: var(--fg-heading); }
.footer-sf__powered span { font-weight: 700; color: var(--fg-secondary); }
@media (max-width: 768px) {
  .footer-sf { text-align: center; padding-top: var(--spacing-xl) !important; padding-inline: var(--spacing-sm) !important; padding-bottom: var(--spacing-md) !important; }
  .footer-sf__top { flex-direction: column; align-items: center; gap: var(--spacing-lg); }
  .container.footer-sf__top { padding: 0px !important; }
  .footer-sf__cols { grid-template-columns: 1fr; justify-items: center; gap: var(--spacing-md); width: 100% !important; }
  .footer-sf__nav, .footer-sf__social { align-items: center; }
  .footer-sf__nav { width: 100% !important; }
  .footer-sf__social { border-top: 1px solid #525252; padding-top: var(--spacing-md) !important; margin-bottom: var(--spacing-md) !important; width: 100% !important; }
  .footer-sf__bottom { flex-direction: column; justify-content: center; gap: var(--spacing-xs2); }
}

/* Footer sits on the light Accent-2 background, so its text stays dark (Neutral-7)
   for contrast on the Light/Ecru/Color themes. The CSS generator's footer
   contrast override (footerThemeOverride) flips these to the theme's light text
   (Neutral-1) when the footer background is dark, e.g. the Dark theme. */
.footer-sf,
.footer-nav-fg,
.footer-fg-minimal, .footer-fg-standard, .footer-fg-full {
  --fg-heading: var(--neutral-7);
  --fg-text: var(--neutral-7);
  --fg-text-muted: #4a4842;
  --fg-secondary: var(--neutral-7);
  color: var(--neutral-7);
}
.footer-fg-minimal a, .footer-fg-standard a, .footer-fg-full a,
.footer-fg-col-title,
.footer-fg-minimal .btn-finegrille, .footer-fg-standard .btn-finegrille, .footer-fg-full .btn-finegrille,
.footer-fg-minimal .footer-powered-fg, .footer-fg-standard .footer-powered-fg, .footer-fg-full .footer-powered-fg {
  color: var(--neutral-7);
}
.footer-fg-minimal a:hover, .footer-fg-standard a:hover, .footer-fg-full a:hover { color: var(--primary); }

/* C — Framed (default): centered wordmark with split nav (links left · brand
   center · links + Order right), top + bottom hairline. */
.pd-nav--C { border-top: 1px solid var(--fg-border); border-bottom: 1px solid var(--fg-border); }
.pd-nav--C .pd-nav__wordmark { font-size: 1.6rem; }
.pd-nav__inner--split { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--spacing-md); padding-block: var(--spacing-md); }
.pd-nav__menu--left { justify-self: start; }
.pd-nav__brand--center { justify-self: center; padding-inline: var(--spacing-md); }
.pd-nav__menu--right { justify-self: end; }
.pd-nav__menu--full { display: none; }

@media (max-width: 899px) {
  /* Collapse the split into: hamburger (left) · brand (center) · Order (right).
     The full link list is revealed by the hamburger via .pd-nav__menu--full. */
  .pd-nav--split .pd-nav__inner--split { display: flex; align-items: center; gap: var(--spacing-sm); padding: var(--spacing-sm); }
  .pd-nav--split .pd-nav__hamburger { order: -1; }
  .pd-nav--split .pd-nav__brand--center { flex: 1; justify-content: center; padding-inline: 0; }
  /* Left links stay hidden; keep the right group in the bar but show only Order */
  .pd-nav--split .pd-nav__menu--left { display: none; }
  .pd-nav--split .pd-nav__menu--right {
    display: flex; flex-direction: row; align-items: center; position: static;
    width: auto; margin: 0; padding: 0; gap: 0; background: none; border: none;
  }
  .pd-nav--split .pd-nav__menu--right .pd-nav__link { display: none; }
  .pd-nav--split .pd-nav__menu--right .pd-nav__order { width: auto; margin-top: 0; }
}

/* ══ Banner (inner-page header) — text / filled / full-bleed ════════════════ */
.banner { background: var(--fg-surface);  }
.banner__inner { padding-inline:var(--spacing-md) ; max-width: 1100px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(18px, 3vw, 30px); }
.banner__eyebrow { margin: 0; color: var(--fg-primary); font-family: var(--fg-font-body); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.banner__title { margin: 0; font-family: var(--fg-font-heading); font-weight: 400; font-size: clamp(40px, 7vw, 76px); line-height: 1.05; letter-spacing: -1px; color: var(--fg-heading); text-wrap: balance; }
.banner__subtitle { margin: 0; max-width: 60ch; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; }
.banner__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding-inline: 24px; border: none; border-radius: 999px; cursor: pointer;
  background: var(--fg-secondary); color: #fff; font-family: var(--fg-font-body); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s;
}
.banner.banner--full-bleed {
  border-top: none !important;
}
.banner__btn:hover { background: var(--fg-primary-dark); }

/* Filled — content inside a cream rounded panel */
.banner--filled .banner__panel { background: var(--fg-accent); border-radius: 24px; padding: clamp(44px, 6vw, 84px) clamp(24px, 5vw, 56px); max-width: 1300px; margin-inline: auto; }

/* Full-bleed — contained rounded photo frame with dark overlay, light text */
.banner--full-bleed { padding-block:var(--spacing-xl);background: var(--fg-surface); }
.banner--full-bleed .container { max-width: 1366px; margin-inline: auto; }
.banner__frame { position: relative; max-width: 1366px; margin-inline: auto; border-radius: 24px; overflow: hidden; min-height: clamp(300px, 32vw, 420px); display: flex; align-items: center; }
.banner--full-bleed .banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner--full-bleed .banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); }
.banner--full-bleed .banner__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(48px, 7vw, 96px); }
.banner__title--light { color: #fff; }
.banner__subtitle--light { color: rgba(255,255,255,0.88); }
.banner__eyebrow--light { color: rgba(255,255,255,0.85); }
/* Desktop: cap the full-bleed banner frame at 320px tall (content stays centered). */
@media (min-width: 768px) {
  .banner--full-bleed .banner__frame { min-height: 320px; max-height: 320px; }

  .banner--full-bleed .banner__inner { padding-block: clamp(24px, 3vw, 40px); }
}
@media (max-width: 768px) {
  .banner.banner--full-bleed { padding-block: var(--spacing-sm) !important; }
}

:root {
  --spacing-xs3: 0.250rem; /* 4px */
  --spacing-xs2: 0.500rem; /* 8px */
  --spacing-xs:  0.750rem; /* 12px */
  --spacing-sm:  1.000rem; /* 16px */
  --spacing-md:  1.500rem; /* 24px */
  --spacing-lg:  2.000rem; /* 32px */
  --spacing-xl:  2.500rem; /* 40px */
  --spacing-xl2: 2.750rem; /* 48px */
  --spacing-xl3: 4.000rem; /* 64px */
  --spacing-xl4: 5.000rem; /* 80px */

  /* Border radius scale (rounded corners) */

  --radius-sm:  0.375rem; /* 6px */
  --radius-md:  0.375rem; /* 6px */
  --radius-lg:  0.500rem; /* 8px */
  --radius-xl:  0.750rem; /* 12px */
  --radius-xl2: 1.050rem; /* 16px */

  /*font sizes (body / heading / display) */

  --font-size-xs:  0.750rem; /* 12px */
  --font-size-sm:  0.875rem; /* 14px */
  --font-size-md:  1.000rem; /* 16px */
  --font-size-lg:  1.250rem; /* 20px */
  --font-size-xl:  1.500rem; /* 24px */
  --font-size-xl2: 2.000rem; /* 32px */
  --font-size-xl3: 2.500rem; /* 40px */
  --font-size-xl4: 3.500rem; /* 56px */
  --font-size-xl5: 4.500rem; /* 72px (condensed = 5.500rem / 88px) */



  /* ---- Neutral ---- */
  --neutral-1: #FFFFFF;
  --neutral-2: #F2F2F2;
  --neutral-3: #E0E0E0;
  --neutral-4: #A3A3A3;
  --neutral-5: #6E6E6E;
  --neutral-6: #525252;
  --neutral-7: #242424;
  --neutral-8: #161616;
  --neutral-9: #000000;

  /* ---- Paper (ecru theme backgrounds) ---- */
  --paper-1: #F2EFE9;
  --paper-2: #E7E2D6;
  --paper-3: #C6C3BA;

  /* ---- Opacity variants (neutral-9 @ alpha) ---- */
  --neutral-9-8:  rgba(0, 0, 0, 0.08);
  --neutral-9-16: rgba(0, 0, 0, 0.16);
  --neutral-9-24: rgba(0, 0, 0, 0.24);
  --neutral-9-40: rgba(0, 0, 0, 0.40);
  --neutral-9-64: rgba(0, 0, 0, 0.64);

  /* ---- Alerts ---- */
  --success-1: #BCEFC4;
  --success-2: #2EBF7C;
  --success-3: #00704B;
  --caution-1: #FFD3D1;
  --caution-2: #F37C69;
  --caution-3: #D12D04;

  /* ---- Brand color families (1 lightest -> 4 darkest/most saturated) ---- */
  --eggplant-1: #F7F3FF;      --eggplant-2: #DFD4F5;      --eggplant-3: #8258D4;      --eggplant-4: #6D46BB;
  --blueberry-1: #F0F3FF;     --blueberry-2: #CDD7FF;     --blueberry-3: #405DE0;     --blueberry-4: #2B4CE4;
  --blueraspberry-1: #E2F5FD; --blueraspberry-2: #B6E2FA; --blueraspberry-3: #1C9CEB; --blueraspberry-4: #1B88D7;
  --turquoise-1: #E1FBFB;     --turquoise-2: #ABE1E3;     --turquoise-3: #02B3B5;     --turquoise-4: #009292;
  --sage-1: #E6F7EE;          --sage-2: #B9E6D4;          --sage-3: #13AA6D;          --sage-4: #008854;
  --grass-1: #E7F5E3;         --grass-2: #C6E5BC;         --grass-3: #3AAC00;         --grass-4: #308F00;
  --kiwi-1: #EBF6C0;          --kiwi-2: #DDF197;          --kiwi-3: #9FB800;          --kiwi-4: #8CA200;
  --citrus-1: #FAF6E0;        --citrus-2: #ECD87F;        --citrus-3: #DFA600;        --citrus-4: #C59300;
  --persimmon-1: #FAF1E0;     --persimmon-2: #F5D396;     --persimmon-3: #DD8607;     --persimmon-4: #CD6703;
  --tomato-1: #FDEDEB;        --tomato-2: #F8CEC9;        --tomato-3: #DA1F07;        --tomato-4: #C11C07;
  --raspberry-1: #FEEDF8;     --raspberry-2: #FFC6EC;     --raspberry-3: #E63EA9;     --raspberry-4: #D0078A;
  --grape-1: #FFF0FA;         --grape-2: #FAC4E9;         --grape-3: #B5388C;         --grape-4: #A22B7B;
  --vanilla-1: #F5F4F3;       --vanilla-2: #D9D8D7;       --vanilla-3: #292929;       --vanilla-4: #161616;


/* Surface — backgrounds & fills */
  --surface-primary:            var(--neutral-1);
  --surface-secondary:          var(--neutral-4);
  --surface-tertiary:           var(--neutral-9-8);
  --surface-active:             var(--persimmon-4);
  --surface-success:            var(--success-1);
  --surface-caution:            var(--caution-1);
  --surface-inverse-primary:    var(--persimmon-3);
  --surface-inverse-secondary:  var(--persimmon-4);
  --surface-inverse-tertiary:   var(--neutral-4);

  /* Content — type, icons, controls */
  --content-primary:            var(--neutral-8);
  --content-secondary:          var(--neutral-5);
  --content-tertiary:           var(--neutral-4);
  --content-base-primary:       var(--neutral-8);
  --content-base-secondary:     var(--neutral-1);
  --content-active:             var(--persimmon-4);
  --content-success:            var(--success-3);
  --content-caution:            var(--caution-3);
  --content-inverse-primary:    var(--neutral-1);
  --content-inverse-secondary:  var(--neutral-4);
  --content-inverse-active:     var(--persimmon-3);

  /* Border — rule lines, dividers */
  --border-primary:   var(--neutral-6);
  --border-secondary: var(--neutral-4);
  --border-caution:   var(--caution-3);

  /* Effect — shadows & overlays (constant across all theme modes) */
  --shadow-soft:   var(--neutral-9-24);
  --shadow-strong: var(--neutral-9-16);
  --image-overlay: var(--neutral-9-40);
  --modal-overlay: var(--neutral-9-64);

  /* theme ="ecru"  */
  
  --surface-primary:           var(--paper-1);
  --surface-secondary:         var(--paper-2);
  --surface-tertiary:          var(--neutral-9-8);
  --surface-active:            var(--persimmon-4);
  --surface-success:           var(--success-1);
  --surface-caution:           var(--caution-1);
  --surface-inverse-primary:   var(--neutral-8);
  --surface-inverse-secondary: var(--neutral-7);
  --surface-inverse-tertiary:  var(--neutral-4);

  --content-primary:           var(--neutral-8);
  --content-secondary:         var(--neutral-5);
  --content-tertiary:          var(--neutral-4);
  --content-base-primary:      var(--neutral-8);
  --content-base-secondary:    var(--neutral-1);
  --content-active:            var(--persimmon-4);
  --content-success:           var(--success-3);
  --content-caution:           var(--caution-3);
  --content-inverse-primary:   var(--neutral-1);
  --content-inverse-secondary: var(--neutral-4);
  --content-inverse-active:    var(--persimmon-3);

  --border-primary:   var(--neutral-8);
  --border-secondary: var(--paper-3);
  --border-caution:   var(--caution-3);

  /* theme ="color"  */
  --surface-primary:           var(--stack-1);
  --surface-secondary:         var(--persimmon-2);
  --surface-tertiary:          var(--neutral-9-8);
  --surface-active:            var(--persimmon-4);
  --surface-success:           var(--success-1);
  --surface-caution:           var(--caution-1);
  --surface-inverse-primary:   var(--persimmon-3);
  --surface-inverse-secondary: var(--persimmon-4);
  --surface-inverse-tertiary:  var(--neutral-4);

  --content-primary:           var(--neutral-8);
  --content-secondary:         var(--neutral-5);
  --content-tertiary:          var(--neutral-4);
  --content-base-primary:      var(--neutral-8);
  --content-base-secondary:    var(--neutral-1);
  --content-active:            var(--persimmon-4);
  --content-success:           var(--success-3);
  --content-caution:           var(--caution-3);
  --content-inverse-primary:   var(--neutral-1);
  --content-inverse-secondary: var(--neutral-4);
  --content-inverse-active:    var(--persimmon-3);

  --border-primary:   var(--neutral-8);
  --border-secondary: var(--neutral-4);
  --border-caution:   var(--caution-3);


/* theme ="dark"  */
  --surface-primary:           var(--neutral-7);
  --surface-secondary:         var(--neutral-8);
  --surface-tertiary:          var(--neutral-6);
  --surface-active:            var(--persimmon-4);
  --surface-success:           var(--success-1);
  --surface-caution:           var(--caution-1);
  --surface-inverse-primary:   var(--persimmon-3);
  --surface-inverse-secondary: var(--persimmon-4);
  --surface-inverse-tertiary:  var(--neutral-5);

  --content-primary:           var(--neutral-1);
  --content-secondary:         var(--neutral-4);
  --content-tertiary:          var(--neutral-5);
  --content-base-primary:      var(--neutral-8);
  --content-base-secondary:    var(--neutral-1);
  --content-active:            var(--persimmon-4);
  --content-success:           var(--success-2);
  --content-caution:           var(--caution-2);
  --content-inverse-primary:   var(--neutral-8);
  --content-inverse-secondary: var(--neutral-6);
  --content-inverse-active:    var(--persimmon-3);

  --border-primary:   var(--neutral-4);
  --border-secondary: var(--neutral-5);
  --border-caution:   var(--caution-2);

  color-scheme: dark;
  background-color: var(--surface-primary);
  color: var(--content-primary);

/*radius scale (rounded corners) */
   --radius-sm:  0.750rem; /* 12px */
  --radius-md:  1.050rem; /* 16px */
  --radius-lg:  1.250rem; /* 20px */
  --radius-xl:  1.500rem; /* 24px */
  --radius-xl2: 1.750rem; /* 28px */
  
  /* button styles */

}



.pd-about--image-right {
  border-top: none !important;
}


h1 {
  font-family: var(--font-display) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xl5) !important ;
  line-height: var(--line-height-xl5) !important ;
  letter-spacing: var(--letter-spacing-tighter) !important;
  /* text-transform: uppercase; */
}

/* h1 — mobile: scale down from xl5 to xl2 */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-xl2) !important;
    line-height: var(--line-height-xl2) !important;
  }

  .body-lg {
  font-size: var(--font-size-md) !important;
  line-height: var(--line-height-md) !important;
}
h4,h2 {
 
  font-size: var(--font-size-xl2) !important ;
  line-height: var(--line-height-xl2) !important ;
  
}
.body-md {
 
  font-size: var(--font-size-sm)!important; ;
  line-height: var(--line-height-sm) !important;
}
.body-lg-semi {

  font-size: var(--font-size-md) !important;
  line-height: var(--line-height-md) !important;

}
.body-md-semi {
  
  font-size: var(--font-size-sm) !important;
  line-height: var(--line-height-sm) !important;

}
.body-sm-semi {

  font-size: var(--font-size-sm) ;
  line-height: var(--line-height-sm);

}

}

/* h2 — Display, 4xl/4xl, tighter tracking
   Use for headline and display copy. */
h2 {
  font-family: var(--font-display) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xl4) ;
  line-height: var(--line-height-xl4) ;
  letter-spacing: var(--letter-spacing-tighter) !important;
}

/* h1 — mobile: scale down from xl5 to xl2 */


/* h3 — Display, 3xl/3xl, tighter tracking
   Use for headline and display copy. */
h3 {
  font-family: var(--font-display) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xl3) !important;
  line-height: var(--line-height-xl3) !important;
  letter-spacing: var(--letter-spacing-tighter) !important;
}

/* h4 — Title, 2xl/2xl, tighter tracking
   Used for headline copy. */
h4 {
  font-family: var(--font-title) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xl2) ;
  line-height: var(--line-height-xl2) ;
  letter-spacing: var(--letter-spacing-tighter) !important;
}

/* h5 — Title, xl/xl, tight tracking
   Used for headline copy. */
h5 {
  font-family: var(--font-title) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xl) !important;
  line-height: var(--line-height-xl) !important;
  letter-spacing: var(--letter-spacing-tight) !important;
}

/* body-lg-semi — Body, lg/lg, semi weight, normal tracking
   Used for long copy strings or long form copy. */
.body-lg-semi {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-semi) !important;
  font-size: var(--font-size-lg) ;
  line-height: var(--line-height-lg) ;
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-lg — Body, lg/lg, book weight, normal tracking */
.body-lg {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-lg) ;
  line-height: var(--line-height-lg);
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-md-semi — Body, md/md, semi weight, normal tracking */
.body-md-semi {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-semi) !important;
  font-size: var(--font-size-md) !important;
  line-height: var(--line-height-md) !important;
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-md — Body, md/md, book weight, normal tracking */
.body-md {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-md) ;
  line-height: var(--line-height-md);
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-sm-semi — Body, sm/sm, semi weight, normal tracking */
.body-sm-semi {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-semi) !important;
  font-size: var(--font-size-sm) ;
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-sm — Body, sm/sm, book weight, normal tracking */
.body-sm {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-sm) !important;
  line-height: var(--line-height-sm) !important;
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-xs-semi — Body, xs/sm, semi weight, normal tracking */
.body-xs-semi {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-semi) !important;
  font-size: var(--font-size-xs) !important;
  line-height: var(--line-height-sm) !important;
  letter-spacing: var(--letter-spacing-normal) !important;
}

/* body-xs — Body, xs/sm, book weight, normal tracking */
.body-xs {
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-book) !important;
  font-size: var(--font-size-xs) !important;
  line-height: var(--line-height-sm) !important;
  letter-spacing: var(--letter-spacing-normal) !important;
}

.text-caps {
  text-transform: uppercase !important;
}

/* ══ Locations — grid of location cards (floating / filled / outlined) ═══════ */
.section-locations-fg { padding-block: var(--spacing-xl) }
.locations-fg__heading {
  margin: 0 0 40px; text-align: center; color: var(--fg-heading);
  font-family: var(--fg-font-heading); font-weight: 400;
  font-size: clamp(30px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.5px;
}
.locations-fg { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--spacing-xl); }
@media (max-width: 560px)  { .locations-fg { grid-template-columns: 1fr; } }

.locations-fg__card {
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.locations-fg__map {
  aspect-ratio: 16 / 10; min-width: 402px; max-height: 200px; overflow: hidden;
  background: var(--neutral-2); margin-bottom: var(--spacing-sm);
  border: 1px solid var(--fg-border1);
  border-radius: var(--radius-xl);
}
.locations-fg__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.locations-fg__map-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--neutral-5);
}
.locations-fg__body { display: flex; flex-direction: column; gap: var(--spacing-sm); padding-inline: var(--spacing-xs2);padding-block: var(--spacing-xs2); }
.locations-fg__name {
 color: var(--fg-heading); font-family: var(--fg-font-heading);
  font-weight: 600; font-size: 1.2rem; line-height: 1.2;
}
.locations-fg__address { margin: 0; color: var(--fg-text); font-family: var(--fg-font-body); font-size: 0.9rem; line-height: 1.5; }
.locations-fg__phone {  color: var(--fg-text); font-family: var(--fg-font-body); font-size: 0.9rem; }
.locations-fg__phone a { color: inherit; text-decoration: none; }
.locations-fg__hours {  display: flex; flex-direction: column; gap: 4px; }
.locations-fg__hours-row { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.locations-fg__hours-days { margin: 0; color: var(--fg-text-muted); font-family: var(--fg-font-body); font-size: 0.85rem; }
.locations-fg__hours-time { margin: 0; color: var(--fg-text); font-family: var(--fg-font-body); font-size: 0.85rem; }
.locations-fg__order {
  align-self: flex-start; margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 22px; border: none; border-radius: 22px; cursor: pointer;
  background: var(--fg-secondary); color: #fff; text-decoration: none;
  text-transform: uppercase; transition: background 0.2s;
}

/* Floating — elevated white cards on the page background. */
.locations-fg--floating .locations-fg__card {
  /* border: 1px solid var(--fg-border); */
  /* box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06); */
}
.locations-fg--floating .locations-fg__card:hover {  }

/* Filled — warm cream/accent fill, no border. */
.locations-fg--filled .locations-fg__card { background: var(--fg-accent); border: 1px solid transparent; }
.locations-fg--filled .locations-fg__card:hover {  }

/* Outlined — hairline border only, transparent fill. */
.locations-fg--outlined .locations-fg__card { background: transparent; border: 1px solid var(--fg-border); }
.locations-fg--outlined .locations-fg__card:hover { border-color: var(--fg-secondary); }

/* ------------------------------------------------------------------
   Storefront primary buttons — unified interaction states.
   Resting: Secondary fill (--fg-secondary). Hover / active / focus:
   Primary fill (--fg-primary). Doubled-class selectors on the
   interactive states raise specificity above the generator's
   standardized `[class*="cta-btn"]:hover` layer (buttonHoverStandard in
   css.ts, appended after this file) so Primary wins for .pd-cta-btn /
   .mc__cta-btn as well. Outline variants (e.g. .pd-ctaband__btn--alt)
   keep their own resting background — only the filled primaries below
   are re-based to Secondary.
   ------------------------------------------------------------------ */
.pd-hero__btn, .mc__cta-btn, .pd-nav__order { background: var(--fg-secondary); }

.locations-fg__order.locations-fg__order:hover, .locations-fg__order.locations-fg__order:active, .locations-fg__order.locations-fg__order:focus,
.pd-nav__order.pd-nav__order:hover,     .pd-nav__order.pd-nav__order:active,     .pd-nav__order.pd-nav__order:focus,
.pd-hero__btn.pd-hero__btn:hover,       .pd-hero__btn.pd-hero__btn:active,       .pd-hero__btn.pd-hero__btn:focus,
.pd-cta-btn.pd-cta-btn:hover,           .pd-cta-btn.pd-cta-btn:active,           .pd-cta-btn.pd-cta-btn:focus,
.mc__cta-btn.mc__cta-btn:hover,         .mc__cta-btn.mc__cta-btn:active,         .mc__cta-btn.mc__cta-btn:focus,
.form2__btn.form2__btn:hover,           .form2__btn.form2__btn:active,           .form2__btn.form2__btn:focus,
.our-story__btn.our-story__btn:hover,   .our-story__btn.our-story__btn:active,   .our-story__btn.our-story__btn:focus,
.banner__btn.banner__btn:hover,         .banner__btn.banner__btn:active,         .banner__btn.banner__btn:focus,
.contact-fg-btn.contact-fg-btn:hover,   .contact-fg-btn.contact-fg-btn:active,   .contact-fg-btn.contact-fg-btn:focus {
  background: var(--fg-primary);
}

/* Site theme */
:root {
  --fg-bg: #F2EFE9; --bg: #F2EFE9;
  --fg-text: #1A1A1A; --text: #1A1A1A;
  --fg-text-muted: #5C5C58; --gray: #5C5C58;
  --fg-heading: #1A1A1A;
  --fg-accent-2: #E7E2D6; --accent-2: #E7E2D6;
}
/* Standardized button hover (all templates) */
[class*="btn-primary"]:hover, [class*="cta-btn"]:hover, .btn:hover, [class*="header-cta"]:hover {
  background: color-mix(in srgb, var(--primary) 82%, #fff);
  border-color: color-mix(in srgb, var(--primary) 82%, #fff);
  color: #fff;
}
[class*="btn-outline"]:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}