:root {
    --hm-ink: #142219;
    --hm-ink-2: #26362c;
    --hm-muted: #6b776f;
    --hm-paper: #ffffff;
    --hm-cream: #f7f4ed;
    --hm-soft: #f3f6f3;
    --hm-line: #dde4df;
    --hm-coral: #ff6242;
    --hm-coral-dark: #dc4528;
    --hm-green: #1d734a;
    --hm-lime: #d7f58b;
    --hm-gold: #f3b23a;
    --hm-radius: 24px;
    --hm-shadow: 0 24px 70px rgba(20, 34, 25, .12);
    --happio-ink: var(--hm-ink);
    --happio-muted: var(--hm-muted);
    --happio-line: var(--hm-line);
    --happio-soft: var(--hm-soft);
    --happio-paper: var(--hm-paper);
    --happio-accent: var(--hm-coral);
    --happio-accent-dark: var(--hm-coral-dark);
    --happio-green: var(--hm-green);
    --happio-gold: var(--hm-gold);
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--hm-ink);
    background: var(--hm-paper);
    font-family: Raleway, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.happio-menu-open { overflow: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--hm-ink); background: var(--hm-lime); }

.happio-shell { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }
.happio-content-narrow { width: min(820px, 100%); }
.happio-skip-link {
    position: fixed;
    z-index: 1000000;
    top: 12px;
    left: 12px;
    padding: 12px 17px;
    border-radius: 12px;
    color: #fff;
    background: var(--hm-ink);
    transform: translateY(-160%);
}
.happio-skip-link:focus { transform: none; }
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header */
.happio-site-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    border-bottom: 1px solid rgba(20, 34, 25, .07);
    background: rgba(255, 255, 255, .91);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.happio-site-header.is-scrolled { box-shadow: 0 14px 38px rgba(20, 34, 25, .09); background: rgba(255, 255, 255, .97); }
.admin-bar .happio-site-header { top: 32px; }
.happio-header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; min-height: 82px; }
.happio-brand-wrap { min-width: 205px; }
.happio-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--hm-ink); }
.happio-brand-logo { display: block; width: 206px; height: 40px; }
.happio-brand.is-footer .happio-brand-logo { width: 226px; height: 44px; }
.happio-brand-name { font-size: 27px; font-weight: 800; line-height: 1; letter-spacing: -.055em; }
.happio-brand-mark { position: relative; display: flex; align-items: flex-end; gap: 3px; width: 31px; height: 31px; padding: 6px; overflow: hidden; border-radius: 10px 10px 15px 10px; background: var(--hm-coral); transform: rotate(-4deg); box-shadow: 0 7px 18px rgba(255, 98, 66, .28); }
.happio-brand-mark span { display: block; width: 5px; border-radius: 8px; background: #fff; transform: rotate(4deg); }
.happio-brand-mark span:nth-child(1) { height: 11px; }
.happio-brand-mark span:nth-child(2) { height: 19px; }
.happio-brand-mark span:nth-child(3) { height: 14px; }
.happio-custom-logo img { display: block; width: auto; max-height: 52px; }
.happio-custom-logo a { display: block; }
.happio-desktop-nav { justify-self: center; }
.happio-site-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.happio-site-menu li { position: relative; }
.happio-site-menu > li > a { display: flex; align-items: center; min-height: 43px; padding: 0 14px; border-radius: 12px; color: #3d4b42; font-size: 14px; font-weight: 600; transition: .2s ease; }
.happio-site-menu > li > a:hover, .happio-site-menu > .current-menu-item > a, .happio-site-menu > .current_page_item > a { color: var(--hm-ink); background: var(--hm-soft); }
.happio-site-menu .sub-menu { position: absolute; top: calc(100% + 9px); left: 0; min-width: 210px; margin: 0; padding: 9px; border: 1px solid var(--hm-line); border-radius: 16px; background: #fff; box-shadow: var(--hm-shadow); list-style: none; opacity: 0; visibility: hidden; transform: translateY(7px); transition: .2s ease; }
.happio-site-menu li:hover > .sub-menu, .happio-site-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.happio-site-menu .sub-menu a { display: block; padding: 9px 11px; border-radius: 9px; font-size: 14px; font-weight: 500; }
.happio-site-menu .sub-menu a:hover { background: var(--hm-soft); }
.happio-header-actions { display: flex; align-items: center; gap: 9px; }
.happio-header-search { display: inline-flex; align-items: center; gap: 7px; min-height: 43px; padding: 0 12px; border-radius: 12px; color: var(--hm-muted); font-size: 14px; font-weight: 600; }
.happio-header-search:hover { color: var(--hm-ink); background: var(--hm-soft); }
.happio-header-search svg { width: 19px; height: 19px; fill: currentColor; }
.happio-header-cta, .happio-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 13px;
    color: #fff;
    background: var(--hm-ink);
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}
.happio-header-cta:hover, .happio-mobile-cta:hover { color: #fff; background: var(--hm-green); transform: translateY(-1px); }
.happio-menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 12px; background: var(--hm-soft); cursor: pointer; }
.happio-menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 4px; background: var(--hm-ink); transition: .2s ease; }
.happio-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.happio-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.happio-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.happio-mobile-panel { position: fixed; z-index: 9989; inset: 82px 0 0; overflow-y: auto; padding: 22px 0 40px; background: #fff; border-top: 1px solid var(--hm-line); }
.happio-mobile-panel[hidden] { display: none; }
.happio-mobile-menu, .happio-mobile-panel .happio-site-menu { display: block; margin: 0 0 22px; padding: 0; list-style: none; }
.happio-mobile-menu a, .happio-mobile-panel .happio-site-menu a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--hm-line); font-size: 20px; font-weight: 700; }
.happio-mobile-menu .sub-menu { margin: 0; padding: 0 0 0 18px; list-style: none; }
.happio-mobile-menu .sub-menu a { font-size: 16px; font-weight: 500; }
.happio-mobile-cta { width: 100%; min-height: 52px; }

/* Home hero */
.happio-home { overflow: hidden; }
.happio-home-hero { position: relative; isolation: isolate; min-height: 700px; overflow: hidden; background: linear-gradient(135deg, #f9f7f1 0%, #f2f8f3 60%, #fff 100%); }
.happio-home-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .35; background-image: radial-gradient(rgba(20, 34, 25, .16) .7px, transparent .7px); background-size: 16px 16px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.happio-hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.happio-hero-orb.is-one { width: 380px; height: 380px; right: 8%; top: -150px; background: rgba(215, 245, 139, .5); }
.happio-hero-orb.is-two { width: 260px; height: 260px; left: -120px; bottom: -100px; background: rgba(255, 98, 66, .18); }
.happio-home-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: 70px; min-height: 700px; padding-block: 70px; }
.happio-home-hero-copy { position: relative; z-index: 2; max-width: 660px; }
.happio-home-hero h1 { max-width: 650px; margin: 0; font-size: clamp(58px, 7vw, 96px); font-weight: 800; line-height: .94; letter-spacing: -.065em; }
.happio-home-hero h1 em { display: inline; color: var(--hm-coral); font-family: Raleway, ui-sans-serif, system-ui, sans-serif; font-weight: 500; letter-spacing: -.055em; }
.happio-home-hero-copy > p { max-width: 590px; margin: 27px 0 28px; color: #526159; font-size: 19px; line-height: 1.65; }
.happio-home-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; max-width: 650px; padding: 8px; border: 1px solid rgba(20, 34, 25, .11); border-radius: 19px; background: rgba(255, 255, 255, .95); box-shadow: 0 25px 60px rgba(20, 34, 25, .13); }
.happio-home-search-field { display: grid; grid-template-columns: 24px minmax(0, 1fr); align-items: center; gap: 10px; min-height: 54px; padding: 0 12px; }
.happio-home-search-field svg { width: 22px; height: 22px; fill: var(--hm-muted); }
.happio-home-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--hm-ink); background: transparent; font-size: 16px; }
.happio-home-search input::placeholder { color: #879189; }
.happio-home-search button { display: inline-flex; align-items: center; gap: 16px; min-height: 54px; padding: 0 21px; border: 0; border-radius: 13px; color: #fff; background: var(--hm-coral); font-weight: 700; cursor: pointer; transition: .2s ease; }
.happio-home-search button:hover { background: var(--hm-coral-dark); transform: translateY(-1px); }
.happio-home-search button span { font-size: 20px; }
.happio-home-alt-search { max-width: 650px; margin: 11px 0 0; font-size: 13px; font-weight: 700; }
.happio-home-alt-search a { color: var(--hm-green); }
.happio-home-alt-search a:hover { color: var(--hm-coral-dark); }
.happio-hero-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; }
.happio-hero-chips > span { color: var(--hm-muted); font-weight: 500; }
.happio-hero-chips a { padding: 5px 10px; border: 1px solid rgba(20, 34, 25, .12); border-radius: 999px; background: rgba(255, 255, 255, .55); font-weight: 600; }
.happio-hero-chips a:hover { border-color: var(--hm-coral); color: var(--hm-coral-dark); background: #fff; }
.happio-hero-stats { display: flex; gap: 40px; margin-top: 35px; }
.happio-hero-stats > div { display: grid; gap: 1px; }
.happio-hero-stats strong { font-size: 21px; line-height: 1.15; }
.happio-hero-stats span { color: var(--hm-muted); font-size: 12px; font-weight: 500; }
.happio-hero-visual { position: relative; min-height: 560px; }
.happio-hero-photo { position: absolute; display: block; overflow: hidden; border: 7px solid rgba(255, 255, 255, .9); background: #dfe8e1; box-shadow: 0 24px 70px rgba(20, 34, 25, .18); transition: transform .35s ease; }
.happio-hero-photo:hover { z-index: 5; transform: translateY(-7px) rotate(0); }
.happio-hero-photo img, .happio-photo-fallback { display: block; width: 100%; height: 100%; object-fit: cover; }
.happio-photo-fallback { background: linear-gradient(135deg, #d9e9d9, #f6c8ba); }
.happio-hero-photo.is-1 { inset: 28px 75px 92px 25px; z-index: 3; border-radius: 38px 38px 96px 38px; transform: rotate(1.7deg); }
.happio-hero-photo.is-2 { z-index: 2; width: 210px; height: 245px; right: -8px; top: 0; border-radius: 90px 28px 28px 28px; transform: rotate(5deg); }
.happio-hero-photo.is-3 { z-index: 4; width: 235px; height: 205px; right: 4px; bottom: 15px; border-radius: 26px 26px 26px 80px; transform: rotate(-4deg); }
.happio-photo-label { position: absolute; right: 15px; bottom: 15px; left: 15px; display: grid; padding: 12px 14px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, rgba(10, 19, 13, .84), rgba(10, 19, 13, .52)); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
.happio-photo-label small { color: rgba(255, 255, 255, .76); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.happio-photo-label strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.happio-hero-photo.is-1 .happio-photo-label { right: 25px; bottom: 25px; left: 25px; padding: 15px 17px; }
.happio-hero-photo.is-1 .happio-photo-label strong { font-size: 18px; }
.happio-floating-note { position: absolute; z-index: 6; left: -12px; bottom: 52px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(20, 34, 25, .08); border-radius: 16px; background: rgba(255, 255, 255, .96); box-shadow: 0 18px 42px rgba(20, 34, 25, .14); }
.happio-floating-note > span { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: #fff; background: var(--hm-green); }
.happio-floating-note div { display: grid; }
.happio-floating-note strong { font-size: 13px; }
.happio-floating-note small { color: var(--hm-muted); font-size: 11px; }
.happio-hero-plate { position: absolute; inset: 45px 40px; display: grid; place-items: center; overflow: hidden; border: 8px solid #fff; border-radius: 50% 50% 35% 50%; background: radial-gradient(circle, #fff 0 46%, #e8ece6 47% 56%, #fff 57%); box-shadow: var(--hm-shadow); transform: rotate(-3deg); }
.happio-hero-plate b { position: relative; z-index: 2; display: grid; place-items: center; width: 150px; height: 150px; border-radius: 50%; color: #fff; background: var(--hm-coral); font-family: Raleway, ui-sans-serif, system-ui, sans-serif; font-size: 100px; }
.happio-hero-plate span { position: absolute; border-radius: 50%; }
.happio-hero-plate .is-tomato { width: 110px; height: 110px; top: 90px; left: 70px; background: #ff755b; }
.happio-hero-plate .is-leaf { width: 140px; height: 55px; right: 52px; bottom: 110px; border-radius: 100% 0 100% 0; background: #5da672; transform: rotate(-20deg); }
.happio-hero-plate .is-pasta { width: 145px; height: 145px; right: 70px; top: 65px; border: 20px dotted #e5b851; }

/* Home common */
.happio-home-section { padding: 104px 0; }
.happio-home-section.is-soft { background: var(--hm-soft); }
.happio-home-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 38px; }
.happio-home-heading > div { max-width: 780px; }
.happio-home-heading > div > span, .happio-how-copy > span { display: block; margin-bottom: 7px; color: var(--hm-coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.happio-home-heading h2, .happio-how-copy h2 { margin: 0; font-size: clamp(38px, 5vw, 61px); font-weight: 800; line-height: 1.02; letter-spacing: -.055em; }
.happio-home-heading p { max-width: 690px; margin: 13px 0 0; color: var(--hm-muted); font-size: 17px; }
.happio-home-heading > a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid var(--hm-ink); font-size: 14px; font-weight: 700; }
.happio-home-heading > a b { color: var(--hm-coral); font-size: 20px; }
.happio-home-heading > a:hover { color: var(--hm-coral-dark); border-color: var(--hm-coral); }

.happio-cravings { padding-top: 82px; padding-bottom: 82px; }
.happio-cuisine-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 13px; }
.happio-cuisine-card { display: grid; min-height: 158px; padding: 18px; border: 1px solid var(--hm-line); border-radius: 20px; background: #fff; box-shadow: 0 7px 24px rgba(20, 34, 25, .035); transition: .25s ease; }
.happio-cuisine-card:hover { border-color: rgba(255, 98, 66, .4); box-shadow: 0 20px 45px rgba(20, 34, 25, .1); transform: translateY(-5px); }
.happio-cuisine-card > span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 21px; border-radius: 17px; background: var(--hm-cream); font-size: 28px; }
.happio-cuisine-card strong { align-self: end; font-size: 16px; }
.happio-cuisine-card small { color: var(--hm-muted); font-size: 11px; }

.happio-home-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.happio-home-card-grid .happio-restaurant-card { border: 0; border-radius: 23px; box-shadow: 0 13px 38px rgba(20, 34, 25, .08); }
.happio-home-card-grid .happio-card-image { aspect-ratio: 4 / 3; }
.happio-home-card-grid .happio-card-body { padding: 18px; }
.happio-home-card-grid .happio-card-body h3 { font-size: 20px; }
.happio-simple-card { overflow: hidden; border-radius: 22px; background: #fff; box-shadow: var(--hm-shadow); }
.happio-simple-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.happio-simple-card h3 { margin: 0; padding: 18px; }

.happio-city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.happio-city-card { position: relative; isolation: isolate; display: flex; min-height: 225px; overflow: hidden; padding: 25px; border-radius: 25px; color: #fff; background: #214b35; transition: .25s ease; }
.happio-city-card:hover { color: #fff; transform: translateY(-5px); box-shadow: 0 22px 50px rgba(20, 34, 25, .18); }
.happio-city-card::before, .happio-city-card::after, .happio-city-card i { content: ""; position: absolute; z-index: -1; border-radius: 50%; }
.happio-city-card::before { width: 190px; height: 190px; right: -60px; top: -60px; background: rgba(255, 255, 255, .1); }
.happio-city-card::after { width: 95px; height: 95px; right: 32px; bottom: 25px; border: 20px solid rgba(255, 255, 255, .09); }
.happio-city-card i { width: 60px; height: 120px; right: 40px; top: 40px; border-radius: 100% 0 100% 0; background: rgba(215, 245, 139, .48); transform: rotate(35deg); }
.happio-city-card.is-2 { background: #d85b40; }
.happio-city-card.is-2 i { background: rgba(255, 225, 164, .42); }
.happio-city-card.is-3 { background: #2e4568; }
.happio-city-card.is-3 i { background: rgba(137, 204, 255, .3); }
.happio-city-card.is-4 { background: #66513a; }
.happio-city-card.is-4 i { background: rgba(249, 205, 133, .35); }
.happio-city-card > div { align-self: flex-end; }
.happio-city-card span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.happio-city-card h3 { margin: 4px 0 11px; font-size: 30px; line-height: 1.05; letter-spacing: -.04em; }
.happio-city-card b { font-size: 12px; }

.happio-how { color: #fff; background: var(--hm-ink); }
.happio-how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.happio-how-copy > span { color: var(--hm-lime); }
.happio-how-copy p { max-width: 510px; margin: 24px 0 30px; color: rgba(255, 255, 255, .67); font-size: 18px; }
.happio-home-button, .happio-secondary-button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 51px; padding: 0 20px; border-radius: 14px; background: var(--hm-coral); color: #fff; font-weight: 700; transition: .2s ease; }
.happio-home-button:hover { color: #fff; background: var(--hm-coral-dark); transform: translateY(-2px); }
.happio-how-copy .happio-secondary-button { margin-left: 8px; border: 1px solid rgba(255, 255, 255, .28); background: transparent; }
.happio-how-copy .happio-secondary-button:hover { color: var(--hm-ink); background: #fff; transform: translateY(-2px); }
.happio-how-steps { display: grid; gap: 13px; }
.happio-how-steps article { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 18px; padding: 22px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.happio-how-steps article > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: var(--hm-ink); background: var(--hm-lime); font-size: 13px; font-weight: 800; }
.happio-how-steps h3 { margin: 0 0 3px; font-size: 20px; }
.happio-how-steps p { margin: 0; color: rgba(255, 255, 255, .62); }

.happio-province-strip { padding: 90px 0; color: #fff; background: #1e3f2e; }
.happio-home-heading.is-light > div > span { color: var(--hm-lime); }
.happio-home-heading.is-light h2 { color: #fff; }
.happio-province-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.happio-province-links a { display: flex; align-items: center; justify-content: space-between; gap: 13px; min-height: 57px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 14px; background: rgba(255, 255, 255, .055); font-weight: 600; transition: .2s ease; }
.happio-province-links a:hover { color: var(--hm-ink); background: var(--hm-lime); border-color: var(--hm-lime); transform: translateY(-2px); }
.happio-province-links small { display: grid; place-items: center; min-width: 30px; height: 30px; padding-inline: 6px; border-radius: 10px; background: rgba(255, 255, 255, .11); font-size: 11px; }
.happio-province-links a:hover small { background: rgba(20, 34, 25, .1); }
.happio-front-content { border-top: 1px solid var(--hm-line); }

/* Generic content */
.happio-generic-main { min-height: 65vh; padding: 80px 0 110px; background: linear-gradient(180deg, var(--hm-soft), #fff 260px); }
.happio-generic-header { margin-bottom: 42px; }
.happio-generic-header > span { display: block; margin-bottom: 7px; color: var(--hm-coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.happio-generic-header h1 { margin: 0; font-size: clamp(45px, 7vw, 78px); line-height: 1; letter-spacing: -.06em; }
.happio-generic-header > p, .archive-description { max-width: 680px; margin: 16px 0 0; color: var(--hm-muted); font-size: 18px; }
.happio-generic-featured { margin: 0 0 42px; overflow: hidden; border-radius: 27px; box-shadow: var(--hm-shadow); }
.happio-generic-featured img { display: block; width: 100%; }
.happio-entry-content { color: #344139; font-size: 18px; }
.happio-entry-content > *:first-child { margin-top: 0; }
.happio-entry-content h2, .happio-entry-content h3 { margin-top: 1.6em; color: var(--hm-ink); line-height: 1.2; letter-spacing: -.03em; }
.happio-entry-content a { color: var(--hm-coral-dark); text-decoration: underline; text-underline-offset: 3px; }
.happio-entry-content img { border-radius: 18px; }
.happio-entry-content blockquote { margin: 30px 0; padding: 22px 25px; border-left: 4px solid var(--hm-coral); border-radius: 0 17px 17px 0; background: var(--hm-cream); }
.happio-archive-header { max-width: 900px; }
.happio-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.happio-post-card { overflow: hidden; border: 1px solid var(--hm-line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(20, 34, 25, .06); }
.happio-post-image { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--hm-soft); }
.happio-post-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.happio-post-card:hover img { transform: scale(1.04); }
.happio-post-card > div { padding: 20px; }
.happio-post-card > div > span { color: var(--hm-coral-dark); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.happio-post-card h2 { margin: 6px 0 9px; font-size: 24px; line-height: 1.2; letter-spacing: -.03em; }
.happio-post-card p { color: var(--hm-muted); }
.happio-read-more { color: var(--hm-coral-dark); font-weight: 700; }
.happio-pagination-wrap { margin-top: 40px; }
.happio-no-content { padding: 55px; border: 1px dashed #bfc9c1; border-radius: 22px; text-align: center; background: #fff; }
.happio-error-page { display: grid; place-items: center; min-height: 70vh; padding: 80px 0; background: radial-gradient(circle at 50% 20%, rgba(215, 245, 139, .5), transparent 30%), var(--hm-soft); }
.happio-error-card { max-width: 750px; margin: auto; text-align: center; }
.happio-error-card > span { display: inline-grid; place-items: center; min-width: 90px; height: 47px; margin-bottom: 24px; border-radius: 999px; color: #fff; background: var(--hm-coral); font-weight: 800; }
.happio-error-card h1 { margin: 0; font-size: clamp(52px, 8vw, 92px); line-height: .95; letter-spacing: -.065em; }
.happio-error-card p { color: var(--hm-muted); font-size: 18px; }
.happio-error-card > div { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.happio-secondary-button { color: var(--hm-ink); background: #fff; border: 1px solid var(--hm-line); }
.happio-secondary-button:hover { background: var(--hm-cream); }

/* Plugin presentation refinements */
.happio-main { font-family: inherit; }
.happio-main .happio-container { width: min(1320px, calc(100% - 48px)); }
.happio-restaurant-page { padding-top: 29px; }
.happio-gallery-grid { border-radius: 30px; box-shadow: 0 18px 50px rgba(20, 34, 25, .08); }
.happio-restaurant-heading h1 { font-weight: 800; letter-spacing: -.055em; }
#google-reviews .happio-review-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.happio-review-contact-fields { grid-template-columns: 1fr; }
.happio-button { border-radius: 14px; }
.happio-button.is-primary, .happio-button-primary { background: var(--hm-coral); border-color: var(--hm-coral); }
.happio-sidebar-card { border-radius: 24px; box-shadow: 0 25px 60px rgba(20, 34, 25, .1); }
.happio-restaurant-card { border-radius: 22px; }
.happio-directory-hero { position: relative; overflow: hidden; padding: 76px 0 50px; background: linear-gradient(135deg, #f7f4ed, #f1f8f2); }
.happio-directory-hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -80px; top: -210px; border-radius: 50%; background: rgba(215, 245, 139, .45); }
.happio-directory-hero-copy { position: relative; z-index: 1; }
.happio-directory-hero h1 { font-weight: 800; letter-spacing: -.06em; }
.happio-directory-filters { border-radius: 20px; box-shadow: 0 25px 60px rgba(20, 34, 25, .1); }
.happio-directory-content { padding-top: 38px; }
.happio-directory-map { border-radius: 25px; box-shadow: 0 20px 50px rgba(20, 34, 25, .1); }
.happio-review-form-card { border-radius: 24px; }
.happio-link-grid a { border-radius: 15px; }
.happio-lightbox { z-index: 99999; }

/* City pages */
.happio-directory-hero.is-city { padding: 42px 0 46px; background: radial-gradient(circle at 86% 4%, rgba(215, 245, 139, .62), transparent 27%), linear-gradient(135deg, #f7f4ed 0%, #eef7f0 68%, #fff 100%); }
.happio-directory-hero.is-city .happio-container { position: relative; z-index: 1; }
.happio-directory-hero.is-city::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(rgba(20, 34, 25, .18) .7px, transparent .7px); background-size: 17px 17px; mask-image: linear-gradient(90deg, #000, transparent 68%); }
.happio-city-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr); align-items: center; gap: 72px; }
.happio-city-page .happio-directory-hero-copy { max-width: 760px; }
.happio-city-page .happio-directory-hero h1 { max-width: 760px; font-size: clamp(54px, 7vw, 88px); line-height: .96; }
.happio-city-page .happio-directory-hero-copy > p { max-width: 660px; margin-top: 18px; font-size: 19px; }
.happio-city-hero-stats { display: flex; gap: 42px; margin-top: 30px; }
.happio-city-hero-stats > div { display: grid; gap: 2px; }
.happio-city-hero-stats strong { color: var(--hm-ink); font-size: 22px; line-height: 1.1; }
.happio-city-hero-stats span { color: var(--hm-muted); font-size: 12px; font-weight: 500; }
.happio-city-hero-visual { position: relative; min-height: 355px; overflow: hidden; border: 8px solid rgba(255, 255, 255, .86); border-radius: 38px 38px 92px 38px; background: #dfe9e1; box-shadow: 0 30px 80px rgba(20, 34, 25, .18); transform: rotate(1.5deg); }
.happio-city-hero-visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8, 18, 11, .78)); }
.happio-city-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.happio-city-hero-visual > div { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: grid; color: #fff; }
.happio-city-hero-visual > div strong { font-size: 18px; }
.happio-city-hero-visual > div small { color: rgba(255, 255, 255, .72); }
.happio-city-hero-visual.has-no-image { display: grid; place-items: center; background: linear-gradient(145deg, var(--hm-green), var(--hm-ink)); }
.happio-city-hero-visual.has-no-image > span { position: relative; z-index: 1; color: var(--hm-lime); }
.happio-city-hero-visual.has-no-image > span svg { width: 90px; height: 90px; fill: currentColor; }
.happio-city-page .happio-directory-filters { position: relative; z-index: 3; margin-top: 36px; }
.happio-city-intro { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 70px; margin: 18px 0 70px; padding: 42px 0 60px; border-bottom: 1px solid var(--hm-line); }
.happio-city-intro h2 { max-width: 500px; margin: 0; font-size: clamp(36px, 4.5vw, 55px); line-height: 1.03; letter-spacing: -.045em; }
.happio-city-intro-copy { max-width: 720px; color: var(--hm-muted); font-size: 17px; }
.happio-city-intro-copy p { margin: 0 0 15px; }
.happio-directory-results-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.happio-directory-results-heading .happio-section-heading { margin: 0; }
.happio-directory-results-heading .happio-section-heading h2 { font-size: clamp(31px, 4vw, 46px); }
.happio-directory-results-heading .happio-directory-toolbar { flex: 0 0 auto; margin: 0; }
.happio-city-page .happio-directory-map-wrap { margin: 0 0 36px; padding: 8px; border: 1px solid var(--hm-line); border-radius: 30px; background: #fff; box-shadow: 0 24px 70px rgba(20, 34, 25, .11); }
.happio-city-page .happio-directory-map { border-radius: 22px; box-shadow: none; }
.happio-city-faq { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); gap: 70px; margin-top: 90px; padding: 64px; border-radius: 32px; background: var(--hm-soft); }
.happio-city-faq .happio-section-heading { margin: 0; }
.happio-city-faq .happio-section-heading h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.04; }
.happio-city-faq .happio-accordion { border-color: rgba(20, 34, 25, .13); }
.happio-city-faq .happio-accordion details { border-color: rgba(20, 34, 25, .13); }
.happio-city-faq .happio-accordion summary { padding: 20px 0; font-size: 16px; }
.happio-city-cuisine-links .happio-link-grid a:hover { border-color: var(--hm-coral); }
.happio-city-nearby-links { padding: 50px; border: 0; border-radius: 30px; color: #fff; background: var(--hm-ink); }
.happio-city-nearby-links .happio-section-heading > span { color: var(--hm-lime); }
.happio-city-nearby-links .happio-link-grid a { border-color: rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .055); }
.happio-city-nearby-links .happio-link-grid a:hover { border-color: var(--hm-lime); background: rgba(255, 255, 255, .1); }
.happio-city-nearby-links .happio-link-grid small { color: rgba(255, 255, 255, .52); }
.happio-city-data-note { max-width: 900px; }

/* Footer */
.happio-site-footer { padding: 82px 0 24px; color: #fff; background: #101b14; }
.happio-footer-top { display: grid; grid-template-columns: 1.2fr .65fr .65fr 1fr; gap: 55px; align-items: start; }
.happio-brand.is-footer { color: #fff; }
.happio-footer-brand p { max-width: 365px; margin: 20px 0 0; color: rgba(255, 255, 255, .58); }
.happio-footer-column { display: grid; gap: 8px; }
.happio-footer-column h2 { margin: 4px 0 11px; color: rgba(255, 255, 255, .45); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.happio-footer-column a { color: rgba(255, 255, 255, .78); font-size: 14px; font-weight: 500; }
.happio-footer-column a:hover { color: var(--hm-lime); }
.happio-footer-menu { display: contents; margin: 0; padding: 0; list-style: none; }
.happio-footer-card { padding: 24px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 22px; background: rgba(255, 255, 255, .055); }
.happio-footer-card > span { color: var(--hm-lime); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.happio-footer-card h2 { margin: 7px 0; font-size: 21px; line-height: 1.2; }
.happio-footer-card p { margin: 0 0 17px; color: rgba(255, 255, 255, .56); font-size: 13px; }
.happio-footer-card a { display: inline-flex; gap: 9px; color: var(--hm-lime); font-size: 13px; font-weight: 700; }
.happio-footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .39); font-size: 11px; }
.happio-footer-bottom p { margin: 0; }

@media (max-width: 1180px) {
    .happio-desktop-nav { display: none; }
    .happio-header-inner { grid-template-columns: auto 1fr; }
    .happio-header-actions { justify-self: end; }
    .happio-menu-toggle { display: block; }
    .happio-home-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 35px; }
    .happio-home-hero h1 { font-size: clamp(55px, 7vw, 78px); }
    .happio-cuisine-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .happio-home-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .happio-home-card-grid .happio-restaurant-card:nth-child(n+7) { display: none; }
    .happio-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .happio-footer-top { grid-template-columns: 1.2fr .7fr .7fr; }
    .happio-footer-card { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .admin-bar .happio-site-header { top: 46px; }
    .happio-home-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
    .happio-home-hero-copy { max-width: 760px; }
    .happio-home-hero h1 { max-width: 730px; font-size: clamp(60px, 11vw, 90px); }
    .happio-hero-visual { width: min(720px, 100%); min-height: 540px; margin: 0 auto; }
    .happio-home-section { padding: 80px 0; }
    .happio-home-heading { align-items: flex-start; }
    .happio-home-heading h2, .happio-how-copy h2 { font-size: 47px; }
    .happio-cuisine-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .happio-home-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .happio-home-card-grid .happio-restaurant-card:nth-child(n+7) { display: block; }
    .happio-how-grid { grid-template-columns: 1fr; gap: 48px; }
    .happio-province-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .happio-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .happio-city-hero-grid { grid-template-columns: 1fr; gap: 35px; }
    .happio-city-hero-visual { min-height: 390px; }
    .happio-city-intro { grid-template-columns: 1fr; gap: 26px; }
    .happio-city-faq { grid-template-columns: 1fr; gap: 28px; padding: 44px; }
    .happio-footer-top { grid-template-columns: 1fr 1fr; }
    .happio-footer-brand { grid-column: 1 / -1; }
    .happio-footer-card { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .happio-shell, .happio-main .happio-container { width: min(100% - 28px, 1320px); }
    .happio-header-inner { min-height: 70px; gap: 15px; }
    .happio-header-search, .happio-header-cta { display: none; }
    .happio-mobile-panel { top: 70px; }
    .happio-brand-name { font-size: 24px; }
    .happio-brand-mark { width: 29px; height: 29px; }
    .happio-directory-hero.is-city { padding-top: 28px; }
    .happio-city-page .happio-directory-hero h1 { font-size: clamp(48px, 15vw, 68px); }
    .happio-city-hero-stats { gap: 19px; justify-content: space-between; }
    .happio-city-hero-stats strong { font-size: 18px; }
    .happio-city-hero-visual { min-height: 300px; border-radius: 28px 28px 65px 28px; }
    .happio-city-intro { margin-bottom: 48px; padding-bottom: 44px; }
    .happio-directory-results-heading { display: block; }
    .happio-directory-results-heading .happio-directory-toolbar { margin-top: 18px; }
    .happio-city-page .happio-directory-map { height: 390px; }
    .happio-city-faq { margin-top: 65px; padding: 28px 22px; border-radius: 24px; }
    .happio-city-nearby-links { padding: 30px 22px; }
    .happio-home-hero { min-height: 0; }
    .happio-home-hero-grid { gap: 35px; padding: 50px 0 55px; }
    .happio-home-hero h1 { font-size: clamp(50px, 16vw, 72px); }
    .happio-home-hero-copy > p { margin: 20px 0; font-size: 16px; }
    .happio-home-search { grid-template-columns: 1fr; padding: 7px; }
    .happio-home-search button { width: 100%; }
    .happio-hero-chips { display: none; }
    .happio-hero-stats { gap: 20px; margin-top: 25px; }
    .happio-hero-stats strong { font-size: 17px; }
    .happio-hero-visual { min-height: 380px; }
    .happio-hero-photo.is-1 { inset: 12px 45px 50px 5px; border-radius: 25px 25px 60px 25px; }
    .happio-hero-photo.is-2 { width: 135px; height: 155px; right: -4px; }
    .happio-hero-photo.is-3 { width: 145px; height: 130px; right: 0; bottom: 6px; }
    .happio-photo-label { right: 8px; bottom: 8px; left: 8px; padding: 8px; }
    .happio-photo-label strong { font-size: 11px; }
    .happio-hero-photo.is-1 .happio-photo-label { right: 12px; bottom: 12px; left: 12px; padding: 10px; }
    .happio-hero-photo.is-1 .happio-photo-label strong { font-size: 13px; }
    .happio-floating-note { left: 0; bottom: 25px; }
    .happio-home-section, .happio-cravings { padding: 62px 0; }
    .happio-home-heading { display: block; margin-bottom: 27px; }
    .happio-home-heading h2, .happio-how-copy h2 { font-size: 39px; }
    .happio-home-heading p { font-size: 15px; }
    .happio-home-heading > a { margin-top: 18px; }
    .happio-cuisine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .happio-cuisine-card { min-height: 137px; padding: 15px; }
    .happio-cuisine-card > span { width: 46px; height: 46px; margin-bottom: 15px; font-size: 24px; }
    .happio-home-card-grid, .happio-city-grid, .happio-province-links, .happio-post-grid { grid-template-columns: 1fr; }
    .happio-city-card { min-height: 190px; }
    .happio-how-steps article { grid-template-columns: 46px minmax(0, 1fr); padding: 17px; }
    .happio-how-steps article > span { width: 44px; height: 44px; }
    .happio-province-strip { padding: 65px 0; }
    .happio-generic-main { padding: 55px 0 75px; }
    .happio-generic-header h1 { font-size: 48px; }
    .happio-entry-content { font-size: 16px; }
    .happio-error-card > div { display: grid; }
    .happio-footer-top { grid-template-columns: 1fr; gap: 38px; }
    .happio-footer-brand { grid-column: auto; }
    .happio-footer-card { grid-column: auto; }
    .happio-footer-bottom { display: grid; margin-top: 45px; }
}

@media (max-width: 420px) {
    .happio-home-hero h1 { font-size: 49px; }
    .happio-hero-stats > div:last-child { display: none; }
    .happio-hero-visual { min-height: 330px; }
    .happio-floating-note { padding: 10px; }
    .happio-floating-note > span { width: 34px; height: 34px; }
}
.happio-home-search:has(select){grid-template-columns:minmax(0,1fr) auto auto}.happio-home-search select{border:0;border-left:1px solid rgba(24,43,37,.12);background:#fff;padding:0 1rem;font:inherit;color:#344054}.happio-city-card-links{display:flex!important;gap:.5rem;position:relative;z-index:2}.happio-city-card-links a{display:inline-flex;padding:.5rem .7rem;border-radius:999px;background:rgba(255,255,255,.82);color:#182b25;text-decoration:none;font-size:.82rem;font-weight:700}@media(max-width:680px){.happio-home-search:has(select){grid-template-columns:1fr}.happio-home-search select{min-height:46px;border-left:0;border-top:1px solid rgba(24,43,37,.12)}}
