/* ==========================================================================
   FOOD HOUSE RESTAURANT — Core Stylesheet
   Design system built around the Food House logo palette.
   Author: Food House Web Team  |  Demo build
   --------------------------------------------------------------------------
   00. Design tokens
   01. Base & typography
   02. Utilities & helpers
   03. Buttons
   04. Topbar & header navigation
   05. Hero (video + inner page banners)
   06. Sections, headings & dividers
   07. Cards: dish, feature, blog, team, offer
   08. Menu & filters
   09. Online ordering & cart
   10. Forms
   11. Gallery & lightbox
   12. Testimonials
   13. Locations & hours
   14. Newsletter
   15. Footer
   16. Misc: accordion, breadcrumbs, back-to-top, toast, legal pages
   17. Animations & reveal
   18. Responsive
   ========================================================================== */

/* ==========================================================================
   00. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand — sampled directly from the Food House logo */
  --fh-primary:        #ca4b26;
  --fh-primary-dark:   #a63a1a;
  --fh-primary-light:  #e2673f;
  --fh-primary-soft:   #fbeee8;
  --fh-charcoal:       #564b45;
  --fh-charcoal-dark:  #3b332e;

  /* Neutrals — warm, food friendly */
  --fh-ink:            #2b2320;
  --fh-body:           #6b615b;
  --fh-muted:          #948a84;
  --fh-line:           #ebe2da;
  --fh-cream:          #fdf8f4;
  --fh-sand:           #f6ede4;
  --fh-white:          #ffffff;

  /* Accents */
  --fh-gold:           #c8933a;
  --fh-green:          #4c7a3f;
  --fh-chili:          #c0392b;

  /* Type */
  --fh-font-display: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fh-font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fh-font-script:  'Caveat', 'Segoe Script', cursive;

  /* Radius */
  --fh-r-sm: 8px;
  --fh-r-md: 14px;
  --fh-r-lg: 22px;
  --fh-r-xl: 32px;

  /* Shadow — warm tinted, never grey */
  --fh-shadow-xs: 0 2px 8px rgba(86, 75, 69, .06);
  --fh-shadow-sm: 0 6px 20px rgba(86, 75, 69, .08);
  --fh-shadow-md: 0 14px 38px rgba(86, 75, 69, .12);
  --fh-shadow-lg: 0 26px 60px rgba(86, 75, 69, .16);
  --fh-shadow-brand: 0 14px 30px rgba(202, 75, 38, .28);

  /* Motion */
  --fh-ease: cubic-bezier(.22, .61, .36, 1);
  --fh-t: .35s var(--fh-ease);

  /* Layout */
  --fh-header-h: 86px;
}

/* ==========================================================================
   01. BASE & TYPOGRAPHY
   ========================================================================== */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--fh-font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fh-body);
  background: var(--fh-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-title {
  font-family: var(--fh-font-display);
  color: var(--fh-ink);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.02em;
}

h1, .h1 { font-size: clamp(2.35rem, 5vw, 3.9rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4, .h4 { font-size: 1.2rem; }
h5, .h5 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--fh-primary); text-decoration: none; transition: color var(--fh-t); }
a:hover { color: var(--fh-primary-dark); }

img { max-width: 100%; height: auto; }

::selection { background: var(--fh-primary); color: #fff; }

/* Scrollbar (desktop only, subtle) */
@media (min-width: 992px) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--fh-sand); }
  ::-webkit-scrollbar-thumb { background: #d6c4b5; border-radius: 20px; border: 3px solid var(--fh-sand); }
  ::-webkit-scrollbar-thumb:hover { background: var(--fh-primary); }
}

/* ==========================================================================
   02. UTILITIES & HELPERS
   ========================================================================== */
.fh-container { max-width: 1240px; }

.text-primary-fh   { color: var(--fh-primary) !important; }
.text-ink          { color: var(--fh-ink) !important; }
.text-charcoal     { color: var(--fh-charcoal) !important; }
.text-muted-fh     { color: var(--fh-muted) !important; }
.bg-cream          { background-color: var(--fh-cream) !important; }
.bg-sand           { background-color: var(--fh-sand) !important; }
.bg-charcoal       { background-color: var(--fh-charcoal-dark) !important; }
.bg-primary-fh     { background-color: var(--fh-primary) !important; }
.bg-primary-soft   { background-color: var(--fh-primary-soft) !important; }

.fw-800 { font-weight: 800 !important; }
.lh-lg-fh { line-height: 1.85; }
.ls-wide { letter-spacing: .14em; }

.lead-fh { font-size: 1.075rem; line-height: 1.85; color: var(--fh-body); }

.rounded-fh    { border-radius: var(--fh-r-md) !important; }
.rounded-fh-lg { border-radius: var(--fh-r-lg) !important; }
.rounded-fh-xl { border-radius: var(--fh-r-xl) !important; }

.shadow-fh    { box-shadow: var(--fh-shadow-sm) !important; }
.shadow-fh-md { box-shadow: var(--fh-shadow-md) !important; }
.shadow-fh-lg { box-shadow: var(--fh-shadow-lg) !important; }

.section     { padding: clamp(3.75rem, 8vw, 6.5rem) 0; }
.section-sm  { padding: clamp(2.75rem, 5vw, 4.25rem) 0; }
.section-tight-top { padding-top: 0 !important; }

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 3000;
  background: var(--fh-primary); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--fh-r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* Visible focus ring — accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid rgba(202, 75, 38, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Decorative pattern used behind soft sections */
.pattern-dots {
  background-image: radial-gradient(rgba(202, 75, 38, .14) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

/* ==========================================================================
   03. BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--fh-font-display);
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 100px;
  padding: .78rem 1.85rem;
  border-width: 2px;
  transition: all var(--fh-t);
  position: relative;
}
.btn-lg  { padding: 1rem 2.4rem; font-size: 1.02rem; }
.btn-sm  { padding: .5rem 1.15rem; font-size: .86rem; }

.btn-brand {
  background: var(--fh-primary);
  border-color: var(--fh-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(202, 75, 38, .22);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--fh-primary-dark);
  border-color: var(--fh-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--fh-shadow-brand);
}

.btn-outline-brand {
  background: transparent;
  border-color: var(--fh-primary);
  color: var(--fh-primary);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--fh-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--fh-shadow-brand);
}

.btn-dark-fh {
  background: var(--fh-charcoal-dark);
  border-color: var(--fh-charcoal-dark);
  color: #fff;
}
.btn-dark-fh:hover { background: var(--fh-ink); border-color: var(--fh-ink); color: #fff; transform: translateY(-3px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--fh-ink); transform: translateY(-3px); }

.btn-white-fh { background: #fff; border-color: #fff; color: var(--fh-ink); }
.btn-white-fh:hover { background: var(--fh-primary); border-color: var(--fh-primary); color: #fff; transform: translateY(-3px); }

/* Text link with animated arrow */
.link-arrow {
  font-family: var(--fh-font-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--fh-primary);
}
.link-arrow i { transition: transform var(--fh-t); }
.link-arrow:hover i { transform: translateX(5px); }

/* ==========================================================================
   04. TOPBAR & HEADER NAVIGATION
   ========================================================================== */
.fh-topbar {
  background: var(--fh-charcoal-dark);
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  padding: .55rem 0;
  position: relative;
  z-index: 1040;
}
.fh-topbar a { color: rgba(255, 255, 255, .72); }
.fh-topbar a:hover { color: #fff; }
.fh-topbar i { color: var(--fh-primary-light); }
.fh-topbar-divider { color: rgba(255, 255, 255, .2); }

.fh-header {
  background: #fff;
  box-shadow: 0 1px 0 var(--fh-line);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow var(--fh-t), background var(--fh-t), padding var(--fh-t);
}
.fh-header .navbar { padding: .85rem 0; transition: padding var(--fh-t); }
.fh-header.is-stuck { box-shadow: var(--fh-shadow-sm); }
.fh-header.is-stuck .navbar { padding: .5rem 0; }

.fh-logo img { height: 52px; width: auto; transition: height var(--fh-t); display: block; }
.fh-header.is-stuck .fh-logo img { height: 44px; }

.fh-nav .nav-link {
  font-family: var(--fh-font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--fh-ink);
  padding: .6rem .78rem !important;
  position: relative;
  white-space: nowrap;
}
.fh-nav .nav-link::after {
  content: '';
  position: absolute;
  left: .85rem; right: .85rem; bottom: .3rem;
  height: 2px;
  background: var(--fh-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fh-t);
  border-radius: 2px;
}
.fh-nav .nav-link:hover::after,
.fh-nav .nav-item.active > .nav-link::after { transform: scaleX(1); }
.fh-nav .nav-link:hover,
.fh-nav .nav-item.active > .nav-link { color: var(--fh-primary); }

/* Dropdown */
.fh-nav .dropdown-toggle::after,
.fh-offcanvas .dropdown-toggle::after { display: none !important; }

.fh-caret {
  display: inline-block;
  font-size: .68rem;
  margin-left: .4rem;
  vertical-align: 1px;
  transition: transform var(--fh-t);
}
.dropdown-toggle[aria-expanded="true"] .fh-caret { transform: rotate(180deg); }
@media (min-width: 992px) {
  .fh-nav .dropdown:hover > .nav-link .fh-caret { transform: rotate(180deg); }
}
.fh-offcanvas .fh-caret { float: right; font-size: .8rem; margin-top: .35rem; }
.fh-nav .dropdown-menu {
  border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md);
  box-shadow: var(--fh-shadow-md);
  padding: .5rem;
  min-width: 232px;
  margin-top: .55rem;
}
.fh-nav .dropdown-item {
  font-family: var(--fh-font-display);
  font-weight: 500;
  font-size: .93rem;
  color: var(--fh-charcoal);
  border-radius: var(--fh-r-sm);
  padding: .55rem .8rem;
}
.fh-nav .dropdown-item:hover,
.fh-nav .dropdown-item:focus { background: var(--fh-primary-soft); color: var(--fh-primary); }
.fh-nav .dropdown-item i { display: inline-block; width: 1.35rem; margin-right: .15rem; color: var(--fh-primary); }

/* Override Bootstrap's blue active/selected states inside our menus */
.dropdown-item.active,
.dropdown-item:active,
.fh-nav .dropdown-item.active,
.fh-nav .dropdown-item:active {
  background-color: var(--fh-primary) !important;
  color: #fff !important;
}
.dropdown-item.active i,
.dropdown-item:active i { color: #fff !important; }

.fh-offcanvas .dropdown-item.active,
.fh-offcanvas .dropdown-item:active {
  background-color: transparent !important;
  color: var(--fh-primary) !important;
}
.fh-offcanvas .dropdown-item.active i { color: var(--fh-primary) !important; }

@media (min-width: 992px) {
  .fh-nav .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--fh-ease); }
  .fh-nav .dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}

/* Header cart badge */
.fh-header-cart {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--fh-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fh-ink); font-size: 1.15rem;
  transition: all var(--fh-t);
}
.fh-header-cart:hover { background: var(--fh-primary-soft); border-color: var(--fh-primary); color: var(--fh-primary); }
.fh-cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--fh-primary); color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 20px;
  border-radius: 20px; text-align: center;
  font-family: var(--fh-font-display);
}

/* Custom hamburger */
.fh-toggler {
  border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-sm);
  width: 46px; height: 46px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: #fff; padding: 0;
}
.fh-toggler span { display: block; width: 20px; height: 2px; background: var(--fh-ink); border-radius: 2px; transition: all var(--fh-t); }
.fh-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fh-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fh-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile offcanvas nav */
.fh-offcanvas { width: 320px; max-width: 88vw; }
.fh-offcanvas .offcanvas-header { border-bottom: 1px solid var(--fh-line); padding: 1.15rem 1.5rem; }
.fh-offcanvas .offcanvas-body { padding: 1.25rem 1.5rem 2rem; }
.fh-offcanvas .nav-link {
  font-family: var(--fh-font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--fh-ink); padding: .8rem 0 !important;
  border-bottom: 1px solid var(--fh-line);
}
.fh-offcanvas .nav-item.active > .nav-link { color: var(--fh-primary); }
.fh-offcanvas .dropdown-menu { border: 0; box-shadow: none; padding: 0 0 .5rem .9rem; background: transparent; }
.fh-offcanvas .dropdown-item { padding: .5rem 0; font-size: .95rem; }
.fh-offcanvas .dropdown-item i { display: inline-block; width: 1.35rem; margin-right: .15rem; color: var(--fh-primary); }
.fh-offcanvas .dropdown-item:hover { background: transparent; }

/* ==========================================================================
   05. HERO
   ========================================================================== */
.fh-hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fh-charcoal-dark);
  isolation: isolate;
}
.fh-hero-media { position: absolute; inset: 0; z-index: -2; }
.fh-hero-media video,
.fh-hero-media .fh-hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fh-hero-fallback {
  background-size: cover;
  background-position: center;
  animation: fhKenBurns 26s ease-in-out infinite alternate;
}
.fh-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 24, 21, .90) 0%, rgba(30, 24, 21, .70) 42%, rgba(30, 24, 21, .35) 100%),
    linear-gradient(to top, rgba(30, 24, 21, .75), transparent 45%);
  z-index: 1;
}
.fh-hero-inner { position: relative; z-index: 2; padding: 8rem 0 6.5rem; color: #fff; }
.fh-hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, .3); }
.fh-hero p.lead-fh { color: rgba(255, 255, 255, .84); max-width: 34rem; }

.fh-eyebrow {
  font-family: var(--fh-font-script);
  font-size: 1.65rem;
  color: var(--fh-primary-light);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}
.fh-eyebrow-sm {
  font-family: var(--fh-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fh-primary);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.fh-eyebrow-sm::before { content: ''; width: 28px; height: 2px; background: var(--fh-primary); border-radius: 2px; }
.fh-eyebrow-sm.centered::after { content: ''; width: 28px; height: 2px; background: var(--fh-primary); border-radius: 2px; }

/* Hero stat strip */
.fh-hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem;
  padding-top: 2.5rem; margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.fh-hero-stat .num {
  font-family: var(--fh-font-display); font-weight: 800;
  font-size: 2rem; color: #fff; line-height: 1;
}
.fh-hero-stat .lbl { font-size: .82rem; color: rgba(255, 255, 255, .62); letter-spacing: .06em; text-transform: uppercase; }

/* Scroll cue */
.fh-scroll-cue {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255, 255, 255, .7); font-size: 1.4rem;
  animation: fhBob 2.2s ease-in-out infinite;
}
.fh-scroll-cue:hover { color: #fff; }

/* Video mute/play control */
.fh-video-toggle {
  position: absolute; bottom: 1.75rem; right: 1.75rem; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .35);
  color: #fff; backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--fh-t);
}
.fh-video-toggle:hover { background: var(--fh-primary); border-color: var(--fh-primary); }

/* Inner page banner */
.fh-page-hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background: var(--fh-charcoal-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.fh-page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(30, 24, 21, .92) 0%, rgba(30, 24, 21, .74) 55%, rgba(30, 24, 21, .55) 100%);
}
.fh-page-hero h1 { color: #fff; }
.fh-page-hero p { color: rgba(255, 255, 255, .8); max-width: 40rem; }
.fh-page-hero .fh-eyebrow { color: var(--fh-primary-light); }

.fh-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); font-size: .88rem; margin-top: 1.15rem; }
.fh-breadcrumb .breadcrumb { margin: 0; }
.fh-breadcrumb a { color: rgba(255, 255, 255, .72); }
.fh-breadcrumb a:hover { color: #fff; }
.fh-breadcrumb .breadcrumb-item.active { color: var(--fh-primary-light); }
.fh-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .35); }

/* ==========================================================================
   06. SECTIONS, HEADINGS & DIVIDERS
   ========================================================================== */
.section-head { max-width: 44rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: .65rem 0 .9rem; }
.section-head p { color: var(--fh-body); }

.fh-divider-icon {
  display: flex; align-items: center; justify-content: center; gap: .85rem;
  color: var(--fh-primary); margin: .35rem 0 1rem;
}
.fh-divider-icon::before,
.fh-divider-icon::after {
  content: ''; height: 1px; width: 46px;
  background: linear-gradient(to right, transparent, var(--fh-primary));
}
.fh-divider-icon::after { background: linear-gradient(to left, transparent, var(--fh-primary)); }

/* Image frames */
.fh-frame { position: relative; border-radius: var(--fh-r-lg); overflow: hidden; }
.fh-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--fh-ease); }
.fh-frame:hover img { transform: scale(1.06); }

.fh-frame-offset { position: relative; }
.fh-frame-offset::before {
  content: ''; position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--fh-primary);
  border-radius: var(--fh-r-lg);
  z-index: 0;
}
.fh-frame-offset > .fh-frame { position: relative; z-index: 1; }

/* Floating experience badge */
.fh-badge-float {
  position: absolute;
  background: var(--fh-primary);
  color: #fff;
  border-radius: var(--fh-r-md);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--fh-shadow-brand);
  z-index: 3;
  max-width: 220px;
}
.fh-badge-float .num { font-family: var(--fh-font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; }
.fh-badge-float .lbl { font-size: .8rem; opacity: .9; line-height: 1.4; }

/* ==========================================================================
   07. CARDS
   ========================================================================== */
.fh-card {
  background: #fff;
  border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--fh-t), box-shadow var(--fh-t), border-color var(--fh-t);
}
.fh-card:hover { transform: translateY(-8px); box-shadow: var(--fh-shadow-md); border-color: transparent; }

.fh-card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--fh-sand); }
.fh-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--fh-ease); }
.fh-card:hover .fh-card-media img { transform: scale(1.08); }
.fh-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.fh-card-title { font-size: 1.16rem; margin-bottom: .4rem; }
.fh-card-title a { color: inherit; }
.fh-card:hover .fh-card-title a { color: var(--fh-primary); }
.fh-card-text { font-size: .93rem; color: var(--fh-body); margin-bottom: 0; }

/* Price row */
.fh-price {
  font-family: var(--fh-font-display);
  font-weight: 800;
  color: var(--fh-primary);
  font-size: 1.2rem;
  white-space: nowrap;
}
.fh-price-old { color: var(--fh-muted); font-size: .92rem; text-decoration: line-through; font-weight: 500; margin-left: .35rem; }

/* Diet / heat tags */
.fh-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--fh-font-display); font-weight: 600;
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .22rem .6rem; border-radius: 100px;
  border: 1px solid transparent;
}
.fh-tag-veg   { background: #eef5ec; color: var(--fh-green); border-color: #d6e6d1; }
.fh-tag-spicy { background: #fbeaea; color: var(--fh-chili); border-color: #f2d4d2; }
.fh-tag-new   { background: var(--fh-primary-soft); color: var(--fh-primary); border-color: #f4ddd3; }
.fh-tag-gf    { background: #fdf3e2; color: #96682a; border-color: #f2e2c7; }
.fh-tag-chef  { background: #efeceb; color: var(--fh-charcoal); border-color: #e3dcd8; }

/* Ribbon on media */
.fh-ribbon {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--fh-primary); color: #fff;
  font-family: var(--fh-font-display); font-weight: 700;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}
.fh-ribbon.alt { background: var(--fh-charcoal-dark); }
.fh-ribbon.gold { background: var(--fh-gold); }

/* Feature (why choose us) card */
.fh-feature {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg); padding: 2.1rem 1.75rem;
  height: 100%; transition: all var(--fh-t); position: relative; overflow: hidden;
}
.fh-feature::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--fh-primary); transition: width .5s var(--fh-ease);
}
.fh-feature:hover { transform: translateY(-8px); box-shadow: var(--fh-shadow-md); border-color: transparent; }
.fh-feature:hover::before { width: 100%; }
.fh-feature-icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: var(--fh-primary-soft); color: var(--fh-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1.15rem;
  transition: all var(--fh-t);
}
.fh-feature:hover .fh-feature-icon { background: var(--fh-primary); color: #fff; transform: rotate(-6deg) scale(1.05); }
.fh-feature h3 { font-size: 1.18rem; margin-bottom: .55rem; color: var(--fh-ink); }
.fh-feature p { font-size: .93rem; margin: 0; color: var(--fh-body); }
a.fh-feature { color: inherit; }
a.fh-feature:hover { color: inherit; }
a.fh-feature:hover h3 { color: var(--fh-primary); }

/* Feature on dark */
.fh-feature-dark {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}
.fh-feature-dark h3 { color: #fff; }
.fh-feature-dark p { color: rgba(255, 255, 255, .68); }
.fh-feature-dark .fh-feature-icon { background: rgba(202, 75, 38, .2); color: var(--fh-primary-light); }

/* Blog card */
.fh-blog-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem;
  font-size: .8rem; color: var(--fh-muted); margin-bottom: .6rem;
}
.fh-blog-meta .cat {
  color: var(--fh-primary); font-weight: 700; font-family: var(--fh-font-display);
  letter-spacing: .08em; text-transform: uppercase; font-size: .72rem;
}

/* Team / chef card */
.fh-team-card { text-align: center; }
.fh-team-card .fh-card-media { aspect-ratio: 1 / 1; border-radius: var(--fh-r-lg); }
.fh-team-role { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fh-primary); font-weight: 600; }

/* Offer card */
.fh-offer {
  position: relative; overflow: hidden; height: 100%;
  border-radius: var(--fh-r-lg); background: #fff;
  border: 1px solid var(--fh-line); transition: all var(--fh-t);
}
.fh-offer:hover { transform: translateY(-8px); box-shadow: var(--fh-shadow-md); border-color: transparent; }
.fh-offer-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--fh-sand); }
.fh-offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--fh-ease); }
.fh-offer:hover .fh-offer-media img { transform: scale(1.07); }
.fh-offer-discount {
  position: absolute; top: 1rem; right: 1rem;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--fh-primary); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--fh-font-display); line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}
.fh-offer-discount .big { font-size: 1.35rem; font-weight: 800; }
.fh-offer-discount .small-txt { font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.fh-offer-body { padding: 1.5rem; }
.fh-offer-terms { font-size: .8rem; color: var(--fh-muted); border-top: 1px dashed var(--fh-line); padding-top: .85rem; margin-top: 1rem; }

/* Split promo band */
.fh-promo-band {
  position: relative; overflow: hidden;
  border-radius: var(--fh-r-xl);
  background: var(--fh-charcoal-dark);
  color: #fff;
}
.fh-promo-band h2 { color: #fff; }
.fh-promo-band p { color: rgba(255, 255, 255, .74); }

/* ==========================================================================
   08. MENU & FILTERS
   ========================================================================== */
.fh-filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.fh-filter-btn {
  font-family: var(--fh-font-display); font-weight: 600; font-size: .9rem;
  padding: .55rem 1.25rem; border-radius: 100px;
  border: 1px solid var(--fh-line); background: #fff; color: var(--fh-charcoal);
  transition: all var(--fh-t); white-space: nowrap;
}
.fh-filter-btn:hover { border-color: var(--fh-primary); color: var(--fh-primary); }
.fh-filter-btn.active { background: var(--fh-primary); border-color: var(--fh-primary); color: #fff; box-shadow: 0 6px 16px rgba(202, 75, 38, .22); }

/* Menu list item (image left, text right) */
.fh-menu-item {
  display: flex; gap: 1.15rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md); padding: 1rem;
  height: 100%; transition: all var(--fh-t);
}
.fh-menu-item:hover { border-color: transparent; box-shadow: var(--fh-shadow-md); transform: translateY(-4px); }
.fh-menu-thumb {
  flex: 0 0 104px; width: 104px; height: 104px;
  border-radius: var(--fh-r-sm); overflow: hidden; background: var(--fh-sand);
}
.fh-menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--fh-ease); }
.fh-menu-item:hover .fh-menu-thumb img { transform: scale(1.09); }
.fh-menu-info { flex: 1 1 auto; min-width: 0; }
.fh-menu-head { display: flex; align-items: baseline; gap: .6rem; }
.fh-menu-head h3 { font-size: 1.05rem; margin: 0; flex: 1 1 auto; }
.fh-menu-dots { flex: 1 1 auto; border-bottom: 1px dotted #d9cdc3; transform: translateY(-4px); min-width: 12px; }
.fh-menu-desc { font-size: .88rem; margin: .35rem 0 .6rem; color: var(--fh-body); }
.fh-menu-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }

/* Sticky category bar (menu page) */
.fh-menu-bar {
  position: sticky;
  top: var(--fh-header-h);
  z-index: 1020;
  background: #fff;
  border-bottom: 1px solid var(--fh-line);
  padding: 1.15rem 0;
  transition: padding var(--fh-t), box-shadow var(--fh-t);
}
.fh-menu-bar .fh-filters {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.fh-menu-bar .fh-filters::-webkit-scrollbar { height: 0; display: none; }
.fh-menu-bar.is-stuck { padding: .45rem 0; box-shadow: var(--fh-shadow-sm); }
.fh-menu-bar.is-stuck .fh-filter-btn { padding: .36rem 1rem; font-size: .84rem; }

/* Menu note / allergen strip */
.fh-note {
  background: var(--fh-primary-soft);
  border-left: 3px solid var(--fh-primary);
  border-radius: var(--fh-r-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--fh-charcoal);
}

/* ==========================================================================
   09. ONLINE ORDERING & CART
   ========================================================================== */
.fh-order-nav {
  position: sticky; top: calc(var(--fh-header-h) + 8px); z-index: 20;
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md); padding: .6rem;
}
.fh-order-nav .fh-cat-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .8rem; border-radius: var(--fh-r-sm);
  font-family: var(--fh-font-display); font-weight: 600; font-size: .92rem;
  color: var(--fh-charcoal); transition: all var(--fh-t);
}
.fh-order-nav .fh-cat-link i { color: var(--fh-primary); }
.fh-order-nav .fh-cat-link:hover { background: var(--fh-sand); }
.fh-order-nav .fh-cat-link.active { background: var(--fh-primary); color: #fff; }
.fh-order-nav .fh-cat-link.active i { color: #fff; }

.fh-order-item {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md); padding: .9rem; height: 100%;
  display: flex; gap: 1rem; transition: all var(--fh-t);
}
.fh-order-item:hover { box-shadow: var(--fh-shadow-sm); border-color: #e0d3c8; }
.fh-order-thumb { flex: 0 0 92px; width: 92px; height: 92px; border-radius: var(--fh-r-sm); overflow: hidden; background: var(--fh-sand); }
.fh-order-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Quantity stepper */
.fh-qty { display: inline-flex; align-items: center; border: 1px solid var(--fh-line); border-radius: 100px; overflow: hidden; background: #fff; }
.fh-qty button {
  width: 32px; height: 32px; border: 0; background: transparent;
  color: var(--fh-charcoal); font-size: 1rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--fh-ease);
}
.fh-qty button:hover { background: var(--fh-primary); color: #fff; }
.fh-qty input {
  width: 38px; border: 0; text-align: center;
  font-family: var(--fh-font-display); font-weight: 700; color: var(--fh-ink);
  font-size: .95rem; background: transparent; -moz-appearance: textfield;
}
.fh-qty input::-webkit-outer-spin-button,
.fh-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Cart panel */
.fh-cart-panel {
  position: sticky; top: calc(var(--fh-header-h) + 8px);
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg); overflow: hidden;
  box-shadow: var(--fh-shadow-sm);
}
.fh-cart-head { background: var(--fh-charcoal-dark); color: #fff; padding: 1.1rem 1.35rem; }
.fh-cart-head h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.fh-cart-body { padding: 1.1rem 1.35rem; max-height: 340px; overflow-y: auto; }
.fh-cart-line { display: flex; gap: .85rem; padding: .8rem 0; border-bottom: 1px dashed var(--fh-line); }
.fh-cart-line:last-child { border-bottom: 0; }
.fh-cart-line-thumb { flex: 0 0 52px; width: 52px; height: 52px; border-radius: var(--fh-r-sm); overflow: hidden; background: var(--fh-sand); }
.fh-cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fh-cart-line h4 { font-size: .92rem; margin: 0 0 .15rem; }
.fh-cart-remove { border: 0; background: transparent; color: var(--fh-muted); font-size: .95rem; padding: 0 .15rem; transition: color var(--fh-t); }
.fh-cart-remove:hover { color: var(--fh-chili); }
.fh-cart-empty { text-align: center; padding: 2rem .5rem; color: var(--fh-muted); }
.fh-cart-empty i { font-size: 2.4rem; color: var(--fh-line); display: block; margin-bottom: .6rem; }
.fh-cart-foot { padding: 1.1rem 1.35rem 1.35rem; border-top: 1px solid var(--fh-line); background: var(--fh-cream); }
.fh-cart-row { display: flex; justify-content: space-between; font-size: .93rem; margin-bottom: .45rem; }
.fh-cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--fh-font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--fh-ink); border-top: 1px solid var(--fh-line); padding-top: .75rem; margin-top: .6rem;
}
.fh-cart-total .amt { color: var(--fh-primary); }

/* Fulfilment toggle */
.fh-toggle-group { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; position: relative; }
.fh-toggle-group input {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.fh-toggle-group label {
  border: 1px solid var(--fh-line); border-radius: var(--fh-r-sm);
  padding: .7rem .5rem; text-align: center; cursor: pointer;
  font-family: var(--fh-font-display); font-weight: 600; font-size: .9rem;
  color: var(--fh-charcoal); transition: all var(--fh-t); margin: 0;
}
.fh-toggle-group label i { display: block; font-size: 1.15rem; margin-bottom: .15rem; color: var(--fh-primary); }
.fh-toggle-group input:checked + label { background: var(--fh-primary); border-color: var(--fh-primary); color: #fff; }
.fh-toggle-group input:checked + label i { color: #fff; }
.fh-toggle-group input:focus-visible + label { outline: 3px solid rgba(202, 75, 38, .45); outline-offset: 2px; }

/* Mobile floating cart bar */
.fh-mobile-cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035;
  background: var(--fh-charcoal-dark); color: #fff;
  padding: .8rem 1rem; display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .18);
}
.fh-mobile-cart-bar strong { font-family: var(--fh-font-display); }

/* ==========================================================================
   10. FORMS
   ========================================================================== */
.form-label {
  font-family: var(--fh-font-display); font-weight: 600;
  font-size: .88rem; color: var(--fh-ink); margin-bottom: .4rem;
}
.form-label .req { color: var(--fh-primary); }

.form-control, .form-select {
  border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-sm);
  padding: .8rem 1rem;
  font-size: .95rem;
  color: var(--fh-ink);
  background-color: #fff;
  transition: border-color var(--fh-t), box-shadow var(--fh-t);
}
.form-control::placeholder { color: #b9aea7; }
.form-control:focus, .form-select:focus {
  border-color: var(--fh-primary);
  box-shadow: 0 0 0 4px rgba(202, 75, 38, .1);
}
textarea.form-control { min-height: 130px; resize: vertical; }

.input-group-text {
  background: var(--fh-sand); border: 1px solid var(--fh-line);
  border-right: 0; color: var(--fh-primary); border-radius: var(--fh-r-sm) 0 0 var(--fh-r-sm);
}

.form-check-input:checked { background-color: var(--fh-primary); border-color: var(--fh-primary); }
.form-check-input:focus { border-color: var(--fh-primary); box-shadow: 0 0 0 .2rem rgba(202, 75, 38, .18); }
.form-check-label { font-size: .9rem; }

.fh-form-card {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--fh-shadow-sm);
}

/* Demo submission alert */
.fh-form-alert { display: none; }
.fh-form-alert.show { display: block; animation: fhFadeUp .45s var(--fh-ease); }
.alert-demo {
  background: #eef5ec; border: 1px solid #d6e6d1; color: #34602a;
  border-radius: var(--fh-r-sm); padding: 1rem 1.15rem; font-size: .92rem;
}
.alert-demo i { color: var(--fh-green); }

/* Newsletter inline form */
.fh-newsletter-form { position: relative; max-width: 520px; }
.fh-newsletter-form .form-control {
  border-radius: 100px; padding: 1.05rem 10.5rem 1.05rem 1.4rem;
  border-color: transparent; box-shadow: var(--fh-shadow-sm);
}
.fh-newsletter-form .btn { position: absolute; right: 6px; top: 6px; bottom: 6px; padding: 0 1.6rem; }

/* ==========================================================================
   11. GALLERY & LIGHTBOX
   ========================================================================== */
.fh-gallery-item {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--fh-r-md); background: var(--fh-sand);
  aspect-ratio: 4 / 3;
}
.fh-gallery-item.tall { aspect-ratio: 3 / 4; }
.fh-gallery-item.wide { aspect-ratio: 16 / 9; }
.fh-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--fh-ease); }
.fh-gallery-item:hover img { transform: scale(1.08); }
.fh-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 24, 21, .85), rgba(30, 24, 21, .1) 65%);
  opacity: 0; transition: opacity var(--fh-t);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; color: #fff;
}
.fh-gallery-item:hover .fh-gallery-overlay { opacity: 1; }
.fh-gallery-overlay h3 { color: #fff; font-size: 1.02rem; margin: 0; }
.fh-gallery-overlay span { font-size: .8rem; color: rgba(255, 255, 255, .7); }
.fh-gallery-zoom {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); color: var(--fh-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transform: scale(.6); opacity: 0; transition: all var(--fh-t);
}
.fh-gallery-item:hover .fh-gallery-zoom { transform: scale(1); opacity: 1; }

/* Lightbox modal */
.fh-lightbox .modal-content { background: transparent; border: 0; }
.fh-lightbox .modal-body { padding: 0; text-align: center; }
.fh-lightbox img { border-radius: var(--fh-r-md); max-height: 78vh; width: auto; max-width: 100%; box-shadow: var(--fh-shadow-lg); }
.fh-lightbox .fh-lb-caption { color: #fff; margin-top: 1rem; font-family: var(--fh-font-display); font-weight: 600; }
.fh-lightbox .btn-close { filter: invert(1) grayscale(1) brightness(2); opacity: .9; }
.fh-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--fh-t); z-index: 5;
}
.fh-lb-nav:hover { background: var(--fh-primary); border-color: var(--fh-primary); }
.fh-lb-prev { left: -4px; }
.fh-lb-next { right: -4px; }

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */
.fh-testimonial {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg); padding: 2rem 1.85rem;
  height: 100%; position: relative; transition: all var(--fh-t);
}
.fh-testimonial:hover { transform: translateY(-6px); box-shadow: var(--fh-shadow-md); border-color: transparent; }
.fh-testimonial .quote-mark {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 3.4rem; line-height: 1; color: var(--fh-primary);
  opacity: .12; font-family: Georgia, serif;
}
.fh-stars { color: var(--fh-gold); font-size: .92rem; letter-spacing: .1em; margin-bottom: .85rem; }
.fh-testimonial p { font-size: .96rem; color: var(--fh-body); margin-bottom: 1.35rem; }
.fh-author { display: flex; align-items: center; gap: .85rem; border-top: 1px solid var(--fh-line); padding-top: 1.1rem; }
.fh-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--fh-sand); }
.fh-author .name { font-family: var(--fh-font-display); font-weight: 700; color: var(--fh-ink); font-size: .96rem; line-height: 1.3; }
.fh-author .meta { font-size: .8rem; color: var(--fh-muted); }

/* Rating summary block */
.fh-rating-summary {
  background: var(--fh-charcoal-dark); color: #fff;
  border-radius: var(--fh-r-lg); padding: 2rem;
}
.fh-rating-summary .score { font-family: var(--fh-font-display); font-weight: 800; font-size: 3.4rem; line-height: 1; color: #fff; }
.fh-rating-bar { height: 7px; background: rgba(255, 255, 255, .14); border-radius: 10px; overflow: hidden; }
.fh-rating-bar span { display: block; height: 100%; background: var(--fh-gold); border-radius: 10px; }

/* ==========================================================================
   13. LOCATIONS & HOURS
   ========================================================================== */
.fh-hours-list { list-style: none; padding: 0; margin: 0; }
.fh-hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .62rem 0; border-bottom: 1px dashed var(--fh-line);
  font-size: .93rem;
}
.fh-hours-list li:last-child { border-bottom: 0; }
.fh-hours-list .day { font-family: var(--fh-font-display); font-weight: 600; color: var(--fh-ink); }
.fh-hours-list .time { color: var(--fh-body); }
.fh-hours-list li.today { color: var(--fh-primary); }
.fh-hours-list li.today .day, .fh-hours-list li.today .time { color: var(--fh-primary); font-weight: 700; }

.fh-open-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #eef5ec; color: var(--fh-green);
  border-radius: 100px; padding: .3rem .85rem;
  font-size: .8rem; font-weight: 600; font-family: var(--fh-font-display);
}
.fh-open-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fh-green); animation: fhPulse 2s infinite; }

.fh-location-card { height: 100%; }
.fh-location-card .fh-card-media { aspect-ratio: 16 / 10; }
.fh-contact-row { display: flex; gap: .8rem; align-items: flex-start; font-size: .93rem; margin-bottom: .7rem; }
.fh-contact-row i { color: var(--fh-primary); font-size: 1.05rem; flex: 0 0 auto; margin-top: .12rem; }

.fh-map-wrap {
  position: relative; border-radius: var(--fh-r-lg); overflow: hidden;
  background: var(--fh-sand); min-height: 380px;
  border: 1px solid var(--fh-line);
}
.fh-map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.25) contrast(1.02); }

/* Contact info tile */
.fh-info-tile {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-lg); padding: 1.85rem 1.6rem;
  text-align: center; height: 100%; transition: all var(--fh-t);
}
.fh-info-tile:hover { transform: translateY(-6px); box-shadow: var(--fh-shadow-md); border-color: transparent; }
.fh-info-tile .icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--fh-primary-soft); color: var(--fh-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem; transition: all var(--fh-t);
}
.fh-info-tile:hover .icon { background: var(--fh-primary); color: #fff; }
.fh-info-tile h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.fh-info-tile p, .fh-info-tile a { font-size: .93rem; color: var(--fh-body); margin: 0; }
.fh-info-tile a:hover { color: var(--fh-primary); }

/* ==========================================================================
   14. NEWSLETTER
   ========================================================================== */
.fh-newsletter {
  background: var(--fh-primary);
  color: #fff; border-radius: var(--fh-r-xl);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  position: relative; overflow: hidden;
}
.fh-newsletter::before,
.fh-newsletter::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.fh-newsletter::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.fh-newsletter::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }
.fh-newsletter h2, .fh-newsletter h3 { color: #fff; }
.fh-newsletter p { color: rgba(255, 255, 255, .88); }
.fh-newsletter > .row { position: relative; z-index: 1; }

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.fh-footer { background: var(--fh-charcoal-dark); color: rgba(255, 255, 255, .68); padding-top: 4.5rem; }
.fh-footer h4 {
  color: #fff; font-size: 1.02rem; margin-bottom: 1.35rem;
  letter-spacing: .02em; position: relative; padding-bottom: .75rem;
}
.fh-footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 2px; background: var(--fh-primary); border-radius: 2px;
}
.fh-footer-logo img { height: 54px; width: auto; margin-bottom: 1.25rem; }
.fh-footer p { font-size: .92rem; line-height: 1.8; }
.fh-footer-links { list-style: none; padding: 0; margin: 0; }
.fh-footer-links li { margin-bottom: .62rem; }
.fh-footer-links a {
  color: rgba(255, 255, 255, .68); font-size: .92rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--fh-t);
}
.fh-footer-links a i { font-size: .7rem; color: var(--fh-primary); transition: transform var(--fh-t); }
.fh-footer-links a:hover { color: #fff; }
.fh-footer-links a:hover i { transform: translateX(3px); }

.fh-footer-contact { list-style: none; padding: 0; margin: 0; }
.fh-footer-contact li { display: flex; gap: .75rem; margin-bottom: .9rem; font-size: .92rem; line-height: 1.6; }
.fh-footer-contact i { color: var(--fh-primary); font-size: 1.02rem; flex: 0 0 auto; margin-top: .15rem; }
.fh-footer-contact a { color: rgba(255, 255, 255, .68); }
.fh-footer-contact a:hover { color: #fff; }

.fh-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.fh-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--fh-t);
}
.fh-social a:hover { background: var(--fh-primary); color: #fff; transform: translateY(-4px); }

.fh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3.25rem; padding: 1.5rem 0;
  font-size: .87rem;
}
.fh-footer-bottom a { color: rgba(255, 255, 255, .68); }
.fh-footer-bottom a:hover { color: #fff; }
.fh-footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.fh-footer-dev { color: rgba(255, 255, 255, .55); }
.fh-footer-dev a { color: var(--fh-primary-light); font-weight: 600; }
.fh-footer-dev a:hover { color: #fff; }

/* ==========================================================================
   16. MISC
   ========================================================================== */
/* Accordion (FAQ) */
.fh-accordion .accordion-item {
  border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  background: #fff;
}
.fh-accordion .accordion-button {
  font-family: var(--fh-font-display); font-weight: 600;
  font-size: 1.02rem; color: var(--fh-ink);
  padding: 1.15rem 1.35rem; background: #fff;
  box-shadow: none !important;
}
.fh-accordion .accordion-button:not(.collapsed) { background: var(--fh-primary-soft); color: var(--fh-primary); }
.fh-accordion .accordion-button::after {
  background: none; content: '\F4FE'; font-family: 'bootstrap-icons';
  width: auto; height: auto; font-size: 1rem; color: var(--fh-primary);
  transition: transform var(--fh-t);
}
.fh-accordion .accordion-button:not(.collapsed)::after { content: '\F2EA'; transform: none; }
.fh-accordion .accordion-body { padding: 0 1.35rem 1.35rem; font-size: .95rem; color: var(--fh-body); }

/* Back to top */
.fh-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1032;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fh-primary); color: #fff; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem; box-shadow: var(--fh-shadow-brand);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all var(--fh-t);
}
.fh-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.fh-to-top:hover { background: var(--fh-primary-dark); }

/* Toast */
.fh-toast-stack { position: fixed; bottom: 22px; left: 22px; z-index: 1090; display: flex; flex-direction: column; gap: .6rem; }
.fh-toast {
  background: var(--fh-charcoal-dark); color: #fff;
  border-radius: var(--fh-r-sm); padding: .85rem 1.15rem;
  font-size: .9rem; box-shadow: var(--fh-shadow-md);
  display: flex; align-items: center; gap: .65rem;
  animation: fhFadeUp .35s var(--fh-ease);
  max-width: 330px;
}
.fh-toast i { color: #7fc46a; font-size: 1.1rem; }

/* Job / career listing */
.fh-job {
  background: #fff; border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md); padding: 1.5rem;
  transition: all var(--fh-t);
}
.fh-job:hover { border-color: transparent; box-shadow: var(--fh-shadow-md); transform: translateY(-4px); }
.fh-job-meta { display: flex; flex-wrap: wrap; gap: 1.15rem; font-size: .86rem; color: var(--fh-muted); margin: .55rem 0 .85rem; }
.fh-job-meta i { color: var(--fh-primary); margin-right: .3rem; }

/* Legal / long-form pages */
.fh-legal { font-size: .97rem; }
.fh-legal h2 { font-size: 1.42rem; margin: 2.5rem 0 .9rem; }
.fh-legal h2:first-child { margin-top: 0; }
.fh-legal h3 { font-size: 1.1rem; margin: 1.6rem 0 .6rem; }
.fh-legal ul { padding-left: 1.15rem; margin-bottom: 1rem; }
.fh-legal li { margin-bottom: .5rem; }
.fh-legal-toc {
  background: var(--fh-cream); border: 1px solid var(--fh-line);
  border-radius: var(--fh-r-md); padding: 1.35rem 1.5rem;
  position: sticky; top: calc(var(--fh-header-h) + 8px);
}
.fh-legal-toc ul { list-style: none; padding: 0; margin: 0; }
.fh-legal-toc li { margin-bottom: .5rem; }
.fh-legal-toc a { font-size: .9rem; color: var(--fh-charcoal); }
.fh-legal-toc a:hover { color: var(--fh-primary); }

/* Step / timeline (our story) */
.fh-timeline { position: relative; padding-left: 2.75rem; }
.fh-timeline::before {
  content: ''; position: absolute; left: 11px; top: .5rem; bottom: .5rem;
  width: 2px; background: linear-gradient(to bottom, var(--fh-primary), var(--fh-line));
}
.fh-timeline-item { position: relative; padding-bottom: 2.5rem; }
.fh-timeline-item:last-child { padding-bottom: 0; }
.fh-timeline-item::before {
  content: ''; position: absolute; left: -2.75rem; top: .35rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--fh-primary);
  box-shadow: 0 0 0 5px var(--fh-primary-soft);
}
.fh-timeline-year {
  font-family: var(--fh-font-display); font-weight: 800;
  color: var(--fh-primary); font-size: .9rem; letter-spacing: .1em;
}

/* Numbered value list */
.fh-value-num {
  font-family: var(--fh-font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--fh-primary);
  opacity: .35; line-height: 1;
}

/* Demo-content notice */
.fh-demo-note {
  background: #fdf3e2; border: 1px dashed #e6c98f; color: #8a6520;
  border-radius: var(--fh-r-sm); padding: .8rem 1.1rem; font-size: .86rem;
}
.fh-demo-note i { color: #c8933a; }

/* ==========================================================================
   17. ANIMATIONS & REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--fh-ease), transform .7s var(--fh-ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

@keyframes fhFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fhKenBurns { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
@keyframes fhBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }
@keyframes fhPulse { 0% { box-shadow: 0 0 0 0 rgba(76, 122, 63, .5); } 70% { box-shadow: 0 0 0 7px rgba(76, 122, 63, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 122, 63, 0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 1399.98px) {
  .fh-nav .nav-link { padding: .6rem .58rem !important; font-size: .89rem; }
  .fh-nav .nav-link::after { left: .58rem; right: .58rem; }
  .fh-logo img { height: 46px; }
}

@media (max-width: 1199.98px) {
  .fh-nav .nav-link { padding: .6rem .45rem !important; font-size: .84rem; }
  .fh-nav .nav-link::after { left: .45rem; right: .45rem; }
  .fh-header .btn-sm { padding: .45rem .95rem; font-size: .82rem; }
}

@media (max-width: 991.98px) {
  :root { --fh-header-h: 76px; }
  /* Large Bootstrap gutters overflow narrow viewports — tighten them */
  .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
  .fh-hero { min-height: auto; }
  .fh-hero-inner { padding: 6rem 0 5rem; }
  .fh-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1.25rem; }
  .fh-badge-float { position: static; display: inline-block; margin-top: 1.25rem; }
  .fh-frame-offset::before { display: none; }
  .fh-order-nav, .fh-cart-panel, .fh-legal-toc { position: static; }
  .fh-lb-prev { left: 6px; } .fh-lb-next { right: 6px; }
}

@media (max-width: 767.98px) {
  body { font-size: .97rem; }
  .section { padding: 3.25rem 0; }
  .fh-hero-inner { padding: 5rem 0 4.5rem; }
  .fh-hero-stat .num { font-size: 1.6rem; }
  .fh-newsletter-form .form-control { padding: 1rem 1.3rem; }
  .fh-newsletter-form .btn { position: static; width: 100%; margin-top: .6rem; }
  .fh-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
  .fh-filters::-webkit-scrollbar { height: 0; }
  .fh-footer { padding-top: 3.25rem; }
  .fh-footer-bottom { text-align: center; }
  .fh-footer-legal { justify-content: center !important; }
  .fh-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
  .fh-toast-stack { left: 12px; right: 12px; bottom: 12px; }
  .fh-toast { max-width: none; }
  .fh-menu-thumb { flex: 0 0 82px; width: 82px; height: 82px; }
  .fh-video-toggle { bottom: 1rem; right: 1rem; }
  .fh-scroll-cue { display: none; }
}

@media (max-width: 575.98px) {
  .fh-logo img { height: 42px; }
  .fh-header.is-stuck .fh-logo img { height: 38px; }
  .fh-menu-item { flex-direction: column; }
  .fh-menu-thumb { width: 100%; height: 160px; flex: none; }
  .fh-order-item { flex-direction: column; }
  .fh-order-thumb { width: 100%; height: 150px; flex: none; }
  .fh-timeline { padding-left: 2.25rem; }
  .fh-timeline-item::before { left: -2.25rem; width: 20px; height: 20px; }
}

/* Print */
@media print {
  .fh-header, .fh-topbar, .fh-footer, .fh-to-top, .fh-mobile-cart-bar, .fh-video-toggle, .fh-scroll-cue { display: none !important; }
  body { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}
