
:root {
  --primary: #212121;
  --primary-dark: #b28657;
  --secondary: #f5a623;
  --secondary-gold: #fff8e1;
  --secondary-brown: #f5a623;
  --accent-green: #5E9B3A;
  --accent-cream: #F9F9F7;
  --bg: #FFFFFF;
  --text: #2C2F24;
  --gray: #414536;
  --border: #DBDFD0;
  --surface: #F9F9F7;
  --page: #FFFFFF;
  --font-heading: 'Cormorant Garamond for headings', 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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─── Custom Properties ──────────────────────────────────────────────────────
   Mapped to the theme tokens emitted by the site theme (--primary, --secondary,
   --text, --font-heading, …) so editor color palettes / fonts drive the template.
   The literals are fallbacks that preserve the default RestoHub look. */
:root {
  --fg-primary:      var(--primary, #c59765);
  --fg-primary-dark: var(--primary-dark, #b28657);
  --fg-secondary:    var(--secondary, #2C2F24);
  --fg-accent:       var(--accent-cream, #c59765);
  --fg-cream:        var(--surface, #F9F9F7);
  --fg-bg:           var(--bg, #FFFFFF);
  --fg-surface:      var(--surface, #F9F9F7);
  --fg-text:         var(--text, #2C2F24);
  --fg-text-muted:   var(--gray, #414536);
  --fg-border:       var(--border, #DBDFD0);
  --fg-font-heading: var(--font-heading, 'Playfair Display', Georgia, serif);
  --fg-font-body:    var(--font-body, 'DM Sans', 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, h4 { font-family: var(--fg-font-heading); color: var(--fg-secondary); margin: 0; }
p { margin: 0; }
img { display: block; max-width: 100%; }
.container { max-width: 1296px; margin: 0 auto; padding: 0 88px; }
@media (max-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; }}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-restohub             { 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-restohub     { background: transparent; border: 2px solid var(--fg-primary); color: #fff; }
.btn-primary-restohub:hover { background: var(--fg-primary-dark); border-color: var(--fg-primary-dark); color: #fff; }
.btn-outline-restohub     { background: transparent; color: var(--fg-secondary); border: 2px solid var(--fg-secondary); }
.btn-outline-restohub:hover { background: var(--fg-secondary); color: #fff; }
.btn-outline-white-restohub { background: transparent; border: 2px solid var(--fg-primary); color: #fff; }
.btn-outline-white-restohub:hover { background: var(--fg-primary-dark); border-color: var(--fg-primary-dark); color: #fff; }
.featured-dish-cat .btn-primary-restohub,
.cta-content .btn-primary-restohub,
.map-fg-card .btn-primary-restohub      { border-radius: 0px;
    background: var(--fg-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: normal; 
        width: max-content;
    margin: 0 auto;
    padding: 0.75rem 2rem;
  }
.featured-dish-cat .btn-primary-restohub:hover,
.cta-content .btn-primary-restohub:hover,
.map-fg-card .btn-primary-restohub:hover  { border-radius: 0px;
    background: var(--fg-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;  }

/* ─── Section shared ─────────────────────────────────────────────────────── */
.section-restohub { padding: calc(80px * var(--rh-space)) 0; }
.section-eyebrow-restohub { 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-restohub { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1.1; color: var(--fg-secondary); margin-bottom: 1.25rem; text-align: center; }
.section-desc-restohub    { font-size: 1.125rem; color: var(--fg-text-muted); line-height: 1.6; max-width: 660px; }

/* ─── Header ────────────────────────────────────────────────────────────── */
.site-header-RestoHub { 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-RestoHub { 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-RestoHub { 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-RestoHub { display: flex; gap: 2rem; align-items: center; }
.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-RestoHub { background: var(--fg-primary); 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-RestoHub:hover { background: var(--fg-primary-dark); }
body.has-hero .site-header-RestoHub { 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-RestoHub.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: white; 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-RestoHub { 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-RestoHub.active { display: flex; }
  .hamburger-menu { display: flex; }
  .site-nav-RestoHub { padding: 0 20px; flex-wrap: wrap; }
  .header-topbar-inner { padding: 0 20px; }
  /* Stack phone and email on separate lines, centered, on mobile */
  .header-topbar-RestoHub { height: auto; padding: 6px 0; }
  .header-topbar-inner { flex-direction: column; justify-content: center; gap: 0.4rem; }
  .header-topbar-left { flex-direction: column; align-items: center; gap: 0.3rem; }
  .header-topbar-right { justify-content: center; }
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer-RestoHub { background: #ffffff; color: #333333; padding: 60px 0 32px; padding-top: 0px; }
.footer-inner-RestoHub { display: flex; flex-direction: column; gap: 0px; }
.footer-brand-fg    { font-family: var(--fg-font-heading); font-size: 1.4rem; font-weight: 600; color: #333333; 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: #333333; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-nav-fg a:hover { color: #333333; }
.footer-legal-fg    { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-legal-fg a  { color: #333333; 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: #333333 }
.footer-powered-fg  { font-size: 0.8rem; color: #333333 }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.section-hero-restohub { 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;
  }
  .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-restohub { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 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-secondary); 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-restohub { background: #ffffff; padding: calc(80px * var(--rh-space)) 0; }
.about-story-fg-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.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; }
.about-story-fg-heading { font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;}
.about-story-fg-body    { font-size: 16px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1.5rem !important;
    line-height: 1.6;
    color: #7c7c7c !important;
    font-weight: 300 !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 3rem 0 3rem; 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-restohub, 
.section-featured-dishes-restohub,
.section-cta-banner-restohub,
.section-map-restohub {
  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-restohub { background: var(--fg-cream);; padding: calc(80px * var(--rh-space)) 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: #ffffff; }
.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: #000 !important;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
 }
.featured-dish-fg-price    { font-size: 24px;
    line-height: 1.45;
    color: var(--fg-primary) !important;
    font-family: 'Playfair Display', 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: #fff; }
.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(--fg-primary); }
/* Arrows sit in the wrapper's side padding (outside the card track) at every
   resolution; the padding just shrinks on smaller screens. */
@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:#333 !important;}
.obs-card p { color:#333 !important;}
.obs-card div:first-child{ background-color: #e8e5d7 !important; }

/* ─── Testimonials Preview ───────────────────────────────────────────────── */
.section-testimonials-preview-restohub { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 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: #000 !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-secondary); }
.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-restohub { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 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: #000 !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(--fg-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-secondary); }
.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-restohub { background: var(--fg-cream); padding: calc(80px * var(--rh-space)) 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-secondary); }
.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-secondary); 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-secondary); 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-restohub   { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 0; }
.map-fg-heading           { font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 20px !important;
        color: #000 !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: #e8e5d7;
    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: #333; 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: rgba(0,0,0,0.85); margin-top: 2px; }
.map-fg-card-value        { font-size: 0.9375rem; color: rgba(0,0,0,0.85); line-height: 1.55; }
.map-fg-card-value a      { color: rgba(0,0,0,0.85); text-decoration: none; }
.map-fg-card-value a:hover { color: #fff; 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: #333333 !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: #333333 !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-restohub { background: #ffffff; color: #fff; padding: calc(80px * var(--rh-space)) 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-restohub { background: var(--fg-cream); padding: calc(80px * var(--rh-space)) 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: #fff; 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: #fff; transition: border-color 0.2s; }
.contact-fg-input:focus { outline: none; border-color: var(--fg-primary); }
textarea.contact-fg-input { resize: vertical; min-height: 120px; }
.contact-fg-btn    { background: var(--fg-primary); 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-dark); }
.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-restohub { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 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(--fg-primary); color: var(--fg-primary); }
.hours-fg-tab-active { background: var(--fg-primary); color: #fff !important; border-color: var(--fg-primary); }
.hours-fg-panel  { display: none; }
.hours-fg-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-secondary); 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-restohub  { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 0; }
.full-menu-fg-layout           { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.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(--fg-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(--fg-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(--fg-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(--fg-primary); font-weight: 600; }
.full-menu-fg-loc-item-active svg { color: var(--fg-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(--fg-primary); border-left-color: var(--fg-primary); background: var(--fg-cream); font-weight: 600; }
.full-menu-fg-category         { margin-bottom: 56px; scroll-margin-top: 124px; }
@media (max-width: 768px)      { .full-menu-fg-category { scroll-margin-top: 150px; } }
.full-menu-fg-cat-name         { font-size: 1.75rem; font-weight: 500; color: var(--fg-secondary); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--fg-border); }
.full-menu-fg-items            { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.full-menu-fg-item             { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--fg-border); }
.full-menu-fg-item-img         { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.full-menu-fg-item-info        { flex: 1; min-width: 0; }
.full-menu-fg-item-name        { font-weight: 600; color: var(--fg-secondary); margin-bottom: 4px; }
.full-menu-fg-item-desc        { font-size: 0.875rem; color: var(--fg-text-muted); }
.full-menu-fg-item-price       { font-weight: 700; color: var(--fg-secondary); white-space: nowrap; padding-left: 12px; }
@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-items { grid-template-columns: 1fr; } }

/* ─── Gallery Grid ───────────────────────────────────────────────────────── */
.section-gallery-grid-restohub { background: var(--fg-cream); padding: calc(80px * var(--rh-space)) 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(--fg-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(--fg-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(--fg-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-restohub { background: var(--fg-cream); padding: calc(80px * var(--rh-space)) 0; text-align: center; }
.reservation-cta-fg-heading { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 500; color: var(--fg-secondary); 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-restohub { background: var(--fg-bg); padding: calc(80px * var(--rh-space)) 0; }

/* ─── Visit Us ───────────────────────────────────────────────────────────── */
.section-visit-us-restohub { 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: #fff;
  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-secondary); }
.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-restohub { 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-secondary); 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-secondary); }
.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-primary);
  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-dark); }
@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, #f5e6c8) 10%, #fff); }
.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: #25271f; background: transparent; transition: transform .16s ease, background-color .16s ease, color .16s ease; }
.dish-cta-btn:hover { transform: translateY(-1px); background: #25271f; 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, #fff); 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-restohub,
  .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;
  }
}

/* ─── Content-volume variants (A / B / C) ───────────────────────────────────
   Sections branch on content._variant. Variant B is the copied default markup;
   these rules add the A (minimal / type-forward) and C (rich) presentations. */

/* Hero A — Brand Color (no image) */
.hero-rh-brand { background: var(--fg-primary); color: #fff; min-height: 78vh; display: flex; align-items: center; text-align: center; }
.hero-rh-brand-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; padding: 88px 0; }
.hero-rh-brand-logo { max-height: 92px; width: auto; margin-bottom: 0.25rem; }
.hero-rh-brand-eyebrow { color: rgba(255,255,255,0.85) !important; }
.hero-rh-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-rh-brand-tagline { color: rgba(255,255,255,0.9); font-size: 1.2rem; line-height: 1.5; max-width: 620px; }
.hero-rh-brand .btn-primary-restohub { background: #fff; border-color: #fff; color: var(--fg-primary); }
.hero-rh-brand .btn-primary-restohub:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: var(--fg-primary); }

/* Hero C — Split Layout (image + brand-color text panel) */
.hero-rh-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; align-items: stretch; }
.hero-rh-split-media { position: relative; overflow: hidden; }
.hero-rh-split-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-rh-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-rh-split-title { color: #fff; }
.hero-rh-split-sub { color: rgba(255,255,255,0.9); }
.hero-rh-split .btn-primary-restohub { background: #fff; border-color: #fff; color: var(--fg-primary); }
.hero-rh-split .btn-primary-restohub:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: var(--fg-primary); }
@media (max-width: 768px) { .hero-rh-split { grid-template-columns: 1fr; } .hero-rh-split-media { min-height: 320px; } }

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

/* About C — Text + Image + Accent */
.about-rh-accent { background: var(--fg-cream); }
.about-rh-img-styled .about-story-fg-img { border-radius: 16px; box-shadow: 0 20px 48px rgba(0,0,0,0.16); }

/* ─── Footer variants (A minimal / B standard / C full) ─────────────────────── */
.footer-rh-minimal, .footer-rh-standard, .footer-rh-full { background: var(--fg-secondary); color: rgba(255,255,255,0.82); padding: 0; }
.footer-rh-minimal a, .footer-rh-standard a, .footer-rh-full a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color .2s; }
.footer-rh-minimal a:hover, .footer-rh-standard a:hover, .footer-rh-full a:hover { color: #fff; }
.footer-rh-minimal .btn-restohub, .footer-rh-standard .btn-restohub, .footer-rh-full .btn-restohub { color: #fff; }
.footer-rh-col-title { font-family: var(--fg-font-heading); color: #fff; font-size: 1.1rem; margin: 0 0 8px; }
.footer-rh-col-nav { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.footer-rh-line { margin: 6px 0; font-size: 0.95rem; line-height: 1.5; }
.footer-rh-social { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }

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

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

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

/* shared bottom bar (override the light-footer colors within dark variants) */
.footer-rh-minimal .footer-bottom-fg, .footer-rh-standard .footer-bottom-fg, .footer-rh-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-rh-minimal .footer-copyright-fg, .footer-rh-standard .footer-copyright-fg, .footer-rh-full .footer-copyright-fg,
.footer-rh-minimal .footer-powered-fg, .footer-rh-standard .footer-powered-fg, .footer-rh-full .footer-powered-fg { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

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

/* ─── Menu Preview variants (A text-forward / B default / C rich) ───────────── */
.menu-preview-rh-textonly .menu-preview-fg-img { display: none; }
.menu-preview-rh-textonly .menu-preview-fg-card { background: transparent; border: 1px solid var(--fg-border); border-radius: 8px; }
.menu-preview-rh-textonly .menu-preview-fg-body { padding: 26px 28px; }
.menu-preview-rh-textonly .menu-preview-fg-title { font-family: var(--fg-font-heading); font-size: 1.4rem; color: var(--fg-secondary); }
.menu-preview-rh-rich .menu-preview-fg-img { height: 400px; }
.menu-preview-rh-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-rh-compact .section-eyebrow-restohub { display: none; }
.faq-rh-compact .faq-fg-header { margin-bottom: 1.5rem; }
.faq-rh-compact .faq-fg-list { gap: 8px; }
.faq-rh-compact .faq-fg-item { padding: 0 20px; }
.faq-rh-compact .faq-fg-question { padding: 16px 0; font-size: 1.05rem; }
.faq-rh-accent .faq-fg-heading { color: var(--fg-primary); }
.faq-rh-accent .faq-fg-list { gap: 0; }
.faq-rh-accent .faq-fg-item { background: transparent; border: none; border-bottom: 1px solid var(--fg-border); border-radius: 0; padding: 0 8px; }
.faq-rh-accent .faq-fg-item[open] { background: var(--fg-cream); border-bottom-color: var(--fg-primary); }
.faq-rh-accent .faq-fg-question { font-size: 1.4rem; }

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

/* ═══════════════════════════════════════════════════════════════════════════
   RestoHub design tokens
   Selectable per site via body[data-rh-*] attributes (see page generator).
   Brand Color + palette come from the theme (--primary / --secondary / …);
   these axes add radius, stroke, spacing, casing, typography and color themes.
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --rh-radius: 8px;          /* Button / card corner radius */
  --rh-stroke: 2px;          /* CTA & divider stroke weight */
  --rh-space: 1;             /* Spacing scale multiplier */
  --rh-heading-case: none;   /* Headline casing */
}
/* Border Radius: Sharp / Rounded / Pill */
body[data-rh-radius="sharp"]   { --rh-radius: 0px; }
body[data-rh-radius="rounded"] { --rh-radius: 8px; }
body[data-rh-radius="pill"]    { --rh-radius: 999px; }
/* Stroke Weight: Thin / Thick */
body[data-rh-stroke="thin"]  { --rh-stroke: 1px; }
body[data-rh-stroke="thick"] { --rh-stroke: 3px; }
/* Spacing: Tight / Wide */
body[data-rh-spacing="tight"] { --rh-space: 0.75; }
body[data-rh-spacing="wide"]  { --rh-space: 1.35; }
/* Headline Casing: Sentence case / Title case */
body[data-rh-casing="sentence"] { --rh-heading-case: none; }
body[data-rh-casing="title"]    { --rh-heading-case: capitalize; }
/* Typography Style: Sans / Condensed / Serif / Slab (font pairings) */
body[data-rh-type="sans"]      { --fg-font-heading: 'Inter', system-ui, sans-serif; --fg-font-body: 'Inter', system-ui, sans-serif; }
body[data-rh-type="condensed"] { --fg-font-heading: 'Oswald', 'Arial Narrow', sans-serif; --fg-font-body: 'Inter', system-ui, sans-serif; }
body[data-rh-type="serif"]     { --fg-font-heading: 'Playfair Display', Georgia, serif; --fg-font-body: 'DM Sans', system-ui, sans-serif; }
body[data-rh-type="slab"]      { --fg-font-heading: 'Roboto Slab', Georgia, serif; --fg-font-body: 'DM Sans', system-ui, sans-serif; }
/* Color Token Theme: mode (light / ecru / dark) × hue (persimmon / sage) */
body[data-rh-theme="light-persimmon"] { --primary: #E2603C; --primary-dark: #C24E2E; --bg: #FFFFFF; --surface: #FBF4EF; --text: #2A2622; --secondary: #2A2622; }
body[data-rh-theme="ecru-persimmon"]  { --primary: #E2603C; --primary-dark: #C24E2E; --bg: #F5EEE3; --surface: #EBE1D2; --text: #2A2622; --secondary: #2A2622; }
body[data-rh-theme="dark-persimmon"]  { --primary: #E97A4F; --primary-dark: #E2603C; --bg: #17150F; --surface: #211E17; --text: #F2ECE3; --secondary: #F2ECE3; --gray: #B9B2A6; --border: #35322A; }
body[data-rh-theme="light-sage"]      { --primary: #6E7F52; --primary-dark: #58683F; --bg: #FFFFFF; --surface: #F2F4EC; --text: #23261D; --secondary: #23261D; }
body[data-rh-theme="ecru-sage"]       { --primary: #6E7F52; --primary-dark: #58683F; --bg: #F1EFE3; --surface: #E5E7D3; --text: #23261D; --secondary: #23261D; }
body[data-rh-theme="dark-sage"]       { --primary: #93A972; --primary-dark: #7C8F5B; --bg: #14160F; --surface: #1E2117; --text: #EEF0E6; --secondary: #EEF0E6; --gray: #B4B8A6; --border: #333628; }

/* Apply tokens. Border radius is scoped to CTA buttons only; !important so it wins
   over the hardcoded, higher-specificity radii on the section-scoped CTA buttons. */
.section-heading-restohub, .about-story-fg-heading, .hero-fg-headline, .hero-rh-brand-title, .faq-fg-heading { text-transform: var(--rh-heading-case); }
.btn-restohub, .btn-primary-restohub, .btn-outline-restohub, .btn-outline-white-restohub,
.featured-dish-cat .btn-primary-restohub, .cta-content .btn-primary-restohub, .map-fg-card .btn-primary-restohub,
.featured-dish-cat .btn-primary-restohub:hover, .cta-content .btn-primary-restohub:hover, .map-fg-card .btn-primary-restohub:hover {
  border-radius: var(--rh-radius) !important;
}
.btn-primary-restohub, .btn-outline-restohub, .btn-outline-white-restohub { border-width: var(--rh-stroke); border-style: solid; }

/* 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;
}