/*
Theme Name:   GeneratePress Child
Theme URI:    https://findmyhygiene.co.uk
Description:  FindMyHygiene — Live Index design system (v0.3.2).
Author:       CK Tripathi
Author URI:   https://findmyhygiene.co.uk
Template:     generatepress
Version:      0.3.2
Text Domain:  generatepress-child
*/

/* =========================================================================
   FMH FULL-BLEED OVERRIDES v0.3.2
   The v0.3.1 overrides forced width:100% but left GP's display:flex intact
   on #content.site-content — which was turning our sections into flex items
   and squeezing them to shrink-to-fit. Core fix: force display:block on
   every GP wrapper. Applied only when body has .fmh-fullbleed.
   ========================================================================= */
html { overflow-x: hidden; }

body.fmh-fullbleed {
    overflow-x: hidden;
    background: #fdfaf2;
    margin: 0 !important;
    padding: 0 !important;
}

/* Critical: force display:block + full width on every GP wrapper */
body.fmh-fullbleed #page,
body.fmh-fullbleed .site,
body.fmh-fullbleed .grid-container,
body.fmh-fullbleed .container,
body.fmh-fullbleed #content,
body.fmh-fullbleed .site-content,
body.fmh-fullbleed .content-area,
body.fmh-fullbleed .site-main,
body.fmh-fullbleed #primary,
body.fmh-fullbleed #main,
body.fmh-fullbleed main,
body.fmh-fullbleed .inside-content,
body.fmh-fullbleed .inside-article,
body.fmh-fullbleed .generate-columns-container,
body.fmh-fullbleed .grid-parent,
body.fmh-fullbleed .fmh-container,
body.fmh-fullbleed article,
body.fmh-fullbleed article[class*="post-"],
body.fmh-fullbleed article[class*="type-"],
body.fmh-fullbleed .entry-content,
body.fmh-fullbleed .page-content,
body.fmh-fullbleed .hentry {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    float: none !important;
    flex: none !important;
    flex-basis: auto !important;
    flex-shrink: 1 !important;
}

/* Belt & braces: our sections must be block + full-width under any parent */
body.fmh-fullbleed .fmh-announce,
body.fmh-fullbleed .fmh-nav,
body.fmh-fullbleed .fmh-hero,
body.fmh-fullbleed .fmh-sec,
body.fmh-fullbleed .fmh-merch,
body.fmh-fullbleed .fmh-foot,
body.fmh-fullbleed .fmh-venue-hero,
body.fmh-fullbleed .fmh-hub-hero,
body.fmh-fullbleed .fmh-filter-bar,
body.fmh-fullbleed .fmh-venues-list,
body.fmh-fullbleed .fmh-venue-grid,
body.fmh-fullbleed .fmh-trust {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hide GP chrome */
body.fmh-fullbleed .generate-back-to-top,
body.fmh-fullbleed .entry-header,
body.fmh-fullbleed .entry-footer,
body.fmh-fullbleed .entry-meta,
body.fmh-fullbleed .page-header,
body.fmh-fullbleed nav.post-navigation,
body.fmh-fullbleed .footer-widgets,
body.fmh-fullbleed .site-info,
body.fmh-fullbleed .site-footer,
body.fmh-fullbleed .site-header,
body.fmh-fullbleed .main-navigation,
body.fmh-fullbleed header#masthead,
body.fmh-fullbleed .navigation-branding,
body.fmh-fullbleed #site-navigation,
body.fmh-fullbleed .mobile-menu-control-wrapper {
    display: none !important;
}

/* Skip link — keep accessible but offscreen */
body.fmh-fullbleed .screen-reader-text,
body.fmh-fullbleed .skip-link {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* =========================================================================
   FMH — LIVE INDEX — Design tokens
   ========================================================================= */
:root {
    --fmh-paper:      #fdfaf2;
    --fmh-paper-2:    #f4eedc;
    --fmh-paper-3:    #e8dfc4;
    --fmh-ink:        #0a0e0c;
    --fmh-ink-2:      #1f2320;
    --fmh-ink-soft:   #4a4e48;
    --fmh-ink-softer: #8c8e85;
    --fmh-line:       #e8e0c6;
    --fmh-line-soft:  rgba(10,14,12,0.10);

    --fmh-navy:       #0c1d38;
    --fmh-navy-2:     #16274a;
    --fmh-navy-3:     #1e3359;
    --fmh-navy-text:  #c9d3e8;

    --fmh-amber:      #f5b73f;
    --fmh-amber-2:    #f4c968;
    --fmh-persimmon:  #ed5128;
    --fmh-persimmon-dk:#b13612;

    --fmh-green:      #0e6b45;
    --fmh-green-lt:   #1a8a5a;
    --fmh-gold:       #d49427;
    --fmh-red:        #a61f15;
    --fmh-red-lt:     #c93a27;

    --fmh-radius-sm:  3px;
    --fmh-radius-md:  6px;
    --fmh-radius-lg:  8px;
}

/* Body + global reset for directory pages */
body.fmh-directory {
    background: var(--fmh-paper);
    color: var(--fmh-ink);
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
body.fmh-directory *, body.fmh-directory *::before, body.fmh-directory *::after {
    box-sizing: border-box;
}

/* Contain the theme's default wrappers — we handle width ourselves */
body.fmh-directory .site-content { padding: 0; }
body.fmh-directory .content-area { width: 100%; max-width: none; padding: 0; }
body.fmh-directory .site-main { margin: 0; }

.fmh-wrap { max-width: 1200px; margin: 0 auto; padding: 0 36px; }

/* =========================================================================
   Announcement strip
   ========================================================================= */
.fmh-announce {
    background: var(--fmh-navy);
    color: var(--fmh-navy-text);
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
}
.fmh-announce em { color: var(--fmh-amber); font-style: normal; font-weight: 600; }
.fmh-announce strong { color: var(--fmh-paper); font-weight: 500; }
.fmh-announce a { color: var(--fmh-amber); text-decoration: none; font-weight: 500; }
.fmh-announce a:hover { text-decoration: underline; }
.fmh-announce a::after { content: " →"; }

/* =========================================================================
   Nav
   ========================================================================= */
.fmh-nav {
    background: var(--fmh-paper);
    border-bottom: 1px solid var(--fmh-line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.fmh-nav .fmh-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 20px 36px;
}
.fmh-brand {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40, "opsz" 72;
    font-weight: 500;
    font-size: 26px;
    color: var(--fmh-ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.fmh-brand em { font-style: italic; color: var(--fmh-persimmon); }
.fmh-nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.fmh-nav-links a { color: var(--fmh-ink); text-decoration: none; padding: 6px 0; }
.fmh-nav-links a:hover { color: var(--fmh-persimmon); }
.fmh-nav-links a.active { border-bottom: 2px solid var(--fmh-ink); }
.fmh-nav-right { display: flex; gap: 12px; align-items: center; }
.fmh-nav-ghost {
    padding: 10px 18px;
    font-size: 13px; font-weight: 500;
    color: var(--fmh-ink);
    text-decoration: none;
}
.fmh-nav-cta {
    background: var(--fmh-ink);
    color: var(--fmh-paper);
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--fmh-radius-sm);
}
.fmh-nav-cta:hover {
    background: var(--fmh-persimmon);
    color: var(--fmh-paper);
}

/* Mobile nav */
@media (max-width: 768px) {
    .fmh-nav .fmh-wrap { grid-template-columns: auto auto; gap: 16px; padding: 16px 20px; }
    .fmh-nav-links { display: none; }
    .fmh-nav-ghost { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.fmh-hero {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.fmh-hero::before {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: var(--fmh-persimmon);
    opacity: 0.18;
    pointer-events: none;
}
.fmh-hero::after {
    content: "";
    position: absolute;
    left: 40%; bottom: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--fmh-amber);
    opacity: 0.12;
    pointer-events: none;
}
.fmh-hero .fmh-wrap { position: relative; z-index: 2; }

.fmh-hero-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.fmh-hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(245, 183, 63, 0.15);
    border: 1px solid rgba(245, 183, 63, 0.35);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    color: var(--fmh-amber);
}
.fmh-hero-pill::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--fmh-amber);
    border-radius: 50%;
}
.fmh-hero-stamp {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--fmh-navy-text);
}
.fmh-hero-stamp em { color: var(--fmh-amber); font-style: normal; font-weight: 600; }

.fmh-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 50, "opsz" 144;
    font-weight: 400;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 0 24px;
    color: var(--fmh-paper);
    max-width: 900px;
}
.fmh-hero h1 em { font-style: italic; color: var(--fmh-amber); }

.fmh-hero-lede {
    font-size: 21px;
    color: var(--fmh-navy-text);
    max-width: 640px;
    line-height: 1.45;
    margin: 0 0 40px;
}

.fmh-hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    background: var(--fmh-paper);
    border-radius: var(--fmh-radius-sm);
    overflow: hidden;
    max-width: 640px;
    margin-bottom: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.fmh-hero-search input {
    border: none; background: transparent;
    padding: 22px 28px;
    font-family: inherit;
    font-size: 17px;
    color: var(--fmh-ink);
}
.fmh-hero-search input:focus { outline: none; }
.fmh-hero-search input::placeholder { color: var(--fmh-ink-softer); }
.fmh-hero-search button {
    border: none;
    background: var(--fmh-persimmon);
    color: var(--fmh-paper);
    padding: 0 32px;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}
.fmh-hero-search button:hover { background: var(--fmh-persimmon-dk); }

.fmh-hero-pop {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    font-size: 13px; color: var(--fmh-navy-text);
    margin-bottom: 0;
}
.fmh-hero-pop > span { margin-right: 8px; }
.fmh-hero-pop a {
    color: var(--fmh-paper);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(245, 183, 63, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.fmh-hero-pop a:hover {
    background: var(--fmh-amber);
    color: var(--fmh-navy);
    border-color: var(--fmh-amber);
}

.fmh-hero-strip {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 211, 232, 0.2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.fmh-hs-n {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1;
    color: var(--fmh-amber);
    letter-spacing: -0.02em;
}
.fmh-hs-n sup { font-size: 20px; vertical-align: super; color: var(--fmh-paper); }
.fmh-hs-l {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    color: var(--fmh-navy-text);
    margin-top: 10px;
}
.fmh-hs-d {
    font-size: 11px; color: var(--fmh-amber);
    margin-top: 6px;
}
.fmh-hs-d .up { color: #86e1ac; }
.fmh-hs-d .dn { color: #f0a48f; }

@media (max-width: 768px) {
    .fmh-hero { padding: 56px 0 72px; }
    .fmh-hero-strip { grid-template-columns: 1fr 1fr; gap: 20px; }
    .fmh-hero-lede { font-size: 17px; }
}

/* =========================================================================
   Ad slot
   ========================================================================= */
.fmh-ad {
    margin: 20px auto;
    padding: 18px 0;
    border: 1px dashed var(--fmh-line);
    text-align: center;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--fmh-ink-softer);
    background: var(--fmh-paper);
    border-radius: var(--fmh-radius-sm);
}
.fmh-ad em { color: var(--fmh-persimmon); font-style: normal; font-weight: 600; }

/* =========================================================================
   Section header
   ========================================================================= */
.fmh-sec { padding: 80px 0; }
.fmh-sec-alt { background: var(--fmh-paper-2); }
.fmh-sec-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 48px;
    gap: 32px;
}
.fmh-sec-kick {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-persimmon);
    margin: 0 0 16px;
}
.fmh-sec-kick::before {
    content: ""; width: 28px; height: 1.5px;
    background: var(--fmh-persimmon);
}
.fmh-sec-head h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40, "opsz" 96;
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 54px);
    margin: 0;
    letter-spacing: -0.03em;
    color: var(--fmh-ink);
    line-height: 1;
}
.fmh-sec-head h2 em { font-style: italic; color: var(--fmh-persimmon); }
.fmh-sec-head-sub {
    font-size: 16px;
    color: var(--fmh-ink-soft);
    max-width: 460px;
    text-align: right;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .fmh-sec { padding: 56px 0; }
    .fmh-sec-head { grid-template-columns: 1fr; }
    .fmh-sec-head-sub { text-align: left; }
}

/* =========================================================================
   "This week" cards
   ========================================================================= */
.fmh-weekcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fmh-wc {
    padding: 36px 36px 32px;
    border-radius: var(--fmh-radius-md);
    text-decoration: none;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 280px;
    position: relative;
}
.fmh-wc-kick {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    margin: 0;
}
.fmh-wc-kick::before {
    content: ""; width: 10px; height: 10px; border-radius: 50%;
    background: currentColor;
}
.fmh-wc-num {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 88px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 12px 0 16px;
}
.fmh-wc-lbl {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 20px;
}
.fmh-wc-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px;
    border-top: 1px solid currentColor;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    opacity: 0.85;
}
.fmh-wc-up { background: var(--fmh-green); color: var(--fmh-paper); }
.fmh-wc-up .fmh-wc-kick, .fmh-wc-up .fmh-wc-num { color: var(--fmh-amber); }
.fmh-wc-down { background: var(--fmh-red); color: var(--fmh-paper); }
.fmh-wc-down .fmh-wc-kick, .fmh-wc-down .fmh-wc-num { color: var(--fmh-amber); }
.fmh-wc-new { background: var(--fmh-amber); color: #3a2a08; }
.fmh-wc-new .fmh-wc-kick, .fmh-wc-new .fmh-wc-num { color: var(--fmh-persimmon-dk); }

@media (max-width: 768px) {
    .fmh-weekcards { grid-template-columns: 1fr; }
    .fmh-wc { min-height: 220px; }
    .fmh-wc-num { font-size: 72px; }
}

/* =========================================================================
   UK Snapshot (distribution + rankings)
   ========================================================================= */
.fmh-snap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}
.fmh-snap-main {
    background: var(--fmh-paper);
    border: 1px solid var(--fmh-line);
    border-radius: var(--fmh-radius-md);
    padding: 40px 44px;
}
.fmh-snap-hdr {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fmh-line);
}
.fmh-snap-hdr h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 26px;
    margin: 0;
    letter-spacing: -0.015em;
}
.fmh-snap-hdr .fmh-period {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--fmh-ink-softer);
}
.fmh-dist-row {
    display: grid;
    grid-template-columns: 32px 1fr 110px;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.fmh-dist-bar-wrap {
    height: 14px;
    background: var(--fmh-paper-2);
    border-radius: var(--fmh-radius-sm);
    overflow: hidden;
}
.fmh-dist-bar { height: 100%; min-width: 2px; }
.fmh-dist-val {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 17px;
    text-align: right;
    letter-spacing: -0.01em;
}
.fmh-dist-val .fmh-pct {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px; font-weight: 500;
    color: var(--fmh-ink-softer);
    margin-top: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Snap side — ranking card */
.fmh-snap-side {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    border-radius: var(--fmh-radius-md);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.fmh-snap-side::before {
    content: "";
    position: absolute; right: -60px; top: -60px;
    width: 180px; height: 180px; border-radius: 50%;
    background: var(--fmh-persimmon); opacity: 0.22;
    pointer-events: none;
}
.fmh-snap-side > * { position: relative; z-index: 1; }
.fmh-ss-kick {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-amber);
    margin: 0 0 12px;
}
.fmh-ss-title {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 400; font-style: italic;
    font-size: 24px;
    color: var(--fmh-paper);
    margin: 0 0 24px;
    line-height: 1.15;
}
.fmh-rank-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 14px; align-items: center;
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(201, 211, 232, 0.18);
}
.fmh-rank-row:last-child { border-bottom: none; }
.fmh-rank-pos {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 500;
    color: var(--fmh-amber); font-size: 17px;
}
.fmh-rank-name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--fmh-paper);
    text-decoration: none;
}
.fmh-rank-name:hover { color: var(--fmh-amber); }
.fmh-rank-val {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--fmh-amber);
}
@media (max-width: 900px) {
    .fmh-snap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .fmh-snap-main { padding: 28px; }
    .fmh-dist-row { grid-template-columns: 28px 1fr 90px; }
}

/* =========================================================================
   Rating badges — UNIFIED stamps
   ========================================================================= */
.fmh-badge {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    border-radius: var(--fmh-radius-md);
    flex-shrink: 0;
}
.fmh-badge-xs { width: 26px; height: 26px; font-size: 15px; border-radius: var(--fmh-radius-sm); }
.fmh-badge-sm { width: 30px; height: 30px; font-size: 16px; border-radius: var(--fmh-radius-sm); }
.fmh-badge-md { width: 56px; height: 56px; font-size: 28px; border-radius: var(--fmh-radius-md); }
.fmh-badge-lg { width: 64px; height: 64px; font-size: 30px; border-radius: 12px; }
.fmh-badge-xl { width: 120px; height: 120px; font-size: 60px; border-radius: 12px; letter-spacing: -0.03em; }

/* Numeric rating colours */
.fmh-rating-5 { background: var(--fmh-green); color: var(--fmh-amber); }
.fmh-rating-4 { background: var(--fmh-green-lt); color: var(--fmh-paper); }
.fmh-rating-3 { background: var(--fmh-amber); color: #3a2a08; }
.fmh-rating-2 { background: var(--fmh-persimmon); color: var(--fmh-paper); }
.fmh-rating-1 { background: var(--fmh-red); color: var(--fmh-paper); }
.fmh-rating-0 { background: #7a1810; color: var(--fmh-amber); }

/* Non-numeric */
.fmh-rating-exempt, .fmh-rating-awaiting, .fmh-rating-pass, .fmh-rating-improve, .fmh-rating-unknown {
    background: var(--fmh-ink-2); color: var(--fmh-amber);
    font-size: 11px !important;
    letter-spacing: 0.05em;
}
.fmh-badge-xl.fmh-rating-exempt,
.fmh-badge-xl.fmh-rating-awaiting,
.fmh-badge-xl.fmh-rating-pass,
.fmh-badge-xl.fmh-rating-improve {
    font-size: 15px !important;
    line-height: 1.2;
    padding: 10px;
    text-align: center;
}

/* =========================================================================
   Recent inspection cards (colour per rating)
   ========================================================================= */
.fmh-insp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fmh-ic {
    padding: 26px 28px;
    border-radius: var(--fmh-radius-md);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    text-decoration: none;
}
.fmh-ic-cat {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
    margin: 0 0 8px;
}
.fmh-ic h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.fmh-ic-addr { font-size: 13px; margin: 0 0 10px; }
.fmh-ic-meta {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.fmh-ic-meta .fmh-chip {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
}
.fmh-ic-stub {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px;
    font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 30px;
    border-radius: 12px;
    flex-shrink: 0;
}
/* r5 */
.fmh-ic.fmh-ic-r5 { background: var(--fmh-green); color: var(--fmh-paper); }
.fmh-ic-r5 .fmh-ic-cat, .fmh-ic-r5 .fmh-ic-meta { color: var(--fmh-amber); }
.fmh-ic-r5 .fmh-ic-addr { color: var(--fmh-paper); opacity: 0.88; }
.fmh-ic-r5 .fmh-chip { background: var(--fmh-amber); color: #3a2a08; }
.fmh-ic-r5 .fmh-ic-stub { background: var(--fmh-amber); color: var(--fmh-green); }
/* r4 */
.fmh-ic.fmh-ic-r4 { background: var(--fmh-green-lt); color: var(--fmh-paper); }
.fmh-ic-r4 .fmh-ic-cat, .fmh-ic-r4 .fmh-ic-meta { color: var(--fmh-amber); }
.fmh-ic-r4 .fmh-ic-addr { color: var(--fmh-paper); opacity: 0.88; }
.fmh-ic-r4 .fmh-chip { background: var(--fmh-amber); color: #3a2a08; }
.fmh-ic-r4 .fmh-ic-stub { background: var(--fmh-amber); color: var(--fmh-green-lt); }
/* r3 */
.fmh-ic.fmh-ic-r3 { background: var(--fmh-amber); color: #3a2a08; }
.fmh-ic-r3 .fmh-ic-cat, .fmh-ic-r3 .fmh-ic-meta { color: var(--fmh-persimmon-dk); }
.fmh-ic-r3 .fmh-ic-addr { color: #3a2a08; opacity: 0.82; }
.fmh-ic-r3 .fmh-chip { background: var(--fmh-persimmon); color: var(--fmh-paper); }
.fmh-ic-r3 .fmh-ic-stub { background: #3a2a08; color: var(--fmh-amber); }
/* r2 */
.fmh-ic.fmh-ic-r2 { background: var(--fmh-persimmon); color: var(--fmh-paper); }
.fmh-ic-r2 .fmh-ic-cat, .fmh-ic-r2 .fmh-ic-meta { color: var(--fmh-amber); }
.fmh-ic-r2 .fmh-ic-addr { color: var(--fmh-paper); opacity: 0.88; }
.fmh-ic-r2 .fmh-chip { background: var(--fmh-amber); color: #3a2a08; }
.fmh-ic-r2 .fmh-ic-stub { background: var(--fmh-amber); color: var(--fmh-persimmon-dk); }
/* r1 */
.fmh-ic.fmh-ic-r1 { background: var(--fmh-red); color: var(--fmh-paper); }
.fmh-ic-r1 .fmh-ic-cat, .fmh-ic-r1 .fmh-ic-meta { color: var(--fmh-amber); }
.fmh-ic-r1 .fmh-ic-addr { color: var(--fmh-paper); opacity: 0.88; }
.fmh-ic-r1 .fmh-chip { background: var(--fmh-amber); color: #3a2a08; }
.fmh-ic-r1 .fmh-ic-stub { background: var(--fmh-amber); color: var(--fmh-red); }
/* r0 */
.fmh-ic.fmh-ic-r0 { background: #6b1811; color: var(--fmh-amber); }
.fmh-ic-r0 .fmh-ic-cat, .fmh-ic-r0 .fmh-ic-meta { color: var(--fmh-amber); }
.fmh-ic-r0 .fmh-ic-addr { color: var(--fmh-amber); opacity: 0.8; }
.fmh-ic-r0 .fmh-chip { background: var(--fmh-amber); color: #6b1811; }
.fmh-ic-r0 .fmh-ic-stub { background: var(--fmh-amber); color: #6b1811; }

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

/* =========================================================================
   Trust strip
   ========================================================================= */
.fmh-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--fmh-line);
    border-bottom: 1px solid var(--fmh-line);
}
.fmh-trust-cell {
    padding: 36px 32px;
    border-right: 1px solid var(--fmh-line);
}
.fmh-trust-cell:last-child { border-right: none; }
.fmh-trust-cell .fmh-n {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 38px;
    color: var(--fmh-persimmon);
    letter-spacing: -0.02em;
    line-height: 1;
}
.fmh-trust-cell h5 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 18px;
    margin: 12px 0 6px;
    letter-spacing: -0.01em;
}
.fmh-trust-cell p { font-size: 13px; color: var(--fmh-ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
    .fmh-trust { grid-template-columns: 1fr 1fr; }
    .fmh-trust-cell:nth-child(2) { border-right: none; }
    .fmh-trust-cell:nth-child(-n+2) { border-bottom: 1px solid var(--fmh-line); }
}

/* =========================================================================
   Merchant conversion block
   ========================================================================= */
.fmh-merch {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.fmh-merch::before, .fmh-merch::after {
    content: ""; position: absolute; border-radius: 50%;
    pointer-events: none;
}
.fmh-merch::before {
    left: -140px; top: -140px;
    width: 480px; height: 480px;
    background: var(--fmh-persimmon); opacity: 0.12;
}
.fmh-merch::after {
    right: -80px; bottom: -80px;
    width: 320px; height: 320px;
    background: var(--fmh-amber); opacity: 0.12;
}
.fmh-merch .fmh-wrap { position: relative; z-index: 1; }

.fmh-merch-head { text-align: center; margin-bottom: 56px; }
.fmh-merch-kick {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(245, 183, 63, 0.15);
    border: 1px solid rgba(245, 183, 63, 0.4);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-amber);
    margin: 0 0 24px;
}
.fmh-merch-head h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 50, "opsz" 144;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
    color: var(--fmh-paper);
}
.fmh-merch-head h3 em { font-style: italic; color: var(--fmh-amber); }
.fmh-merch-head p {
    font-size: 19px; color: var(--fmh-navy-text);
    max-width: 620px; margin: 0 auto;
    line-height: 1.5;
}
.fmh-merch-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* Pricing card */
.fmh-price-card {
    background: var(--fmh-paper);
    color: var(--fmh-ink);
    border-radius: var(--fmh-radius-lg);
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.fmh-price-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--fmh-persimmon);
}
.fmh-pc-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--fmh-paper-2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-persimmon);
}
.fmh-pc-title {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 26px;
    margin: 16px 0 8px;
    letter-spacing: -0.015em;
}
.fmh-pc-price {
    display: flex; align-items: baseline; gap: 4px;
    margin: 12px 0 4px;
}
.fmh-pc-price .fmh-amt {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    color: var(--fmh-ink);
    letter-spacing: -0.04em;
}
.fmh-pc-price .fmh-per {
    font-size: 17px; color: var(--fmh-ink-soft); font-weight: 500;
}
.fmh-pc-lock {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--fmh-green);
    margin-bottom: 28px;
    font-weight: 500;
}
.fmh-pc-feats { list-style: none; padding: 0; margin: 0 0 32px; }
.fmh-pc-feats li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--fmh-ink);
}
.fmh-pc-feats li::before {
    content: "✓"; flex-shrink: 0;
    width: 20px; height: 20px;
    background: var(--fmh-green);
    color: var(--fmh-paper);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    margin-top: 1px;
}
.fmh-pc-feats li strong { color: var(--fmh-persimmon); font-weight: 600; }

.fmh-pc-btn {
    display: block; width: 100%; text-align: center;
    background: var(--fmh-ink); color: var(--fmh-paper);
    padding: 18px 0;
    font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    text-decoration: none;
    border-radius: var(--fmh-radius-sm);
    margin-bottom: 12px;
}
.fmh-pc-btn:hover { background: var(--fmh-persimmon); color: var(--fmh-paper); }
.fmh-pc-btn-sub {
    width: 100%; text-align: center;
    font-size: 12px; color: var(--fmh-ink-softer);
    display: block;
}

/* Merchant proof stack */
.fmh-proof { display: flex; flex-direction: column; gap: 20px; }
.fmh-pq {
    background: var(--fmh-navy-2);
    border-left: 3px solid var(--fmh-amber);
    padding: 24px 28px;
    border-radius: var(--fmh-radius-sm);
}
.fmh-pq p {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.4;
    color: var(--fmh-paper);
    margin: 0 0 14px;
}
.fmh-pq-attr {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-amber);
}
.fmh-pq-attr em { color: var(--fmh-navy-text); font-style: normal; font-weight: 400; margin-left: 6px; }

.fmh-proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fmh-ps {
    background: var(--fmh-navy-2);
    padding: 20px 22px;
    border-radius: var(--fmh-radius-sm);
}
.fmh-ps-n {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 40px; line-height: 1;
    color: var(--fmh-amber);
    letter-spacing: -0.02em;
}
.fmh-ps-l {
    font-size: 12px;
    color: var(--fmh-navy-text);
    margin-top: 8px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .fmh-merch-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .fmh-merch { padding: 64px 0; }
    .fmh-price-card { padding: 28px; }
}

/* =========================================================================
   Footer
   ========================================================================= */
.fmh-foot {
    background: var(--fmh-ink);
    color: var(--fmh-paper);
    padding: 64px 0 36px;
}
.fmh-foot .fmh-wrap {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
}
.fmh-foot h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--fmh-amber);
    margin: 0 0 16px;
}
.fmh-foot-brand {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 32px;
    color: var(--fmh-paper);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-block;
}
.fmh-foot-brand em { font-style: italic; color: var(--fmh-persimmon); }
.fmh-foot p { font-size: 14px; color: var(--fmh-paper); opacity: 0.75; line-height: 1.6; margin: 0 0 14px; }
.fmh-foot a {
    color: var(--fmh-paper); opacity: 0.75; text-decoration: none; font-size: 14px;
    display: block; margin-bottom: 10px;
}
.fmh-foot a:hover { color: var(--fmh-amber); opacity: 1; }
.fmh-foot-bottom {
    margin-top: 44px; padding-top: 24px;
    border-top: 1px solid rgba(253, 250, 242, 0.12);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: var(--fmh-paper); opacity: 0.6;
}
.fmh-foot-bottom em { color: var(--fmh-amber); opacity: 1; font-style: normal; }

@media (max-width: 768px) {
    .fmh-foot .fmh-wrap { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   Single-venue page
   ========================================================================= */
.fmh-venue-hero {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.fmh-venue-hero::before {
    content: "";
    position: absolute;
    right: -100px; top: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: var(--fmh-persimmon); opacity: 0.12;
    pointer-events: none;
}
.fmh-venue-hero .fmh-wrap { position: relative; z-index: 1; }
.fmh-venue-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: flex-start;
}
.fmh-breadcrumb {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
    color: var(--fmh-amber);
    margin: 0 0 20px;
}
.fmh-breadcrumb a { color: var(--fmh-paper); text-decoration: none; border-bottom: 1px solid rgba(253,250,242,0.4); padding-bottom: 1px; }
.fmh-breadcrumb a:hover { color: var(--fmh-amber); border-color: var(--fmh-amber); }
.fmh-venue-title {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 50, "opsz" 144;
    font-weight: 400;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
    color: var(--fmh-paper);
}
.fmh-venue-sub {
    font-size: 19px;
    color: var(--fmh-navy-text);
    margin: 0 0 20px;
    line-height: 1.5;
}
.fmh-venue-badge-col { text-align: center; flex-shrink: 0; }
.fmh-venue-badge-lbl {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--fmh-amber);
    margin-top: 14px;
    font-weight: 600;
}
.fmh-venue-badge-date {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: var(--fmh-navy-text);
    margin-top: 4px;
}
.fmh-change-chip {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.fmh-change-chip.fmh-change-up { background: var(--fmh-green-lt); color: var(--fmh-paper); }
.fmh-change-chip.fmh-change-down { background: var(--fmh-red); color: var(--fmh-paper); }
.fmh-change-chip.fmh-change-held { background: var(--fmh-navy-3); color: var(--fmh-amber); }

@media (max-width: 768px) {
    .fmh-venue-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Venue content grid */
.fmh-venue-grid {
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}
.fmh-card {
    background: var(--fmh-paper);
    border: 1px solid var(--fmh-line);
    border-radius: var(--fmh-radius-md);
    padding: 36px 36px;
}
.fmh-card-kick {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-persimmon);
    margin: 0 0 16px;
}
.fmh-card-kick::before {
    content: ""; width: 28px; height: 1.5px;
    background: var(--fmh-persimmon);
}
.fmh-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.015em;
    margin: 0 0 20px;
    color: var(--fmh-ink);
}
.fmh-address {
    font-style: normal;
    font-size: 17px;
    line-height: 1.65;
    color: var(--fmh-ink);
    margin: 0 0 24px;
}
.fmh-osm-btn {
    display: inline-block;
    padding: 12px 22px;
    border: 1.5px solid var(--fmh-ink);
    background: transparent;
    color: var(--fmh-ink);
    text-decoration: none;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    border-radius: var(--fmh-radius-sm);
}
.fmh-osm-btn:hover { background: var(--fmh-ink); color: var(--fmh-amber); }
.fmh-auth-line {
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--fmh-line-soft);
    font-size: 13px;
    color: var(--fmh-ink-soft);
}
.fmh-auth-line a { color: var(--fmh-persimmon); text-decoration: none; border-bottom: 1px solid var(--fmh-persimmon); }

/* Sub-score bars */
.fmh-score { margin: 0 0 22px; }
.fmh-score-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.fmh-score-lbl {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    color: var(--fmh-ink);
}
.fmh-score-descr {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-ink-soft);
}
.fmh-score-bar {
    height: 10px;
    background: var(--fmh-paper-2);
    border-radius: var(--fmh-radius-sm);
    overflow: hidden;
}
.fmh-score-fill { height: 100%; min-width: 2px; }
.fmh-score-fill.fmh-sf-excellent { background: var(--fmh-green); }
.fmh-score-fill.fmh-sf-good { background: var(--fmh-green-lt); }
.fmh-score-fill.fmh-sf-satisfactory { background: var(--fmh-amber); }
.fmh-score-fill.fmh-sf-improvement { background: var(--fmh-persimmon); }
.fmh-score-fill.fmh-sf-urgent { background: var(--fmh-red); }
.fmh-score-na { font-size: 13px; color: var(--fmh-ink-softer); font-style: italic; }
.fmh-score-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--fmh-line-soft);
    font-size: 12px;
    color: var(--fmh-ink-soft);
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
}

@media (max-width: 768px) {
    .fmh-venue-grid { grid-template-columns: 1fr; padding: 40px 0; }
    .fmh-card { padding: 28px; }
}

/* =========================================================================
   Hub (taxonomy) pages
   ========================================================================= */
.fmh-hub-hero {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.fmh-hub-hero::before {
    content: "";
    position: absolute; right: -100px; top: -60px;
    width: 340px; height: 340px; border-radius: 50%;
    background: var(--fmh-persimmon); opacity: 0.12;
    pointer-events: none;
}
.fmh-hub-hero .fmh-wrap { position: relative; z-index: 1; }
.fmh-hub-kick {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-amber);
    margin: 0 0 16px;
}
.fmh-hub-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 50, "opsz" 144;
    font-weight: 400;
    font-size: clamp(44px, 5.5vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
    color: var(--fmh-paper);
}
.fmh-hub-hero h1 em { font-style: italic; color: var(--fmh-amber); }
.fmh-hub-intro {
    font-size: 19px;
    color: var(--fmh-navy-text);
    max-width: 620px;
    line-height: 1.5;
    margin: 0 0 32px;
}
.fmh-hub-stats {
    display: flex; gap: 48px; flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 211, 232, 0.2);
}
.fmh-hub-stat .fmh-n {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 40px; line-height: 1;
    color: var(--fmh-amber);
    letter-spacing: -0.02em;
}
.fmh-hub-stat .fmh-l {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--fmh-navy-text);
    margin-top: 8px;
    font-weight: 500;
}
.fmh-filter-bar {
    background: var(--fmh-paper-2);
    border-bottom: 1px solid var(--fmh-line);
    padding: 20px 0;
}
.fmh-filter-bar .fmh-wrap {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.fmh-filter-lbl {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-ink-soft);
}
.fmh-filter-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px 8px 6px;
    border: 1px solid var(--fmh-line);
    background: var(--fmh-paper);
    text-decoration: none;
    color: var(--fmh-ink);
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
}
.fmh-filter-chip:hover { border-color: var(--fmh-ink); background: var(--fmh-ink); color: var(--fmh-amber); }
.fmh-filter-chip.active { background: var(--fmh-ink); color: var(--fmh-amber); border-color: var(--fmh-ink); }

/* Venue list on hub pages */
.fmh-venues-list { padding: 56px 0; }
.fmh-v-row {
    display: grid;
    grid-template-columns: 80px 1fr 180px;
    padding: 24px 0;
    border-bottom: 1px solid var(--fmh-line);
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: inherit;
}
.fmh-v-row:first-child { border-top: 2px solid var(--fmh-ink); }
.fmh-v-row:hover { background: var(--fmh-paper-2); }
.fmh-v-name {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 500;
    font-size: 22px;
    margin: 0;
    color: var(--fmh-ink);
    letter-spacing: -0.01em;
}
.fmh-v-meta { font-size: 13px; color: var(--fmh-ink-soft); margin-top: 4px; }
.fmh-v-cat {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
    color: var(--fmh-persimmon);
    margin-right: 8px;
}
.fmh-v-date {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: var(--fmh-ink-soft);
    text-align: right;
}
.fmh-v-badge-col { text-align: center; }

@media (max-width: 768px) {
    .fmh-v-row { grid-template-columns: 60px 1fr; }
    .fmh-v-row .fmh-v-date { display: none; }
}

/* Pagination */
.fmh-pagination { margin: 48px 0 0; text-align: center; }
.fmh-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid var(--fmh-line);
    background: var(--fmh-paper);
    border-radius: var(--fmh-radius-sm);
    text-decoration: none;
    color: var(--fmh-ink);
    font-size: 14px;
    font-weight: 500;
}
.fmh-pagination .page-numbers.current { background: var(--fmh-ink); color: var(--fmh-amber); border-color: var(--fmh-ink); }
.fmh-pagination .page-numbers:hover:not(.current) { background: var(--fmh-paper-2); border-color: var(--fmh-ink); }

/* =========================================================================
   Venue CTA (on single-venue page, inline merchant conversion)
   ========================================================================= */
.fmh-venue-cta {
    background: var(--fmh-navy);
    color: var(--fmh-paper);
    padding: 48px;
    border-radius: var(--fmh-radius-md);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    margin: 32px 0 48px;
    position: relative;
    overflow: hidden;
}
.fmh-venue-cta::before {
    content: ""; position: absolute;
    right: -40px; top: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--fmh-persimmon); opacity: 0.15;
    pointer-events: none;
}
.fmh-venue-cta > * { position: relative; z-index: 1; }
.fmh-venue-cta-kick {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    color: var(--fmh-amber);
    margin: 0 0 12px;
}
.fmh-venue-cta h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 40;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--fmh-paper);
    line-height: 1.1;
}
.fmh-venue-cta h3 em { font-style: italic; color: var(--fmh-amber); }
.fmh-venue-cta p {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: var(--fmh-navy-text);
    margin: 0;
    line-height: 1.45;
}
.fmh-venue-cta-price {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--fmh-amber);
    margin-top: 10px;
    font-weight: 600;
}
.fmh-venue-cta-claimed {
    background: var(--fmh-green); color: var(--fmh-paper);
    padding: 18px 24px;
    border-radius: var(--fmh-radius-md);
    display: flex; align-items: center; gap: 12px;
    margin: 32px 0;
    font-weight: 500;
}
.fmh-venue-cta-claimed::before {
    content: "✓"; background: var(--fmh-amber); color: var(--fmh-green);
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.fmh-btn-claim {
    display: inline-block;
    background: var(--fmh-persimmon); color: var(--fmh-paper);
    padding: 16px 32px;
    font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
    text-decoration: none;
    border-radius: var(--fmh-radius-sm);
    white-space: nowrap;
}
.fmh-btn-claim:hover { background: var(--fmh-amber); color: var(--fmh-ink); }

@media (max-width: 768px) {
    .fmh-venue-cta { grid-template-columns: 1fr; padding: 32px; }
}

/* =========================================================================
   Source footer (on venue page)
   ========================================================================= */
.fmh-venue-source {
    padding: 24px 0 56px;
    border-top: 1px solid var(--fmh-line);
    font-size: 13px;
    color: var(--fmh-ink-soft);
    line-height: 1.6;
}
.fmh-venue-source a { color: var(--fmh-persimmon); text-decoration: none; border-bottom: 1px solid var(--fmh-persimmon); }
