/* BASE: design tokens, resets, typography, buttons, forms, and shared cards. */
:root {
    --bg: #f7f5ef;
    --surface: #fffdf8;
    --paper: #ffffff;
    --ink: #232824;
    --muted: #687068;
    --soft: #8a7462;
    --line: #e4ddd1;
    --accent: #8c3f36;
    --accent-dark: #5f2e2a;
    --logo-pink: #ec5aa0;
    --logo-soft: #fff4f9;
    --gold: #a87a2c;
    --green: #2f6650;
    --green-dark: #204b3b;
    --mist: #eef4ef;
    --warm: #fbf2e7;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fbfaf6 0%, var(--bg) 46%, #f3f1ea 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(35, 40, 36, 0.18);
    transform: translateY(-150%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-brand__mark {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 40px;
    overflow: hidden;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(236, 90, 160, 0.18), 0 6px 18px rgba(47, 102, 80, 0.12);
}

.site-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb--light {
    color: var(--muted);
}

.breadcrumb--light a::after {
    color: var(--line);
}

.site-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.site-menu__group {
    position: relative;
}

.site-menu__group-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
    cursor: default;
}

.site-menu__group-label::after {
    content: "▾";
    color: var(--accent);
    font-size: 11px;
}

.site-submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    display: grid;
    min-width: 250px;
    gap: 4px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.site-menu__group:hover .site-submenu,
.site-menu__group:focus-within .site-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-submenu a {
    display: block;
    padding: 9px 10px;
    color: var(--ink);
    border-radius: 8px;
}

.site-submenu a:hover,
.site-submenu a:focus {
    background: var(--bg);
}

.menu-toggle {
    display: none;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-weight: 800;
}

.menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

/* HOME: hero, reader entry points, area cards, article groups, and partner section. */
.hero {
    display: grid;
    min-height: 72vh;
    align-items: end;
    padding: 56px 18px 34px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(31, 36, 28, 0.82), rgba(31, 36, 28, 0.36) 46%, rgba(31, 36, 28, 0.12)),
        linear-gradient(180deg, rgba(34, 20, 12, 0.08), rgba(34, 20, 12, 0.62)),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
}

.hero--food {
    min-height: 76vh;
}

.hero__content,
.section-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero h1,
.content-section h2,
.partner-section h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.12;
}

.hero h1 {
    max-width: 720px;
    font-size: 64px;
}

.hero__text {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 18px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-plan-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(760px, 100%);
    margin-top: 18px;
}

.hero-plan-strip a {
    display: grid;
    gap: 2px;
    min-height: 74px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
}

.hero-plan-strip strong {
    font-size: 16px;
    line-height: 1.25;
}

.hero-plan-strip span {
    color: var(--muted);
    font-size: 13px;
}

.search-panel {
    width: min(680px, 100%);
    margin-top: 26px;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
}

.search-panel label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.search-panel__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.search-results-section {
    background: var(--mist);
    border-bottom: 1px solid var(--line);
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
}

.btn-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.btn-secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.button-secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.btn-ghost {
    color: var(--accent-dark);
    background: rgba(255, 253, 248, 0.74);
    border-color: var(--line);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.section-lead {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
}

.category-list-status {
    display: inline-flex;
    margin: 14px 0 0;
    padding: 7px 10px;
    color: var(--green);
    background: rgba(237, 243, 237, 0.92);
    border: 1px solid rgba(36, 107, 80, 0.16);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.content-section,
.partner-section {
    padding: 54px 18px;
}

.content-section--white {
    background: var(--surface);
}

.content-section--white .restaurant-card,
.content-section--white .feature-grid a {
    background: var(--paper);
}

.content-section h2,
.partner-section h2 {
    max-width: 720px;
    font-size: 42px;
}

.plan-grid,
.feature-grid,
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.area-link {
    display: grid;
    min-height: 70px;
    place-items: center;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.category-grid a {
    padding: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-grid h3 {
    margin: 0 0 8px;
    line-height: 1.25;
}

.category-grid p {
    margin: 0;
    color: var(--muted);
}

.category-grid span {
    display: inline-flex;
    margin-top: 14px;
    padding: 3px 8px;
    color: var(--green);
    background: var(--mist);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.tag-advice {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
    padding: 14px;
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.tag-advice strong {
    margin-right: 4px;
}

.tag-advice span {
    padding: 5px 10px;
    color: var(--green);
    background: var(--mist);
    border: 1px solid rgba(36, 107, 80, 0.16);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.seo-reference-library {
    display: grid;
    gap: 28px;
    margin-top: 26px;
}

.seo-reference-group {
    display: grid;
    gap: 14px;
}

.seo-reference-group > div:first-child {
    max-width: 760px;
}

.seo-reference-group h3 {
    margin: 0 0 4px;
    font-size: 24px;
    line-height: 1.25;
}

.seo-reference-group p {
    margin: 0;
    color: var(--muted);
}

.seo-reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.seo-reference-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.seo-reference-card img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.seo-reference-card div {
    padding: 14px;
}

.seo-reference-card span {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.seo-reference-card h3 {
    margin: 4px 0 6px;
    font-size: 18px;
}

.seo-reference-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.text-link {
    color: var(--accent);
    font-weight: 800;
}

.plan-card,
.feature-grid a,
.restaurant-card,
.post-card {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.restaurant-card {
    overflow: hidden;
    padding: 0;
}

.restaurant-card__media {
    min-height: 190px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
}

.restaurant-card__media img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.restaurant-card__media--red {
    background: linear-gradient(135deg, #b9312f, #d79a2b);
}

.restaurant-card__media--green {
    background: linear-gradient(135deg, #246b50, #8fbf8f);
}

.restaurant-card__media--gold {
    background: linear-gradient(135deg, #d79a2b, #f5efe2);
}

.restaurant-card__body {
    padding: 18px;
}

.restaurant-card h3 {
    margin: 4px 0 8px;
    font-size: 21px;
    line-height: 1.25;
}

.restaurant-card h2 {
    margin: 4px 0 8px;
    font-size: 21px;
    line-height: 1.25;
}

.restaurant-card p {
    margin: 0;
    color: var(--muted);
}

.restaurant-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 14px 0 0;
}

.restaurant-card dl div {
    padding: 8px;
    background: rgba(251, 242, 231, 0.86);
    border-radius: 8px;
}

.restaurant-card dt {
    color: var(--muted);
    font-size: 12px;
}

.restaurant-card dd {
    margin: 0;
    font-weight: 800;
}

.tag-line {
    color: var(--green) !important;
    font-size: 13px;
    font-weight: 800;
}

.plan-card--highlight {
    border-color: rgba(185, 49, 47, 0.42);
    box-shadow: 0 16px 40px rgba(89, 50, 20, 0.08);
}

.plan-card__label {
    margin: 0;
    color: var(--green);
    font-weight: 800;
}

.plan-card h3 {
    margin: 6px 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.plan-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.plan-card--dark {
    color: var(--ink);
    background: var(--white);
    border-color: rgba(36, 107, 80, 0.18);
}

.plan-card--dark p,
.plan-card--dark .plan-card__label {
    color: var(--muted);
}

.partner-section {
    color: var(--ink);
    background: linear-gradient(180deg, #eef4ef, #f8f4ec);
    border-top: 1px solid rgba(36, 107, 80, 0.16);
    border-bottom: 1px solid rgba(36, 107, 80, 0.16);
}

.partner-section .eyebrow {
    color: var(--green);
}

.partner-section .btn-ghost {
    background: transparent;
}

.subsidy-page {
    background: var(--bg);
}

/* PARTNER PAGES: subsidy and revenue-share landing page sections. */
.subsidy-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(31, 59, 48, 0.9), rgba(31, 59, 48, 0.58) 48%, rgba(31, 59, 48, 0.24)),
        linear-gradient(180deg, rgba(32, 33, 36, 0.04), rgba(32, 33, 36, 0.54)),
        image-set(url("../images/subsidy-readable-food.webp") type("image/webp"), url("../images/subsidy-readable-food.png") type("image/png")) center / cover no-repeat;
}

.subsidy-hero .eyebrow {
    color: #f1c66d;
}

.subsidy-hero .lead-text {
    color: rgba(255, 255, 255, 0.88);
}

.revenue-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(72, 45, 26, 0.9), rgba(36, 107, 80, 0.54) 48%, rgba(36, 107, 80, 0.18)),
        linear-gradient(180deg, rgba(32, 33, 36, 0.04), rgba(32, 33, 36, 0.56)),
        image-set(url("../images/subsidy-readable-food.webp") type("image/webp"), url("../images/subsidy-readable-food.png") type("image/png")) center / cover no-repeat;
}

.revenue-hero .eyebrow {
    color: #f1c66d;
}

.revenue-hero .lead-text {
    color: rgba(255, 255, 255, 0.88);
}

.revenue-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: 56px;
    line-height: 1.06;
}

.revenue-summary-card strong {
    color: var(--accent-dark);
    font-size: 64px;
}

.subsidy-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 28px;
    align-items: end;
}

.subsidy-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: 56px;
    line-height: 1.06;
}

.subsidy-summary-card {
    padding: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(20, 28, 23, 0.18);
}

.subsidy-summary-card span,
.subsidy-summary-card strong,
.subsidy-summary-card p {
    display: block;
}

.subsidy-summary-card span {
    color: var(--green);
    font-weight: 900;
}

.subsidy-summary-card strong {
    margin: 4px 0 8px;
    font-size: 42px;
    line-height: 1.05;
}

.subsidy-summary-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.subsidy-reading {
    display: grid;
    max-width: 900px;
    gap: 36px;
}

.subsidy-reading section {
    display: grid;
    gap: 12px;
}

.subsidy-reading h2 {
    margin: 0;
    max-width: 780px;
    font-size: 40px;
    line-height: 1.18;
}

.subsidy-reading p {
    margin: 0;
    max-width: 780px;
    color: #4f4a43;
    font-size: 17px;
    line-height: 1.9;
}

.subsidy-steps,
.subsidy-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.application-panel {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(89, 50, 20, 0.06);
}

.application-panel > p {
    max-width: 760px;
}

.compact-application-form {
    margin-top: 14px;
    box-shadow: none;
}

.application-result {
    scroll-margin-top: 92px;
}

.application-preview-card {
    background: #fffaf4;
    border-color: #ead8b8;
}

.subsidy-steps article,
.subsidy-fit-grid article,
.subsidy-example {
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.subsidy-steps strong,
.subsidy-steps span,
.subsidy-fit-grid strong {
    display: block;
}

.subsidy-steps strong,
.subsidy-fit-grid strong,
.subsidy-example strong {
    color: var(--ink);
    font-size: 17px;
}

.subsidy-steps span,
.subsidy-fit-grid p,
.subsidy-example p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.product-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.subsidy-cta {
    display: grid;
    gap: 14px;
}

.subsidy-cta h2 {
    margin: 0;
    max-width: 760px;
    font-size: 44px;
    line-height: 1.12;
}

.video-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.video-feature__copy {
    display: grid;
    gap: 12px;
}

.video-feature__copy h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
}

.video-feature__copy p {
    margin: 0;
}

.video-feature__copy .btn {
    justify-self: start;
}

.video-feature__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #111;
}

.video-feature__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 22px;
    color: var(--white);
    text-align: center;
    background-color: #111;
    background-position: center;
    background-size: cover;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.video-placeholder span,
.video-placeholder strong {
    position: relative;
    z-index: 1;
}

.video-placeholder span {
    justify-self: center;
    padding: 9px 16px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    font-weight: 900;
}

.video-summary-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-weight: 700;
}

.sample-disclosure {
    margin: 14px 0 0;
    padding: 12px 14px;
    color: #5f2e2a;
    background: #fff4ed;
    border: 1px solid #eed2c1;
    border-radius: 8px;
    font-weight: 800;
}

.category-seo-copy,
.legal-page {
    display: grid;
    gap: 14px;
}

.category-seo-copy h2,
.legal-page h1,
.legal-page h2 {
    margin: 0;
}

.category-seo-copy p,
.legal-page p {
    margin: 0;
}

.partner-video-feature {
    margin-top: 24px;
}

.paid-service-strip {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: 22px;
    background: rgba(255, 253, 248, 0.78);
    border: 1px solid rgba(36, 107, 80, 0.18);
    border-radius: 8px;
}

.paid-service-strip h2 {
    margin: 0;
}

.paid-service-grid {
    margin-top: 0;
}

.restaurant-tools-panel {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(238, 244, 239, 0.84));
    border: 1px solid rgba(36, 107, 80, 0.18);
    border-radius: 10px;
}

.restaurant-tools-panel h2 {
    margin: 0;
}

.restaurant-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.restaurant-tool-card {
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 218px;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(35, 40, 36, 0.07);
}

.restaurant-tool-card--pos {
    border-color: rgba(140, 63, 54, 0.28);
    box-shadow: 0 16px 34px rgba(140, 63, 54, 0.10);
}

.restaurant-tool-card h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.18rem;
    line-height: 1.35;
}

.restaurant-tool-card p {
    margin: 0;
    color: #4c5a51;
    line-height: 1.7;
}

.homepage-plan-compare {
    margin-top: 18px;
}

.homepage-plan-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.homepage-plan-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
}

.homepage-plan-table th,
.homepage-plan-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.homepage-plan-table thead th {
    color: var(--green);
    background: #f7fbf5;
    font-weight: 800;
}

.homepage-plan-table tbody th {
    width: 18%;
    color: var(--ink);
    font-weight: 800;
}

.homepage-plan-table td:last-child {
    white-space: nowrap;
}

.homepage-plan-table tr:last-child th,
.homepage-plan-table tr:last-child td {
    border-bottom: 0;
}

.paid-service-page .subsidy-summary-card strong {
    font-size: 42px;
}

.paid-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.paid-summary-grid,
.paid-compare-grid {
    margin-top: 16px;
}

.paid-step-list,
.paid-included-list,
.paid-exclusion-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 22px;
    color: var(--ink);
    line-height: 1.75;
}

.decision-panel,
.recommendation-split {
    display: grid;
    gap: 16px;
}

.decision-panel {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.decision-panel h2,
.recommendation-split h3 {
    margin: 0;
}

.decision-grid,
.recommendation-split {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-grid {
    display: grid;
    gap: 12px;
}

.decision-grid article,
.recommendation-split > div,
.copy-note {
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.decision-grid strong,
.decision-grid span,
.copy-note strong,
.copy-note p {
    display: block;
}

.decision-grid span,
.copy-note p,
.recommendation-split p {
    margin: 6px 0 0;
    color: var(--muted);
}

.copy-note p {
    white-space: pre-line;
}

.seo-checklist {
    display: grid;
    gap: 10px;
}

.seo-checklist span {
    padding: 13px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
}

.partner-box {
    display: grid;
    min-height: 180px;
    place-items: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
}

.partner-box strong {
    font-size: 72px;
    line-height: 1;
}

.partner-box span {
    color: rgba(255, 255, 255, 0.82);
}

.feature-grid h3 {
    margin: 0 0 8px;
}

.feature-grid p,
.plan-card p {
    color: var(--muted);
}

.site-footer {
    padding: 30px 18px 34px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.86);
}

.site-footer > p {
    max-width: 1080px;
    margin: 0 auto 18px;
    color: #5f594f;
    font-size: 14px;
}

.site-footer a {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--accent-dark);
}

.site-footer__info {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.65fr));
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    text-align: left;
}

.site-footer__info section {
    display: grid;
    align-content: start;
    gap: 8px;
}

.site-footer__info h2 {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.25;
}

.site-footer__info p {
    margin: 0;
    line-height: 1.7;
}

.site-footer__info a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__info--wide {
    grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(140px, 0.7fr));
    align-items: start;
    max-width: 1180px;
}

.site-footer__brand {
    max-width: 34rem;
}

.site-footer__tagline {
    color: var(--green-dark);
    font-weight: 900;
}

.site-footer__info--wide a {
    width: fit-content;
}

.site-footer__copyright {
    max-width: 1180px;
    margin: 22px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(47, 102, 80, 0.12);
}

/* GLOBAL CTA: desktop bottom-right stack and mobile bottom action panel. */
.floating-action-panel {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    gap: 8px;
    width: 132px;
    transform: none;
}

.floating-action-panel a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    color: var(--white);
    background: rgba(47, 102, 80, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(46, 31, 21, 0.18);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.floating-action-panel a:hover,
.floating-action-panel a:focus {
    background: var(--accent-dark);
}

.floating-action-panel__line {
    background: #06c755 !important;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-section {
    display: grid;
    gap: 18px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.metric-card span,
.metric-card small {
    display: block;
    color: var(--muted);
}

.metric-card strong {
    display: block;
    margin: 6px 0;
    font-size: 34px;
    line-height: 1.1;
}

.bar-list {
    display: grid;
    gap: 12px;
}

.bar-list div {
    display: grid;
    gap: 6px;
}

.bar-list span {
    color: var(--muted);
    font-size: 14px;
}

.bar-list strong {
    display: block;
    min-width: 42px;
    padding: 5px 8px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    line-height: 1;
}

/* SUBMIT PAGE: restaurant exposure form, preview result, and application helper cards. */
.submit-page,
.login-page {
    min-height: calc(100vh - 65px);
}

.submit-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(31, 59, 48, 0.92), rgba(31, 59, 48, 0.5) 48%, rgba(31, 59, 48, 0.14)),
        linear-gradient(180deg, rgba(34, 20, 12, 0.05), rgba(34, 20, 12, 0.56)),
        image-set(url("../images/submit-readable-food.webp") type("image/webp"), url("../images/submit-readable-food.png") type("image/png")) center / cover no-repeat;
}

.submit-hero .eyebrow,
.auth-intro .eyebrow {
    color: #f1c66d;
}

.submit-hero .lead-text {
    color: rgba(255, 255, 255, 0.86);
}

.submit-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: 28px;
    align-items: end;
}

.submit-hero h1,
.auth-intro h1 {
    margin: 0;
    max-width: 760px;
    font-size: 56px;
    line-height: 1.08;
}

.submit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.submit-plan-card {
    padding: 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(18, 13, 9, 0.22);
}

.submit-plan-card span {
    display: inline-grid;
    min-width: 62px;
    min-height: 62px;
    place-items: center;
    margin-bottom: 12px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
}

.submit-plan-card strong {
    display: block;
    font-size: 24px;
}

.submit-plan-card p,
.submit-plan-card ul {
    color: var(--muted);
}

.submit-plan-card ul,
.submit-checklist ol {
    margin: 12px 0 0;
    padding-left: 20px;
}

.submit-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.lead-text {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.lead-text--small {
    max-width: 720px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.notice-box {
    margin-top: 18px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.notice-box p {
    margin: 6px 0 0;
    color: var(--muted);
}

.submit-aside {
    position: sticky;
    top: 86px;
    display: grid;
    gap: 14px;
}

.submit-checklist,
.submit-mini-plans article,
.auth-benefits article {
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.submit-checklist h2,
.form-section-title h2,
.auth-card h2 {
    margin: 0;
    line-height: 1.2;
}

.submit-checklist li {
    margin: 8px 0;
    color: var(--muted);
}

.submit-mini-plans {
    display: grid;
    gap: 10px;
}

.submit-mini-plans strong,
.submit-mini-plans span,
.auth-benefits strong,
.auth-benefits span {
    display: block;
}

.submit-mini-plans span,
.auth-benefits span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
}

.submit-form,
.auth-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(89, 50, 20, 0.08);
}

.enhanced-form {
    gap: 18px;
    padding: 26px;
}

.submit-result {
    scroll-margin-top: 92px;
}

.submit-preview-card {
    margin-top: 8px;
    padding: 22px;
    background: #f7fbf8;
    border: 1px solid #b8dfc7;
    border-radius: 8px;
}

.submit-preview-card h2 {
    margin: 4px 0 10px;
    font-size: 26px;
}

.submit-preview-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.submit-preview-card dl div {
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.submit-preview-card dt {
    color: var(--muted);
    font-size: 13px;
}

.submit-preview-card dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.form-section-title {
    display: flex;
    gap: 12px;
    align-items: start;
    padding-top: 6px;
}

.form-section-title span {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: var(--accent);
    border-radius: 50%;
    font-weight: 900;
}

.form-section-title p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.field-hint {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.category-rule {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-rule strong {
    color: var(--green);
}

.category-rule p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.category-rule div {
    display: grid;
    gap: 7px;
}

.category-rule span {
    padding: 8px 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(234, 223, 209, 0.78);
    border-radius: 7px;
    font-size: 13px;
}

.submit-form label,
.auth-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-weight: 800;
}

.login-page {
    display: grid;
    place-items: center;
    padding: 48px 18px;
    background:
        linear-gradient(135deg, rgba(246, 239, 228, 0.95), rgba(237, 243, 237, 0.9)),
        image-set(url("../images/articles/xinbeitou-04.webp") type("image/webp"), url("../images/articles/xinbeitou-04.jpg") type("image/jpeg")) center/cover no-repeat;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: 28px;
    width: min(1080px, 100%);
    align-items: center;
}

.auth-intro {
    min-height: 560px;
    display: grid;
    align-content: end;
    padding: 30px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(28, 36, 28, 0.2), rgba(28, 36, 28, 0.9)),
        image-set(url("../images/articles/xinbeitou-09.webp") type("image/webp"), url("../images/articles/xinbeitou-09.jpg") type("image/jpeg")) center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(46, 31, 19, 0.18);
}

.auth-intro p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.auth-benefits article {
    background: rgba(255, 255, 255, 0.94);
}

.auth-benefits strong {
    color: var(--ink);
}

.auth-card {
    width: min(460px, 100%);
    padding: 26px;
}

.auth-card h1,
.auth-card h2 {
    margin: 0;
    line-height: 1.16;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.btn-social,
.btn-google {
    gap: 10px;
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
    justify-content: flex-start;
    min-height: 46px;
}

.btn-social span,
.btn-google span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--accent);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 900;
}

.btn-line span {
    color: #06c755;
}

.btn-apple span {
    color: #111;
}

.btn-facebook span {
    color: #1877f2;
}

.divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: var(--line);
}

.auth-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.auth-form-row,
.checkbox-label {
    display: flex;
    gap: 8px;
    align-items: center;
}

.auth-form-row {
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
}

.auth-form-row a {
    color: var(--green);
    font-weight: 800;
}

.checkbox-label {
    color: var(--muted);
    font-weight: 700;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
}

.form-help {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/* ARTICLE AND CATEGORY PAGES: dynamic listing/detail layout, anchors, cards, reviews, and schema-facing UI. */
.archive-hero h1,
.restaurant-detail h1 {
    max-width: 820px;
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
}

.restaurant-detail__hero {
    padding: 42px 18px 34px;
    background: linear-gradient(180deg, var(--surface), var(--bg));
}

.restaurant-detail__hero-inner,
.restaurant-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.restaurant-detail__image {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(52, 35, 20, 0.1);
}

.restaurant-detail__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.restaurant-detail__image picture,
.restaurant-card picture,
.seo-reference-card picture,
.mini-food-card picture,
.review-list picture {
    display: block;
}

.restaurant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.store-name {
    margin: 12px 0 0;
    color: var(--green);
    font-size: 20px;
    font-weight: 800;
}

.rating-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
}

.rating-summary strong {
    font-size: 30px;
    line-height: 1;
}

.rating-summary span,
.rating-summary a {
    padding: 5px 8px;
    background: rgba(237, 243, 237, 0.82);
    border-radius: 999px;
    font-size: 14px;
}

.stars {
    color: #d89000;
    letter-spacing: 0;
    white-space: nowrap;
}

.restaurant-detail__content,
.restaurant-info,
.empty-state {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.restaurant-detail__content {
    max-width: 760px;
}

.restaurant-detail__content section + section {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.restaurant-detail__content h2 {
    font-size: 28px;
    line-height: 1.22;
}

.restaurant-detail__content p,
.faq-block p,
.related-section p {
    color: #4f4a43;
    font-size: 17px;
    line-height: 1.88;
}

.restaurant-detail__content p:first-child {
    margin-top: 0;
}

.article-layout {
    align-items: start;
    justify-content: center;
}

.article-anchor-nav {
    position: sticky;
    top: 74px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -10px 0 22px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.article-anchor-nav a {
    padding: 7px 10px;
    color: var(--green);
    background: var(--mist);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.dish-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 14px;
}

.dish-list span {
    padding: 9px 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.menu-price-table {
    width: 100%;
    margin-top: 14px;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.menu-price-table th,
.menu-price-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.menu-price-table th {
    color: var(--green);
    background: var(--mist);
    font-size: 14px;
}

.menu-price-table td:last-child {
    width: 108px;
    color: var(--accent-dark);
    font-weight: 900;
    white-space: nowrap;
}

.menu-price-table tr:last-child td {
    border-bottom: 0;
}

.menu-price-table span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.article-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.article-trust-strip span {
    padding: 7px 10px;
    color: var(--ink);
    background: #fff4df;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.article-reader-note {
    margin: 0 0 22px;
    padding: 12px 14px;
    color: #5f594f;
    background: #fff8ec;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
}

.article-internal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
    padding: 20px;
    background: #fbfaf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.article-internal-links h2 {
    margin: 4px 0 12px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.25;
}

.article-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-link-list a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 7px 12px;
    color: var(--green);
    background: var(--white);
    border: 1px solid rgba(42, 93, 74, 0.18);
    border-radius: 999px;
    font-weight: 800;
}

.article-link-list a:hover,
.article-link-list a:focus-visible {
    background: #edf4ee;
    border-color: var(--green);
}

.faq-block details {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.faq-block summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 17px;
}

/* RESTAURANT GROWTH: merchant-facing food operator guide, separated from consumer food articles. */
.restaurant-growth-page .growth-hero {
    background:
        linear-gradient(135deg, rgba(42, 93, 74, 0.92), rgba(92, 31, 42, 0.82)),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
    color: var(--white);
    padding: clamp(34px, 6vw, 78px) 0;
}

.restaurant-growth-page .growth-hero .breadcrumb,
.restaurant-growth-page .growth-hero .breadcrumb a,
.restaurant-growth-page .growth-hero .lead-text,
.restaurant-growth-page .growth-hero .eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.growth-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: center;
}

.restaurant-growth-page .growth-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    max-width: 1180px;
    margin: 24px auto 0;
    padding-inline: clamp(18px, 4vw, 42px);
    border-radius: 8px;
}

.restaurant-growth-page .growth-hero.compact {
    margin-top: 18px;
}

.restaurant-growth-page .growth-hero h1 {
    margin: 10px 0 16px;
    max-width: 15em;
    color: #fffdf8;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.restaurant-growth-page .growth-hero p {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.85;
}

.growth-media-card {
    display: grid;
    gap: 10px;
    padding: 12px;
    background: #fffdf8;
    border: 1px solid rgba(38, 91, 68, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(24, 32, 27, 0.16);
}

.growth-media-card picture,
.growth-summary-card picture,
.growth-card picture {
    display: block;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 8px;
}

.growth-media-card img,
.growth-summary-card img,
.growth-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
}

.growth-summary-card,
.growth-feature-card,
.growth-cta {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(52, 35, 20, 0.08);
}

.growth-summary-card {
    color: var(--ink);
}

.growth-summary-card span,
.growth-card span,
.growth-article-list span,
.satellite-list span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.growth-summary-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.2;
}

.growth-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.growth-card,
.satellite-list article,
.growth-article-list a,
.growth-article-list .growth-card {
    display: block;
    padding: 18px;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.growth-card {
    box-shadow: 0 12px 26px rgba(52, 35, 20, 0.05);
}

.growth-card ul {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding-left: 18px;
}

.growth-card a {
    color: var(--ink);
}

.growth-card a:hover,
.growth-card a:focus-visible {
    color: var(--green);
}

.growth-card h3,
.satellite-list h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.growth-card p,
.growth-article-list small,
.satellite-list p {
    color: #565047;
    line-height: 1.75;
}

.growth-article-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.growth-article-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.35;
}

.satellite-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.satellite-list--compact {
    grid-template-columns: 1fr;
}

.growth-cta {
    background: linear-gradient(180deg, #ffffff, #f8fbf7);
    max-width: 1180px;
    margin: 32px auto;
}

.growth-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.growth-check-grid article {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.growth-check-grid strong {
    color: var(--green);
}

.growth-check-grid span {
    color: #565047;
    line-height: 1.75;
}

.growth-audit-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.growth-audit-strip article {
    display: grid;
    gap: 7px;
    padding: 18px;
    background: linear-gradient(180deg, #fffdf8, #f7f1e7);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 8px;
}

.growth-audit-strip strong {
    color: var(--green);
    font-size: 1.05rem;
}

.growth-audit-strip span {
    color: #565047;
    line-height: 1.75;
}

.growth-step-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
    counter-reset: growth-step;
}

.growth-step-list li {
    position: relative;
    padding: 15px 16px 15px 54px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    line-height: 1.75;
    counter-increment: growth-step;
}

.growth-step-list li::before {
    content: counter(growth-step);
    position: absolute;
    left: 16px;
    top: 16px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #fffdf8;
    background: var(--green);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
}

.restaurant-growth-page .section {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(18px, 4vw, 42px);
}

.restaurant-growth-page .article-toc {
    max-width: 1180px;
    margin: 18px auto 0;
    padding: 14px clamp(18px, 4vw, 42px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.restaurant-growth-page .article-toc a,
.restaurant-growth-page .article-toc strong {
    padding: 8px 12px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.restaurant-growth-page .article-content {
    max-width: 860px;
}

.restaurant-growth-page .article-content p {
    color: #252c26;
    font-size: 1.04rem;
    line-height: 1.92;
}

.restaurant-growth-article .restaurant-detail__content h3 {
    margin-top: 20px;
    color: var(--green);
}

.related-section {
    margin-top: 30px;
}

.mini-food-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.mini-food-card {
    display: grid;
    gap: 7px;
    padding: 12px;
    background: #fffaf4;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mini-food-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.mini-food-card span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: end;
}

.category-toolbar,
.category-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-filter-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0 24px;
}

.category-filter-tools .category-filter-row {
    margin-top: 0;
}

.filter-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 14px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.filter-mode-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.category-toolbar a,
.category-filter-row button {
    min-height: 36px;
    padding: 6px 11px;
    color: var(--green);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.category-toolbar .active,
.category-filter-row .active {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.category-stats article {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-stats strong,
.category-stats span {
    display: block;
}

.category-stats strong {
    font-size: 28px;
    line-height: 1.1;
}

.category-stats span {
    color: var(--muted);
    font-size: 13px;
}

.category-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-top: 18px;
}

.category-map {
    position: sticky;
    top: 86px;
    display: grid;
    min-height: auto;
    align-content: start;
    gap: 8px;
    padding: 16px;
    color: var(--ink);
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-map strong {
    color: var(--green);
    font-size: 20px;
    line-height: 1.2;
}

.category-map span {
    color: var(--muted);
}

.food-list-card {
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.food-list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(52, 35, 20, 0.08);
}

.food-list-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 0;
}

.food-list-card dl div {
    padding: 7px;
    background: rgba(237, 243, 237, 0.72);
    border-radius: 6px;
}

.food-list-card dt {
    color: var(--muted);
    font-size: 12px;
}

.food-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.food-card-badges em {
    padding: 4px 8px;
    color: var(--green);
    background: var(--mist);
    border: 1px solid rgba(36, 107, 80, 0.16);
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.food-list-card dd {
    margin: 0;
    font-weight: 800;
}

.restaurant-info {
    position: sticky;
    top: 88px;
}

.restaurant-info h2 {
    margin: 0 0 14px;
}

.restaurant-info dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.restaurant-info div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.restaurant-info dt {
    color: var(--muted);
    font-size: 13px;
}

.restaurant-info dd {
    margin: 2px 0 0;
    font-weight: 800;
}

.restaurant-video {
    margin-top: 26px;
}

.review-section,
.user-review-panel {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.review-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.review-heading h2,
.user-review-panel h2 {
    margin: 0;
}

.review-heading p {
    margin: 4px 0 0;
    color: var(--muted);
}

.review-score {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 16px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.review-score strong {
    font-size: 42px;
    line-height: 1;
}

.review-score p {
    margin: 2px 0 0;
    color: var(--muted);
}

.review-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.review-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-weight: 800;
}

.star-input {
    display: flex;
    gap: 4px;
}

.star-input input {
    display: none;
}

.star-input button {
    width: 36px;
    height: 36px;
    color: #b5a58d;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
}

.star-input button.active,
.star-input button:hover,
.star-input button:focus-visible {
    color: #d89000;
    background: #fff7df;
    border-color: #d8b25f;
}

.review-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.review-list article,
.user-review-grid article {
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.review-list strong,
.user-review-grid strong,
.user-review-grid span,
.user-review-grid a {
    display: block;
}

.review-author {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
    justify-content: space-between;
}

.review-author span {
    color: var(--muted);
    font-size: 13px;
}

.review-user-link {
    display: grid;
    gap: 2px;
}

.review-user-link:hover strong,
.review-user-link:focus strong {
    color: var(--accent);
}

.review-list p {
    margin: 6px 0 0;
    color: var(--muted);
}

.review-list img {
    display: block;
    width: min(180px, 100%);
    aspect-ratio: 4 / 3;
    margin-top: 10px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.user-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.user-review-grid span {
    color: var(--muted);
}

.user-review-grid a {
    margin-top: 6px;
    color: var(--accent);
    font-weight: 800;
}

.front-notice {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    width: min(320px, calc(100% - 32px));
    padding: 12px 14px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(32, 33, 36, 0.18);
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.restaurant-video h2 {
    margin: 0 0 12px;
}

.video-embed {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 8px;
}

.video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE: first mobile pass for global layout and major content pages. */
@media (max-width: 760px) {
    body {
        font-size: 16px;
        line-height: 1.72;
        overflow-x: hidden;
        padding-bottom: 86px;
    }

    .site-header {
        align-items: center;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 12px;
    }

    .site-brand {
        min-width: 0;
    }

    .site-brand__mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 7px;
    }

    .site-brand strong,
    .site-brand small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-brand strong {
        display: block;
        max-width: 190px;
        font-size: 15px;
    }

    .menu-toggle {
        display: inline-flex;
        min-height: 38px;
        padding: 7px 10px;
        font-size: 14px;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

    .menu-open .site-nav {
        display: block;
    }

    .site-menu {
        display: grid;
        gap: 6px;
        margin-top: 10px;
        padding: 10px;
        color: var(--ink);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        white-space: normal;
    }

    .site-menu__group-label {
        display: block;
        padding: 10px 8px 4px;
        color: var(--accent-dark);
    }

    .site-submenu {
        position: static;
        display: grid;
        min-width: 0;
        padding: 0 0 0 10px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-menu a {
        display: block;
        padding: 10px 8px;
        border-radius: 8px;
    }

    .site-menu a:focus,
    .site-menu a:hover {
        background: var(--bg);
    }

    .hero,
    .hero--food,
    .subsidy-hero,
    .revenue-hero {
        min-height: auto;
        padding: 34px 14px 22px;
    }

    .hero h1,
    .subsidy-hero h1,
    .revenue-hero h1 {
        max-width: 100%;
        font-size: 36px;
        line-height: 1.08;
    }

    .hero__text,
    .lead-text,
    .auth-intro p {
        font-size: 16px;
    }

    .hero__actions,
    .submit-actions,
    .article-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 14px;
        white-space: normal;
    }

    .plan-grid,
    .feature-grid,
    .restaurant-grid,
    .area-grid,
    .category-grid,
    .seo-reference-grid,
    .seo-reference-card,
    .hero-plan-strip,
    .auth-shell,
    .auth-benefits,
    .submit-hero__grid,
    .subsidy-hero__grid,
    .subsidy-steps,
    .subsidy-fit-grid,
    .user-review-grid,
    .mini-food-grid,
    .category-hero-grid,
    .category-stats,
    .category-layout,
    .split,
    .video-feature,
    .decision-grid,
    .recommendation-split,
    .restaurant-detail__hero-inner,
    .restaurant-detail__layout {
        grid-template-columns: 1fr;
    }

    .video-feature {
        gap: 18px;
        padding: 16px;
    }

    .video-feature__copy h2 {
        font-size: 26px;
    }

    .hero-plan-strip a,
    .restaurant-card,
    .area-card,
    .category-card,
    .seo-reference-card,
    .feature-grid a {
        border-radius: 8px;
    }

    .seo-reference-card img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .seo-reference-card div {
        padding: 12px;
    }

    .seo-reference-card h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .seo-reference-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .restaurant-info {
        position: static;
    }

    .submit-aside {
        position: static;
    }

    .auth-intro {
        min-height: auto;
        padding: 22px;
    }

    .auth-intro h1,
    .submit-hero h1 {
        font-size: 36px;
    }

    .submit-hero {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .submit-plan-card,
    .subsidy-summary-card,
    .subsidy-steps article,
    .subsidy-fit-grid article,
    .subsidy-example,
    .application-panel,
    .notice-box,
    .submit-checklist,
    .submit-mini-plans article,
    .auth-benefits article {
        padding: 14px;
    }

    .auth-card,
    .enhanced-form {
        padding: 18px;
    }

    .submit-preview-card dl {
        grid-template-columns: 1fr;
    }

    .auth-form-row {
        align-items: start;
        display: grid;
        gap: 8px;
    }

    .search-panel__row,
    .section-heading,
    .metric-grid,
    .field-row,
    .submit-layout {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
        display: grid;
        gap: 10px;
    }

    .section-heading p {
        margin-top: 8px;
    }

    .content-section,
    .partner-section {
        padding: 34px 14px;
    }

    .content-section h2,
    .partner-section h2,
    .subsidy-reading h2,
    .subsidy-cta h2,
    .archive-hero h1,
    .restaurant-detail h1 {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.16;
    }

    .archive-hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .category-toolbar,
    .category-filter-row,
    .article-anchor-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .category-toolbar::-webkit-scrollbar,
    .category-filter-row::-webkit-scrollbar,
    .article-anchor-nav::-webkit-scrollbar {
        display: none;
    }

    .category-toolbar a,
    .category-filter-row button,
    .article-anchor-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .category-stats,
    .rating-summary {
        gap: 8px;
    }

    .rating-summary {
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rating-summary strong {
        grid-row: span 2;
    }

    .restaurant-detail__hero {
        padding: 30px 14px;
    }

    .restaurant-detail__image img {
        aspect-ratio: 16 / 10;
    }

    .restaurant-detail__content,
    .restaurant-info,
    .empty-state,
    .review-form,
    .review-list article,
    .user-review-grid article {
        padding: 16px;
    }

    .restaurant-detail__content p,
    .faq-block p,
    .related-section p,
    .subsidy-reading p {
        font-size: 16px;
        line-height: 1.82;
    }

    .restaurant-detail__content h2 {
        font-size: 24px;
    }

    .category-map {
        position: static;
        min-height: auto;
    }

    .restaurant-detail__content section + section {
        margin-top: 26px;
    }

    .dish-list {
        gap: 8px;
    }

    .dish-list span {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .food-list-card dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .food-list-card dl div {
        padding: 6px 4px;
    }

    .food-list-card dd {
        font-size: 13px;
    }

    .review-heading {
        display: grid;
        gap: 8px;
    }

    .review-score {
        align-items: start;
        grid-template-columns: 72px 1fr;
    }

    .review-list img {
        width: 100%;
        max-width: none;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    body {
        padding-bottom: 96px;
    }

    .site-brand strong {
        max-width: 168px;
    }

    .hero h1,
    .submit-hero h1,
    .auth-intro h1 {
        font-size: 32px;
    }

    .content-section h2,
    .partner-section h2,
    .archive-hero h1,
    .restaurant-detail h1 {
        font-size: 27px;
    }

    .hero-plan-strip,
    .area-grid,
    .category-grid,
    .restaurant-grid,
    .feature-grid,
    .plan-grid,
    .seo-reference-grid,
    .mini-food-grid {
        gap: 10px;
    }

    .search-panel {
        margin-top: 18px;
        padding: 12px;
    }

    .restaurant-card__body,
    .seo-reference-card div,
    .restaurant-detail__content,
    .restaurant-info,
    .review-form,
    .review-list article {
        padding: 14px;
    }

    .menu-price-table th,
    .menu-price-table td {
        padding: 10px;
    }

    .menu-price-table td:last-child {
        width: 88px;
        white-space: normal;
    }

    .rating-summary {
        grid-template-columns: 1fr;
    }

    .rating-summary strong {
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-bottom: 78px;
    }

    .floating-action-panel {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
        width: 100%;
        padding: 8px;
        background: rgba(255, 250, 244, 0.96);
        border-top: 1px solid var(--line);
        transform: none;
        backdrop-filter: blur(14px);
    }

    .floating-action-panel a {
        min-height: 44px;
        padding: 8px 5px;
        box-shadow: none;
        font-size: 12px;
    }

    .restaurant-detail,
    .restaurant-detail__hero,
    .restaurant-detail__hero-inner,
    .restaurant-detail__layout,
    .restaurant-detail__content,
    .restaurant-detail__content section,
    .restaurant-info,
    .article-layout,
    .article-anchor-nav,
    .dish-list,
    .menu-price-table,
    .review-section,
    .related-section,
    .faq-block {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
    }

    .restaurant-detail__hero-inner,
    .restaurant-detail__layout,
    .article-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .restaurant-detail__content,
    .restaurant-info {
        overflow: hidden;
    }

    .article-anchor-nav {
        position: static;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0 8px;
        background: transparent;
        border: 0;
        border-radius: 0;
        scroll-padding-inline: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .article-anchor-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .dish-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dish-list span {
        min-width: 0;
        width: auto;
        word-break: break-word;
    }

    .menu-price-table {
        table-layout: fixed;
        border-spacing: 0;
    }

    .menu-price-table th,
    .menu-price-table td {
        word-break: break-word;
    }
}

@media (max-width: 430px) {
    .restaurant-detail__hero {
        padding-inline: 14px;
    }

    .menu-price-table th,
    .menu-price-table td {
        padding: 9px 8px;
    }

    .menu-price-table td:last-child {
        width: 76px;
        min-width: 76px;
    }

    .dish-list {
        grid-template-columns: 1fr;
    }
}

.screen-reader-text:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    background: #fff;
    color: #111;
}

.consent-field {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    line-height: 1.6;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.beitou-food-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.beitou-review-rating {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.beitou-review-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.beitou-review-stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.beitou-review-stars label {
    color: #b4b4b4;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.beitou-review-stars label:hover,
.beitou-review-stars label:hover ~ label,
.beitou-review-stars input:checked ~ label {
    color: #e6a100;
}

.beitou-review-stars input:focus-visible + label {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.beitou-review-photo img {
    width: min(100%, 560px);
    height: auto;
    border-radius: 6px;
}

.beitou-review-stars-display {
    color: #b77700;
    letter-spacing: 0;
}

@media (max-width: 760px) {
    .article-trust-strip {
        display: grid;
        grid-template-columns: 1fr;
    }

    .article-trust-strip span {
        text-align: center;
    }

}

@media (max-width: 430px) {
    .food-list-card dl,
    .category-stats {
        grid-template-columns: 1fr;
    }

    .category-toolbar,
    .category-filter-row,
    .article-anchor-nav {
        margin-inline: -2px;
        padding-inline: 2px;
    }

    .category-filter-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-mode-toggle {
        justify-content: center;
        width: 100%;
    }

    .article-internal-links {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .site-footer {
        padding-bottom: 112px;
    }

    .site-footer__info {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(42, 93, 74, 0.35);
    outline-offset: 3px;
}

.one-page-hero {
    background:
        radial-gradient(circle at 18% 8%, rgba(236, 90, 160, 0.10), transparent 30%),
        linear-gradient(135deg, #f7f5ef 0%, #fffdf8 54%, #f4f0e7 100%);
}

.one-page-hero__grid {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
}

.one-page-hero h1 {
    max-width: 760px;
}

.one-page-summary-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(35, 40, 36, 0.10);
    color: #232824;
    padding: 26px;
}

.one-page-summary-card span {
    color: #8c3f36;
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.one-page-summary-card strong {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.one-page-stack {
    display: grid;
    gap: 34px;
}

.one-page-two-col {
    align-items: start;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.one-page-checklist {
    background: #fffaf1;
    border: 1px solid rgba(140, 63, 54, 0.16);
    border-radius: 8px;
    padding: 22px;
}

.one-page-checklist strong {
    color: #2a5d4a;
    display: block;
    margin-bottom: 12px;
}

.one-page-checklist ul {
    margin: 0;
    padding-left: 20px;
}

.one-page-checklist li + li {
    margin-top: 8px;
}

.legal-page {
    max-width: 880px;
}

.legal-page h2 {
    margin-top: 30px;
}

.submit-page .submit-hero,
.subsidy-page .subsidy-hero,
.revenue-page .revenue-hero {
    background:
        radial-gradient(circle at 16% 10%, rgba(236, 90, 160, 0.09), transparent 29%),
        linear-gradient(135deg, #f7f5ef 0%, #fffdf8 58%, #f2eee4 100%);
}

.submit-plan-card,
.subsidy-summary-card {
    border-radius: 8px;
}

@media (max-width: 820px) {
    .one-page-hero__grid,
    .one-page-two-col {
        grid-template-columns: 1fr;
    }

    .one-page-summary-card {
        padding: 22px;
    }
}

.submit-page .submit-hero,
.subsidy-page .subsidy-hero,
.revenue-page .revenue-hero,
.one-page--legal .one-page-hero {
    color: #232824;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 245, 239, 0.94) 54%, rgba(238, 244, 239, 0.92) 100%),
        image-set(url("../images/submit-readable-food.webp") type("image/webp"), url("../images/submit-readable-food.png") type("image/png")) center / cover no-repeat;
}

.subsidy-page .subsidy-hero,
.revenue-page .revenue-hero {
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 245, 239, 0.94) 54%, rgba(238, 244, 239, 0.92) 100%),
        image-set(url("../images/subsidy-readable-food.webp") type("image/webp"), url("../images/subsidy-readable-food.png") type("image/png")) center / cover no-repeat;
}

.submit-hero__grid > div:first-child,
.subsidy-hero__grid > div:first-child,
.one-page-hero__grid > div:first-child {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(35, 40, 36, 0.09);
    padding: clamp(22px, 4vw, 38px);
}

.submit-page .submit-hero .eyebrow,
.subsidy-page .subsidy-hero .eyebrow,
.revenue-page .revenue-hero .eyebrow,
.one-page--legal .one-page-hero .eyebrow {
    color: #2a5d4a;
}

.submit-page .submit-hero h1,
.subsidy-page .subsidy-hero h1,
.revenue-page .revenue-hero h1,
.one-page--legal .one-page-hero h1 {
    color: #1f2722;
    text-shadow: none;
}

.submit-page .submit-hero .lead-text,
.subsidy-page .subsidy-hero .lead-text,
.revenue-page .revenue-hero .lead-text,
.one-page--legal .one-page-hero .lead-text {
    color: #3f473f;
    font-weight: 500;
}

.one-page--legal .breadcrumb--light,
.one-page--legal .breadcrumb--light a {
    color: #4e5b52;
}

.one-page--legal .breadcrumb--light a::after {
    color: #7a867d;
}

@media (max-width: 760px) {
    .submit-hero__grid > div:first-child,
    .subsidy-hero__grid > div:first-child,
    .one-page-hero__grid > div:first-child {
        padding: 20px;
    }
}

.submit-page .submit-hero,
.subsidy-page .subsidy-hero,
.revenue-page .revenue-hero,
.one-page--legal .one-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(46px, 7vw, 86px);
}

.submit-page .submit-hero::before,
.subsidy-page .subsidy-hero::before,
.revenue-page .revenue-hero::before,
.one-page--legal .one-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.95) 50%, rgba(255, 253, 248, 0.72) 100%),
        radial-gradient(circle at 82% 16%, rgba(42, 93, 74, 0.12), transparent 31%),
        radial-gradient(circle at 16% 84%, rgba(140, 63, 54, 0.08), transparent 28%);
}

.submit-page .submit-hero::after,
.subsidy-page .subsidy-hero::after,
.revenue-page .revenue-hero::after,
.one-page--legal .one-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 93, 74, 0.22), transparent);
}

.submit-page .submit-hero .section-inner,
.subsidy-page .subsidy-hero .section-inner,
.revenue-page .revenue-hero .section-inner,
.one-page--legal .one-page-hero .section-inner {
    position: relative;
}

.submit-hero__grid,
.subsidy-hero__grid,
.one-page-hero__grid {
    align-items: stretch;
}

.submit-hero__grid > div:first-child,
.subsidy-hero__grid > div:first-child,
.one-page-hero__grid > div:first-child {
    align-self: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(42, 93, 74, 0.13);
    border-left: 6px solid #2a5d4a;
    box-shadow: 0 24px 60px rgba(35, 40, 36, 0.11);
    max-width: 820px;
}

.submit-page .submit-hero .eyebrow,
.subsidy-page .subsidy-hero .eyebrow,
.revenue-page .revenue-hero .eyebrow,
.one-page--legal .one-page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(42, 93, 74, 0.16);
    border-radius: 999px;
    background: #eef4ef;
    color: #234f3e;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.submit-page .submit-hero .eyebrow::before,
.subsidy-page .subsidy-hero .eyebrow::before,
.revenue-page .revenue-hero .eyebrow::before,
.one-page--legal .one-page-hero .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8c3f36;
}

.submit-page .submit-hero h1,
.subsidy-page .subsidy-hero h1,
.revenue-page .revenue-hero h1,
.one-page--legal .one-page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.15rem, 5vw, 3.55rem);
    letter-spacing: 0;
    line-height: 1.12;
}

.submit-page .submit-hero .lead-text,
.subsidy-page .subsidy-hero .lead-text,
.revenue-page .revenue-hero .lead-text,
.one-page--legal .one-page-hero .lead-text {
    max-width: 680px;
    margin-top: 16px;
    color: #334038;
    font-size: clamp(1.04rem, 1.8vw, 1.18rem);
    line-height: 1.9;
}

.submit-page .submit-actions,
.subsidy-page .submit-actions,
.revenue-page .submit-actions,
.one-page--legal .submit-actions {
    gap: 14px;
    margin-top: 28px;
}

.submit-page .submit-actions .btn,
.subsidy-page .submit-actions .btn,
.revenue-page .submit-actions .btn,
.one-page--legal .submit-actions .btn {
    min-height: 48px;
    padding-inline: 22px;
    box-shadow: 0 10px 22px rgba(35, 40, 36, 0.08);
}

.submit-page .submit-actions .btn-primary,
.subsidy-page .submit-actions .btn-primary,
.revenue-page .submit-actions .btn-primary,
.one-page--legal .submit-actions .btn-primary {
    background: #245943;
}

.submit-page .submit-actions .btn-primary:hover,
.subsidy-page .submit-actions .btn-primary:hover,
.revenue-page .submit-actions .btn-primary:hover,
.one-page--legal .submit-actions .btn-primary:hover {
    background: #8c3f36;
}

.submit-page .submit-actions .btn-secondary,
.subsidy-page .submit-actions .btn-secondary,
.revenue-page .submit-actions .btn-secondary,
.one-page--legal .submit-actions .btn-secondary {
    color: #245943;
    background: #fffdf8;
    border-color: rgba(42, 93, 74, 0.22);
}

.submit-plan-card,
.subsidy-summary-card,
.one-page-summary-card {
    align-self: center;
    border: 1px solid rgba(42, 93, 74, 0.16);
    box-shadow: 0 22px 54px rgba(35, 40, 36, 0.12);
}

.submit-plan-card,
.subsidy-summary-card {
    background: linear-gradient(180deg, #245943, #1f4737);
}

.submit-plan-card span,
.subsidy-summary-card span,
.one-page-summary-card span {
    color: #f4d58b;
}

.submit-plan-card strong,
.subsidy-summary-card strong {
    color: #fffdf8;
}

.submit-plan-card p,
.submit-plan-card li,
.subsidy-summary-card p {
    color: rgba(255, 253, 248, 0.86);
}

.one-page-summary-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.94));
}

.decision-panel,
.video-feature,
.application-panel,
.one-page-two-col,
.faq-block {
    border-radius: 8px;
}

@media (max-width: 760px) {
    .submit-page .submit-hero,
    .subsidy-page .subsidy-hero,
    .revenue-page .revenue-hero,
    .one-page--legal .one-page-hero {
        padding-block: 28px 42px;
    }

    .submit-hero__grid > div:first-child,
    .subsidy-hero__grid > div:first-child,
    .one-page-hero__grid > div:first-child {
        border-left-width: 4px;
        box-shadow: 0 16px 34px rgba(35, 40, 36, 0.10);
    }

    .submit-page .submit-actions .btn,
    .subsidy-page .submit-actions .btn,
    .revenue-page .submit-actions .btn,
    .one-page--legal .submit-actions .btn {
        justify-content: center;
        width: 100%;
    }
}

.site-main .hero--food {
    position: relative;
    isolation: isolate;
    min-height: min(780px, calc(100vh - 70px));
    align-items: center;
    padding: clamp(44px, 7vw, 86px) 18px clamp(34px, 5vw, 58px);
    color: #1f2722;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.95) 46%, rgba(255, 253, 248, 0.66) 100%),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
    overflow: hidden;
}

.site-main .hero--food::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 83% 14%, rgba(42, 93, 74, 0.14), transparent 32%),
        radial-gradient(circle at 14% 85%, rgba(140, 63, 54, 0.08), transparent 30%);
}

.site-main .hero--food::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 93, 74, 0.24), transparent);
}

.site-main .hero--food .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.58fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
}

.site-main .hero--food .hero__content > .eyebrow,
.site-main .hero--food .hero__content > h1,
.site-main .hero--food .hero__content > .hero__text,
.site-main .hero--food .hero__content > .search-panel,
.site-main .hero--food .hero__content > .hero__actions {
    grid-column: 1;
}

.site-main .hero--food .hero__content > .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 2px;
    padding: 7px 11px;
    color: #234f3e;
    background: #eef4ef;
    border: 1px solid rgba(42, 93, 74, 0.16);
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.site-main .hero--food .hero__content > .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8c3f36;
}

.site-main .hero--food h1 {
    max-width: 780px;
    margin-top: 14px;
    color: #1f2722;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.04;
}

.site-main .hero--food .hero__text {
    max-width: 700px;
    color: #334038;
    font-size: clamp(1.06rem, 1.7vw, 1.22rem);
    line-height: 1.9;
}

.site-main .hero--food .search-panel {
    margin-top: 28px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(42, 93, 74, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(35, 40, 36, 0.10);
}

.site-main .hero--food .search-panel label {
    color: #245943;
    font-weight: 800;
}

.site-main .hero--food .search-panel__row {
    gap: 10px;
}

.site-main .hero--food .search-panel input {
    min-height: 50px;
    border-color: rgba(42, 93, 74, 0.18);
    font-size: 16px;
}

.site-main .hero--food .search-panel .btn {
    min-height: 50px;
    padding-inline: 24px;
}

.site-main .hero--food .hero__actions .btn {
    min-height: 48px;
    padding-inline: 22px;
    box-shadow: 0 10px 22px rgba(35, 40, 36, 0.08);
}

.site-main .hero--food .hero__actions .btn-secondary {
    color: #fffdf8;
    background: #245943;
    border-color: #245943;
}

.site-main .hero--food .hero__actions .btn-ghost {
    color: #245943;
    background: #fffdf8;
    border-color: rgba(42, 93, 74, 0.24);
}

.site-main .hero--food .hero-plan-strip {
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(35, 40, 36, 0.11);
    backdrop-filter: blur(10px);
}

.site-main .hero--food .hero-plan-strip::before {
    content: "熱門入口";
    display: block;
    color: #8c3f36;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.site-main .hero--food .hero-plan-strip a {
    position: relative;
    min-height: 96px;
    padding: 18px 18px 18px 20px;
    background: #fffdf8;
    border: 1px solid rgba(42, 93, 74, 0.14);
    box-shadow: 0 10px 26px rgba(35, 40, 36, 0.07);
}

.site-main .hero--food .hero-plan-strip a::before {
    content: "";
    position: absolute;
    inset: 18px auto 18px 0;
    width: 4px;
    border-radius: 999px;
    background: #2a5d4a;
}

.site-main .hero--food .hero-plan-strip a:hover,
.site-main .hero--food .hero-plan-strip a:focus-visible {
    border-color: rgba(140, 63, 54, 0.32);
    transform: translateY(-2px);
}

.site-main .hero--food .hero-plan-strip strong {
    color: #1f2722;
    font-size: 19px;
}

.site-main .hero--food .hero-plan-strip span {
    color: #526057;
    font-size: 14px;
    line-height: 1.55;
}

#areas .area-grid,
#categories .category-grid,
#food-guides .seo-reference-library,
#restaurants .restaurant-grid {
    gap: 16px;
}

#areas .area-link,
#categories .category-grid a,
#food-guides .seo-reference-card,
#restaurants .restaurant-card,
#guides .feature-grid a {
    border: 1px solid rgba(42, 93, 74, 0.13);
    box-shadow: 0 12px 30px rgba(35, 40, 36, 0.07);
}

#areas .area-link:hover,
#categories .category-grid a:hover,
#guides .feature-grid a:hover {
    border-color: rgba(140, 63, 54, 0.28);
    transform: translateY(-2px);
}

.section-lead {
    color: #4c5a51;
    line-height: 1.85;
}

@media (max-width: 900px) {
    .site-main .hero--food .hero__content {
        grid-template-columns: 1fr;
    }

    .site-main .hero--food .hero-plan-strip {
        grid-column: 1;
        grid-row: auto;
        margin-top: 6px;
    }
}

@media (max-width: 760px) {
    .site-main .hero--food {
        min-height: auto;
        padding: 30px 14px 28px;
    }

    .site-main .hero--food h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .site-main .hero--food .hero__text {
        font-size: 16px;
        line-height: 1.78;
    }

    .site-main .hero--food .search-panel {
        padding: 14px;
    }

    .site-main .hero--food .search-panel__row {
        grid-template-columns: 1fr;
    }

    .site-main .hero--food .hero-plan-strip {
        padding: 12px;
        box-shadow: 0 16px 34px rgba(35, 40, 36, 0.10);
    }

    .site-main .hero--food .hero-plan-strip a {
        min-height: auto;
        padding: 14px 14px 14px 18px;
    }
}

#category-page-content .archive-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(42px, 6vw, 76px);
    color: #1f2722;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 245, 239, 0.96) 50%, rgba(238, 244, 239, 0.92) 100%);
}

#category-page-content .archive-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 86% 18%, rgba(42, 93, 74, 0.14), transparent 31%),
        radial-gradient(circle at 12% 82%, rgba(140, 63, 54, 0.08), transparent 30%);
}

#category-page-content .archive-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 93, 74, 0.24), transparent);
}

#category-page-content .category-hero-grid {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(18px, 4vw, 34px);
}

#category-page-content .category-hero-grid > div:first-child {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-left: 6px solid #2a5d4a;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(35, 40, 36, 0.10);
    padding: clamp(22px, 4vw, 38px);
}

#category-page-content .breadcrumb {
    color: #58645d;
    margin-bottom: 16px;
}

#category-page-content .archive-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: #234f3e;
    background: #eef4ef;
    border: 1px solid rgba(42, 93, 74, 0.16);
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

#category-page-content .archive-hero .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8c3f36;
}

#category-page-content .archive-hero h1 {
    max-width: 760px;
    color: #1f2722;
    font-size: clamp(2.3rem, 5.6vw, 4.2rem);
    line-height: 1.08;
}

#category-page-content .archive-hero .lead-text {
    max-width: 760px;
    color: #334038;
    font-size: clamp(1.03rem, 1.7vw, 1.18rem);
    line-height: 1.88;
}

#category-page-content .archive-hero .lead-text--small {
    color: #526057;
    font-size: 0.98rem;
}

#category-page-content .category-toolbar {
    gap: 10px;
    margin-top: 24px;
}

#category-page-content .category-toolbar a {
    min-height: 42px;
    padding: 9px 14px;
    color: #245943;
    background: #fffdf8;
    border-color: rgba(42, 93, 74, 0.18);
    box-shadow: 0 8px 18px rgba(35, 40, 36, 0.06);
}

#category-page-content .category-toolbar .active {
    color: #fffdf8;
    background: #245943;
    border-color: #245943;
}

#category-page-content .category-stats {
    align-self: stretch;
    gap: 12px;
}

#category-page-content .category-stats article {
    display: grid;
    align-content: center;
    min-height: 116px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(42, 93, 74, 0.14);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(35, 40, 36, 0.09);
}

#category-page-content .category-stats strong {
    color: #245943;
    font-size: clamp(2rem, 4vw, 2.65rem);
}

#category-page-content .category-stats span {
    color: #526057;
    font-weight: 800;
}

#category-page-content .category-seo-copy {
    max-width: 920px;
    background: #fffdf8;
    border: 1px solid rgba(42, 93, 74, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(35, 40, 36, 0.06);
    padding: clamp(22px, 4vw, 34px);
}

#category-page-content #food-list .section-heading {
    align-items: end;
    gap: 18px;
}

#category-page-content .category-list-status {
    display: inline-flex;
    width: fit-content;
    margin: 16px 0 0;
    padding: 9px 13px;
    color: #245943;
    background: #eef4ef;
    border: 1px solid rgba(42, 93, 74, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

#category-page-content .category-filter-tools {
    position: sticky;
    top: 72px;
    z-index: 4;
    margin: 20px 0 26px;
    padding: 12px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(42, 93, 74, 0.13);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(35, 40, 36, 0.08);
    backdrop-filter: blur(10px);
}

#category-page-content .category-filter-row button {
    min-height: 42px;
    padding: 9px 14px;
    color: #245943;
    background: #fffdf8;
    border-color: rgba(42, 93, 74, 0.18);
}

#category-page-content .category-filter-row .active {
    color: #fffdf8;
    background: #245943;
    border-color: #245943;
}

#category-page-content .filter-mode-toggle {
    color: #334038;
    background: #fffdf8;
    border-color: rgba(42, 93, 74, 0.18);
}

#category-page-content .category-layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 22px;
}

#category-page-content .category-map {
    top: 150px;
    gap: 12px;
    padding: 20px;
    background:
        linear-gradient(180deg, #fffdf8, #f4f8f4);
    border: 1px solid rgba(42, 93, 74, 0.14);
    box-shadow: 0 14px 34px rgba(35, 40, 36, 0.07);
}

#category-page-content .category-map strong {
    color: #1f4f3b;
    font-size: 22px;
}

#category-page-content .category-map span {
    color: #4c5a51;
    line-height: 1.78;
}

#category-page-content .seo-reference-grid {
    gap: 18px;
}

#category-page-content .food-list-card {
    overflow: hidden;
    background: #fffdf8;
    border: 1px solid rgba(42, 93, 74, 0.13);
    box-shadow: 0 12px 30px rgba(35, 40, 36, 0.07);
}

#category-page-content .food-list-card:hover,
#category-page-content .food-list-card:focus-visible {
    border-color: rgba(140, 63, 54, 0.28);
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.12);
}

#category-page-content .food-list-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

#category-page-content .food-list-card > div {
    padding: 16px;
}

#category-page-content .food-list-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    color: #245943;
    background: #eef4ef;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

#category-page-content .food-list-card h3 {
    color: #1f2722;
    font-size: 1.12rem;
    line-height: 1.42;
}

#category-page-content .food-list-card p {
    color: #4c5a51;
    line-height: 1.72;
}

#category-page-content .food-card-badges em {
    color: #8c3f36;
    background: #fff7ee;
    border-color: rgba(140, 63, 54, 0.16);
}

#category-page-content .food-list-card dl div {
    background: #f3f7f3;
    border: 1px solid rgba(42, 93, 74, 0.09);
}

#category-page-content .food-list-card dd {
    color: #245943;
}

@media (max-width: 900px) {
    #category-page-content .category-hero-grid,
    #category-page-content .category-layout {
        grid-template-columns: 1fr;
    }

    #category-page-content .category-filter-tools,
    #category-page-content .category-map {
        position: static;
    }
}

@media (max-width: 760px) {
    #category-page-content .archive-hero {
        padding-block: 28px 34px;
    }

    #category-page-content .category-hero-grid > div:first-child {
        border-left-width: 4px;
        padding: 20px;
    }

    #category-page-content .category-toolbar,
    #category-page-content .category-filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    #category-page-content .category-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #category-page-content .category-stats article {
        min-height: 84px;
        padding: 12px 8px;
        text-align: center;
    }

    #category-page-content .category-stats strong {
        font-size: 1.5rem;
    }

    #category-page-content .category-stats span {
        font-size: 12px;
    }

    #category-page-content .category-filter-tools {
        display: grid;
        gap: 10px;
        padding: 10px;
    }

    #category-page-content .filter-mode-toggle {
        justify-content: center;
        width: 100%;
    }

    #category-page-content .food-list-card > div {
        padding: 14px;
    }

    #category-page-content .food-list-card dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* v49: food magazine visual direction for home and category pages. */
.site-main .hero--food {
    min-height: min(820px, calc(100vh - 64px));
    padding-block: clamp(56px, 8vw, 104px) clamp(42px, 6vw, 72px);
    background:
        linear-gradient(90deg, rgba(24, 31, 26, 0.74) 0%, rgba(24, 31, 26, 0.52) 34%, rgba(24, 31, 26, 0.18) 68%, rgba(24, 31, 26, 0.08) 100%),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
}

.site-main .hero--food::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at 18% 18%, rgba(244, 213, 139, 0.20), transparent 32%);
}

.site-main .hero--food .hero__content {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
}

.site-main .hero--food .hero__content > .eyebrow,
.site-main .hero--food .hero__content > h1,
.site-main .hero--food .hero__content > .hero__text,
.site-main .hero--food .hero__content > .search-panel,
.site-main .hero--food .hero__content > .hero__actions {
    width: min(760px, 100%);
}

.site-main .hero--food .hero__content > .eyebrow {
    color: #fffaf1;
    background: rgba(36, 89, 67, 0.72);
    border-color: rgba(255, 253, 248, 0.22);
    backdrop-filter: blur(10px);
}

.site-main .hero--food h1 {
    color: #fffdf8;
    font-size: clamp(2.8rem, 6.8vw, 5.6rem);
    letter-spacing: 0;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.site-main .hero--food .hero__text {
    max-width: 680px;
    color: rgba(255, 253, 248, 0.92);
    font-size: clamp(1.08rem, 1.8vw, 1.26rem);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-main .hero--food .search-panel {
    background: rgba(255, 253, 248, 0.94);
    border: 0;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.site-main .hero--food .hero__actions .btn-secondary {
    background: #8c3f36;
    border-color: #8c3f36;
}

.site-main .hero--food .hero__actions .btn-ghost {
    color: #fffdf8;
    background: rgba(255, 253, 248, 0.14);
    border-color: rgba(255, 253, 248, 0.38);
    backdrop-filter: blur(10px);
}

.site-main .hero--food .hero-plan-strip {
    align-self: center;
    background: rgba(255, 253, 248, 0.92);
    border: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.site-main .hero--food .hero-plan-strip::before {
    color: #245943;
    font-size: 0.9rem;
}

.site-main .hero--food .hero-plan-strip a {
    min-height: 112px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 241, 0.96));
    box-shadow: none;
}

.site-main .hero--food .hero-plan-strip a::before {
    background: #8c3f36;
}

.site-main .hero--food .hero-plan-strip strong {
    font-size: 1.25rem;
}

#areas.content-section,
#food-guides.content-section,
#guides.content-section {
    background:
        radial-gradient(circle at 8% 0%, rgba(244, 213, 139, 0.16), transparent 26%),
        #f7f5ef;
}

#categories.content-section--white,
#restaurants.content-section--white,
#google-search.content-section--white {
    background: #fffdf8;
}

#areas .section-inner,
#categories .section-inner,
#food-guides .section-inner,
#restaurants .section-inner,
#guides .section-inner {
    width: min(1180px, 100%);
}

#areas .area-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

#areas .area-link {
    min-height: 120px;
    align-content: end;
    padding: 18px;
    color: #fffdf8;
    background:
        linear-gradient(180deg, rgba(36, 89, 67, 0.10), rgba(36, 89, 67, 0.82)),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
    border: 0;
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.14);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

#categories .category-grid a,
#guides .feature-grid a {
    background: #fffaf1;
    border: 0;
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.08);
}

#categories .category-grid a {
    min-height: 220px;
    align-content: end;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(255, 250, 241, 0.98)),
        radial-gradient(circle at 20% 10%, rgba(244, 213, 139, 0.24), transparent 32%);
}

#categories .category-grid h3,
#guides .feature-grid h3 {
    color: #1f2722;
    font-size: 1.35rem;
}

#categories .category-grid span {
    color: #8c3f36;
}

#restaurants .restaurant-card,
#food-guides .seo-reference-card {
    overflow: hidden;
    background: #fffdf8;
    border: 0;
    box-shadow: 0 20px 48px rgba(35, 40, 36, 0.10);
}

#restaurants .restaurant-card__media img,
#food-guides .seo-reference-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

#food-guides .seo-reference-card div,
#restaurants .restaurant-card__body {
    padding: 18px;
}

#category-page-content .archive-hero {
    padding-block: clamp(52px, 7vw, 92px);
    color: #fffdf8;
    background:
        linear-gradient(90deg, rgba(24, 31, 26, 0.78), rgba(24, 31, 26, 0.42) 54%, rgba(24, 31, 26, 0.16)),
        image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
}

#category-page-content .archive-hero::before {
    background:
        radial-gradient(circle at 88% 14%, rgba(244, 213, 139, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

#category-page-content .category-hero-grid > div:first-child {
    background: rgba(255, 253, 248, 0.12);
    border: 1px solid rgba(255, 253, 248, 0.22);
    border-left: 6px solid #f4d58b;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(12px);
}

#category-page-content .breadcrumb,
#category-page-content .breadcrumb a {
    color: rgba(255, 253, 248, 0.84);
}

#category-page-content .archive-hero .eyebrow {
    color: #fffaf1;
    background: rgba(36, 89, 67, 0.72);
    border-color: rgba(255, 253, 248, 0.22);
}

#category-page-content .archive-hero h1,
#category-page-content .archive-hero .lead-text,
#category-page-content .archive-hero .lead-text--small {
    color: #fffdf8;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

#category-page-content .category-toolbar a {
    border: 0;
    background: rgba(255, 253, 248, 0.90);
}

#category-page-content .category-toolbar .active {
    background: #8c3f36;
}

#category-page-content .category-stats article {
    background: rgba(255, 253, 248, 0.92);
    border: 0;
}

#category-page-content .category-seo-copy,
#category-page-content .category-map,
#category-page-content .category-filter-tools,
#category-page-content .food-list-card {
    border: 0;
    box-shadow: 0 20px 48px rgba(35, 40, 36, 0.09);
}

#category-page-content .category-filter-tools {
    background: rgba(255, 253, 248, 0.96);
}

#category-page-content .food-list-card img {
    aspect-ratio: 4 / 3;
}

#category-page-content .food-list-card h3 {
    font-size: 1.22rem;
}

@media (max-width: 900px) {
    #areas .area-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-main .hero--food {
        padding-block: 36px 32px;
        background:
            linear-gradient(180deg, rgba(24, 31, 26, 0.78), rgba(24, 31, 26, 0.42)),
            image-set(url("../images/hero-readable-food.webp") type("image/webp"), url("../images/hero-readable-food.png") type("image/png")) center / cover no-repeat;
    }

    .site-main .hero--food h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    #areas .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #areas .area-link {
        min-height: 104px;
    }

    #categories .category-grid a {
        min-height: auto;
    }

    #category-page-content .archive-hero {
        padding-block: 34px 36px;
    }

}

/* VERSIONED OVERRIDES: later visual refinements kept at the end to preserve current production behavior. */
/* v50: generated local area photography for the homepage region finder. */
#areas .area-grid--photo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

#areas .area-link--photo {
    position: relative;
    display: block;
    min-height: clamp(190px, 22vw, 265px);
    overflow: hidden;
    padding: 0;
    isolation: isolate;
    border-radius: 28px;
    background: #1f2722;
    box-shadow: 0 24px 58px rgba(31, 39, 34, 0.16);
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#areas .area-link--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 18, 16, 0.04) 0%, rgba(15, 18, 16, 0.18) 38%, rgba(15, 18, 16, 0.78) 100%),
        radial-gradient(circle at 16% 14%, rgba(255, 250, 241, 0.30), transparent 30%);
}

#areas .area-link--photo::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 253, 248, 0.28);
    border-radius: 22px;
}

#areas .area-link--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 500ms ease;
}

#areas .area-link--photo span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    display: grid;
    gap: 5px;
    color: #fffdf8;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.44);
}

#areas .area-link--photo strong {
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
}

#areas .area-link--photo small {
    font-size: 0.93rem;
    line-height: 1.45;
    color: rgba(255, 253, 248, 0.88);
}

#areas .area-link--photo:hover,
#areas .area-link--photo:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(31, 39, 34, 0.22);
    filter: saturate(1.04);
}

#areas .area-link--photo:hover img,
#areas .area-link--photo:focus-visible img {
    transform: scale(1.07);
}

@media (max-width: 900px) {
    #areas .area-grid--photo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    #areas .area-grid--photo {
        grid-template-columns: 1fr;
    }

    #areas .area-link--photo {
        min-height: 210px;
        border-radius: 24px;
    }

    #areas .area-link--photo::after {
        inset: 12px;
        border-radius: 18px;
    }

    #areas .area-link--photo span {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

/* v52: reader-first category copy and SEO guide layout. */
#category-page-content .category-reader-copy {
    display: grid;
    gap: 18px;
}

#category-page-content .category-reader-copy > p {
    max-width: 74ch;
    font-size: 1.03rem;
    line-height: 1.9;
    color: #3f473f;
}

#category-page-content .category-reader-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

#category-page-content .category-reader-steps article {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(36, 89, 67, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(250, 245, 236, 0.92));
}

#category-page-content .category-reader-steps strong {
    color: #245943;
    font-size: 1.06rem;
}

#category-page-content .category-reader-steps span {
    color: #596257;
    line-height: 1.7;
}

#category-page-content .category-map {
    display: grid;
    gap: 10px;
}

#category-page-content .category-map strong + span {
    margin-bottom: 8px;
}

.growth-quick-win,
.growth-home-proof {
    display: grid;
    gap: 12px;
    margin: 18px 0;
    padding: 20px;
    border: 1px solid rgba(38, 91, 68, 0.22);
    border-left: 6px solid #245943;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #fffdf8, #f4fbf3);
    box-shadow: 0 16px 34px rgba(44, 31, 24, 0.08);
}

.growth-quick-win strong,
.growth-home-proof strong {
    color: #173a2c;
    font-size: 1.08rem;
}

.growth-quick-win p,
.growth-home-proof span {
    margin: 0;
    color: #233229;
    line-height: 1.82;
}

.growth-quick-win ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.growth-quick-win li {
    position: relative;
    padding-left: 22px;
    color: #1f2c25;
    line-height: 1.72;
}

.growth-quick-win li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #8a2f3d;
    box-shadow: 0 0 0 4px rgba(138, 47, 61, 0.1);
}

.growth-focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 2px;
}

.growth-focus-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7efe7;
    color: #245943;
    font-weight: 800;
    font-size: 0.9rem;
}

.pillar-roadmap {
    border-top: 1px solid rgba(38, 91, 68, 0.12);
    border-bottom: 1px solid rgba(38, 91, 68, 0.12);
    background: #fffdfa;
}

.growth-home-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-home-proof article {
    display: grid;
    gap: 6px;
}

.growth-problem-guide,
.growth-reading-order {
    background: #fffdfa;
    border-top: 1px solid rgba(38, 91, 68, 0.12);
    border-bottom: 1px solid rgba(38, 91, 68, 0.12);
}

.growth-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.growth-problem-card,
.growth-order-card {
    display: grid;
    gap: 8px;
    min-height: 100%;
    padding: 18px;
    border: 1px solid rgba(38, 91, 68, 0.14);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(44, 31, 24, 0.07);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.growth-problem-card:hover,
.growth-problem-card:focus-visible,
.growth-order-card:hover,
.growth-order-card:focus-visible {
    border-color: rgba(138, 47, 61, 0.35);
    box-shadow: 0 20px 42px rgba(44, 31, 24, 0.11);
    transform: translateY(-2px);
}

.growth-problem-card strong,
.growth-order-card strong {
    color: #245943;
    font-size: 1.05rem;
    line-height: 1.45;
}

.growth-problem-card span,
.growth-order-card span {
    color: #566158;
    line-height: 1.7;
}

.growth-problem-card em {
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f7efe7;
    color: #8a2f3d;
    font-style: normal;
    font-weight: 800;
    font-size: 0.86rem;
}

.growth-order-list {
    display: grid;
    gap: 12px;
}

.image-audit-note {
    margin: 12px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(38, 91, 68, 0.18);
    border-left: 5px solid #245943;
    border-radius: 8px;
    background: #f7fbf5;
    color: #24342a;
    font-size: 0.95rem;
    line-height: 1.75;
}

.growth-pillar-article .growth-hero {
    border-color: rgba(38, 91, 68, 0.2);
}

.growth-extension-article .growth-hero {
    border-color: rgba(138, 47, 61, 0.16);
}

.growth-deep-dive h3 {
    margin: 24px 0 8px;
    color: #245943;
    font-size: 1.18rem;
}

.growth-editor-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.growth-editor-list li {
    padding: 12px 14px;
    border-left: 4px solid rgba(138, 47, 61, 0.58);
    border-radius: 10px;
    background: #fffdfa;
    color: #435048;
}

.growth-conversion-hotspot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(138, 47, 61, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 231, 0.94));
    box-shadow: 0 20px 44px rgba(44, 31, 24, 0.08);
}

.growth-conversion-hotspot h2,
.growth-conversion-hotspot p {
    margin: 0;
}

.growth-conversion-hotspot p {
    color: #4f5b53;
    line-height: 1.78;
}

.growth-pillar-article .pillar-roadmap,
.growth-pillar-article .growth-deep-dive {
    background:
        linear-gradient(180deg, #fffdfa, #f7fbf7);
}

.growth-extension-article .growth-deep-dive {
    max-width: 920px;
}

.growth-category-topic {
    background: #fffdfa;
}

.growth-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.growth-topic-grid article {
    padding: 18px;
    border: 1px solid rgba(38, 91, 68, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(44, 31, 24, 0.06);
}

.growth-topic-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #245943;
    font-size: 1.05rem;
}

.growth-topic-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: #4f5b53;
    line-height: 1.65;
}

@media (max-width: 820px) {
    #category-page-content .category-reader-steps {
        grid-template-columns: 1fr;
    }

    #category-page-content .category-reader-copy > p {
        font-size: 1rem;
        line-height: 1.82;
    }
}

@media (max-width: 900px) {
    .restaurant-growth-page .growth-hero,
    .growth-hero__grid,
    .growth-feature-card,
    .growth-home-proof,
    .growth-conversion-hotspot,
    .growth-topic-grid,
    .growth-audit-strip {
        grid-template-columns: 1fr;
    }

    .growth-grid,
    .growth-article-list,
    .growth-problem-grid,
    .satellite-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .restaurant-growth-page .growth-hero {
        margin-top: 10px;
        border-radius: 0;
        padding-block: 30px 34px;
    }

    .restaurant-growth-page .growth-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.55rem);
    }

    .growth-grid,
    .growth-article-list,
    .growth-problem-grid,
    .satellite-list {
        grid-template-columns: 1fr;
    }

    .growth-check-grid {
        grid-template-columns: 1fr;
    }

    .growth-summary-card,
    .growth-feature-card,
    .growth-cta,
    .growth-card,
    .satellite-list article,
    .growth-article-list a,
    .growth-article-list .growth-card {
        padding: 16px;
    }
}

/* HOME MOBILE FIX: keep the homepage first screen single-column after later visual overrides. */
@media (max-width: 760px) {
    .site-main .hero--food {
        min-height: auto;
        padding: 28px 14px 24px;
        overflow: hidden;
    }

    .site-main .hero--food .hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        width: min(100%, 560px);
    }

    .site-main .hero--food .hero__content > .eyebrow,
    .site-main .hero--food .hero__content > h1,
    .site-main .hero--food .hero__content > .hero__text,
    .site-main .hero--food .hero__content > .search-panel,
    .site-main .hero--food .hero__content > .hero__actions,
    .site-main .hero--food .hero-plan-strip {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        max-width: 100%;
    }

    .site-main .hero--food h1 {
        font-size: clamp(2rem, 10.4vw, 2.85rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .site-main .hero--food .hero__text {
        font-size: 16px;
        line-height: 1.78;
    }

    .site-main .hero--food .search-panel {
        margin-top: 4px;
        padding: 14px;
    }

    .site-main .hero--food .search-panel__row,
    .site-main .hero--food .hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .site-main .hero--food .search-panel input,
    .site-main .hero--food .search-panel .btn,
    .site-main .hero--food .hero__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .site-main .hero--food .hero-plan-strip {
        align-self: auto;
        margin-top: 0;
        padding: 12px;
        gap: 10px;
    }

    .site-main .hero--food .hero-plan-strip a {
        min-height: auto;
        padding: 14px 14px 14px 18px;
    }
}

@media (max-width: 420px) {
    .site-main .hero--food {
        padding-inline: 12px;
    }

    .site-main .hero--food .hero__content > .eyebrow {
        max-width: 100%;
        white-space: normal;
    }

    .site-main .hero--food h1 {
        font-size: clamp(1.9rem, 10vw, 2.45rem);
    }

    #areas .area-link--photo {
        min-height: 188px;
        border-radius: 18px;
    }
}

/* RESTAURANT GROWTH READABILITY FIX: hero cards must keep dark text inside light panels. */
.restaurant-growth-page .growth-hero .growth-quick-win,
.restaurant-growth-page .growth-hero .growth-media-card,
.restaurant-growth-page .growth-hero .image-audit-note {
    color: #233229;
}

.restaurant-growth-page .growth-hero .growth-quick-win {
    background: linear-gradient(135deg, #fffdf8, #f4fbf3);
    border-color: rgba(38, 91, 68, 0.22);
}

.restaurant-growth-page .growth-hero .growth-quick-win strong {
    color: #173a2c;
}

.restaurant-growth-page .growth-hero .growth-quick-win p,
.restaurant-growth-page .growth-hero .growth-quick-win li,
.restaurant-growth-page .growth-hero .growth-media-card p,
.restaurant-growth-page .growth-hero .image-audit-note {
    color: #233229;
    text-shadow: none;
}

.restaurant-growth-page .growth-hero .growth-media-card {
    background: #fffdf8;
}

.restaurant-growth-page .growth-hero .image-audit-note {
    background: #f7fbf5;
    border-color: rgba(38, 91, 68, 0.18);
    border-left-color: #245943;
}

/* PAID SERVICE PAGES: keep the new restaurant service cards readable on mobile. */
@media (max-width: 760px) {
    .paid-service-strip {
        padding: 18px;
    }

    .restaurant-tools-panel {
        padding: 18px;
    }

    .restaurant-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .restaurant-tool-card {
        min-height: 204px;
        padding: 14px;
    }

    .restaurant-tool-card h3 {
        font-size: 1rem;
    }

    .restaurant-tool-card p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .paid-service-grid,
    .paid-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .paid-service-page .subsidy-summary-card strong {
        font-size: 34px;
    }
}

/* WHAT TO EAT TOOL: mobile-first decision cards and readable SEO content. */
.what-to-eat-page {
    background: linear-gradient(180deg, #fbfaf6 0%, #f7f5ef 48%, #f3f1ea 100%);
}

.what-to-eat-hero {
    padding: 46px 0 24px;
}

.what-to-eat-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.what-to-eat-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.what-to-eat-hero p {
    max-width: 760px;
    color: #344036;
}

.what-to-eat-hero__media {
    margin: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid rgba(47, 102, 80, 0.14);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.1);
}

.what-to-eat-hero__media img,
.what-to-eat-home-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
}

.what-to-eat-hero__media figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.what-to-eat-tool,
.what-to-eat-home-card {
    background: linear-gradient(135deg, var(--paper), #f8fbf6);
    border: 1px solid rgba(47, 102, 80, 0.16);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(35, 40, 36, 0.08);
}

.what-to-eat-tool {
    padding: clamp(18px, 4vw, 30px);
}

.what-to-eat-tool__intro {
    max-width: 840px;
    margin-bottom: 24px;
}

.what-to-eat-tool__intro h2,
.what-to-eat-step h2,
.what-to-eat-copy h2,
.what-to-eat-home-card h2 {
    color: var(--ink);
}

.what-to-eat-step {
    display: grid;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(47, 102, 80, 0.12);
}

.what-to-eat-step__heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.what-to-eat-step__heading > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.what-to-eat-step__heading h2 {
    margin: 0 0 4px;
    font-size: clamp(22px, 3vw, 30px);
}

.what-to-eat-step__heading p {
    margin: 0;
    color: #465248;
}

.what-to-eat-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.what-to-eat-options--companion {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.what-to-eat-options button {
    display: grid;
    gap: 5px;
    min-height: 94px;
    padding: 15px 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(35, 40, 36, 0.05);
    font: inherit;
    font-weight: 900;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.what-to-eat-options button span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.what-to-eat-options button:hover,
.what-to-eat-options button:focus-visible,
.what-to-eat-options button.is-selected {
    color: var(--green-dark);
    background: #eef7ef;
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 102, 80, 0.16);
}

.what-to-eat-wheel-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.what-to-eat-wheel-card {
    display: grid;
    gap: 8px;
    min-height: 196px;
    justify-items: center;
    align-content: center;
    padding: 18px 12px;
    color: var(--ink);
    background: radial-gradient(circle at 50% 28%, #fff8ee 0 28%, #f4fbf3 29% 52%, #fffdf8 53% 100%);
    border: 1px solid rgba(47, 102, 80, 0.18);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(35, 40, 36, 0.08);
    font: inherit;
    text-align: center;
    cursor: pointer;
}

.what-to-eat-wheel-card__disc {
    position: relative;
    display: inline-flex;
    width: 86px;
    height: 86px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: conic-gradient(from 0deg, var(--green), var(--gold), var(--accent), var(--green));
    border: 6px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(47, 102, 80, 0.18);
    font-size: 28px;
    font-weight: 950;
}

.what-to-eat-wheel-card__disc::after {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 14px solid var(--accent-dark);
    transform: translateX(-50%);
}

.what-to-eat-wheel-card strong {
    color: var(--green-dark);
    font-size: 22px;
    line-height: 1.2;
}

.what-to-eat-wheel-card small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.what-to-eat-wheel-card:hover,
.what-to-eat-wheel-card:focus-visible,
.what-to-eat-wheel-card.is-selected {
    background: #eef7ef;
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 102, 80, 0.16), 0 16px 30px rgba(35, 40, 36, 0.11);
}

.what-to-eat-wheel-card.is-selected .what-to-eat-wheel-card__disc,
.what-to-eat-wheel-card:focus-visible .what-to-eat-wheel-card__disc,
.what-to-eat-wheel-card:hover .what-to-eat-wheel-card__disc {
    animation: what-to-eat-spin 0.48s ease-out;
}

.what-to-eat-spinner {
    position: relative;
    display: grid;
    width: min(500px, calc(100vw - 48px));
    aspect-ratio: 1;
    place-items: center;
    margin: 28px auto 4px;
    scroll-margin-top: 88px;
}

.what-to-eat-spinner__pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    z-index: 4;
    width: 0;
    height: 0;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-top: 38px solid var(--accent-dark);
    border-bottom: 0;
    filter: drop-shadow(0 8px 10px rgba(35, 40, 36, 0.18));
    transform: translateX(-50%);
}

.what-to-eat-spinner__wheel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        repeating-conic-gradient(
            from -90deg,
            #fff8ee 0 var(--segment-angle),
            #eaf5ee var(--segment-angle) calc(var(--segment-angle) * 2),
            #f8efe8 calc(var(--segment-angle) * 2) calc(var(--segment-angle) * 3),
            #eef4ef calc(var(--segment-angle) * 3) calc(var(--segment-angle) * 4)
        );
    border: 10px solid var(--paper);
    border-radius: 50%;
    box-shadow: 0 20px 44px rgba(35, 40, 36, 0.14), inset 0 0 0 1px rgba(47, 102, 80, 0.16);
    transition: transform var(--spin-duration, 3s) cubic-bezier(0.12, 0.72, 0.16, 1);
}

.what-to-eat-spinner__wheel.is-priming {
    transition: none;
}

.what-to-eat-spinner__wheel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-conic-gradient(
            from -90deg,
            rgba(47, 102, 80, 0.22) 0 1px,
            transparent 1px var(--segment-angle)
        );
    border-radius: 50%;
    pointer-events: none;
}

.what-to-eat-spinner__label {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    box-sizing: border-box;
    color: #233229;
    text-decoration: none;
    pointer-events: none;
    transform: rotate(var(--slot-rotation));
    transform-origin: 50% 50%;
}

.what-to-eat-spinner__label span {
    position: absolute;
    top: 50%;
    left: calc(50% + var(--label-radius, 32%));
    display: flex;
    box-sizing: border-box;
    width: var(--label-width, 30%);
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    color: #233229;
    cursor: pointer;
    font-size: clamp(13px, 1.9vw, 18px);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
    pointer-events: auto;
    transform: translate(-50%, -50%) rotate(var(--text-rotation, calc(var(--slot-rotation) * -1)));
}

.what-to-eat-spinner__label:hover span,
.what-to-eat-spinner__label:focus-visible span {
    color: var(--accent-dark);
    outline: none;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.what-to-eat-spinner__label.is-result {
    color: var(--accent-dark);
}

.what-to-eat-spinner__label.is-result span {
    color: var(--accent-dark);
    filter: drop-shadow(0 0 8px rgba(126, 42, 42, 0.28));
    font-size: clamp(12px, 2vw, 17px);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.what-to-eat-spinner__center {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    width: clamp(96px, 22vw, 136px);
    height: clamp(96px, 22vw, 136px);
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border: 8px solid var(--paper);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(35, 40, 36, 0.18);
    cursor: pointer;
    font-size: clamp(18px, 3vw, 24px);
    font-family: inherit;
    font-weight: 950;
    text-align: center;
}

.what-to-eat-spinner__center:hover,
.what-to-eat-spinner__center:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 102, 80, 0.2), 0 14px 32px rgba(35, 40, 36, 0.22);
    transform: scale(1.02);
}

.what-to-eat-actions {
    padding-top: 10px;
}

.what-to-eat-result {
    margin-top: 20px;
    padding: clamp(18px, 4vw, 26px);
    color: #243229;
    background: #fff8ee;
    border: 1px solid rgba(168, 122, 44, 0.26);
    border-radius: 12px;
}

.what-to-eat-result.is-spinning {
    animation: what-to-eat-pop 0.28s ease-out;
}

.what-to-eat-result h2 {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.16;
}

.what-to-eat-result p {
    max-width: 820px;
    color: #344036;
}

.what-to-eat-result__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.what-to-eat-copy {
    max-width: 900px;
}

.what-to-eat-copy p {
    color: #344036;
}

.what-to-eat-home-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    gap: 22px;
    align-items: center;
    padding: clamp(18px, 4vw, 28px);
}

.what-to-eat-home-card p {
    max-width: 700px;
    color: #465248;
}

.what-to-eat-home-card__note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

@keyframes what-to-eat-pop {
    from {
        transform: translateY(6px);
        opacity: 0.68;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes what-to-eat-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .what-to-eat-hero__grid,
    .what-to-eat-home-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .what-to-eat-options,
    .what-to-eat-options--companion,
    .what-to-eat-wheel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .what-to-eat-hero {
        box-sizing: border-box;
        padding: 28px 18px 20px;
    }

    .what-to-eat-hero__grid {
        gap: 16px;
    }

    .what-to-eat-hero h1 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .what-to-eat-hero p {
        max-width: 100%;
    }

    .what-to-eat-hero__media {
        padding: 8px;
    }

    .what-to-eat-hero__media figcaption {
        padding: 0 2px 2px;
        font-size: 12px;
        line-height: 1.45;
    }

    .what-to-eat-options,
    .what-to-eat-options--companion {
        gap: 8px;
        grid-template-columns: minmax(0, 1fr);
    }

    .what-to-eat-wheel-grid {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .what-to-eat-options button {
        min-height: 76px;
    }

    .what-to-eat-step__heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .what-to-eat-wheel-card {
        min-height: 108px;
        gap: 4px;
        align-items: center;
        justify-items: center;
        align-content: center;
        padding: 8px 5px;
        text-align: center;
    }

    .what-to-eat-wheel-card__disc {
        width: 44px;
        height: 44px;
        border-width: 4px;
        font-size: 18px;
    }

    .what-to-eat-wheel-card__disc::after {
        top: -8px;
        border-right-width: 5px;
        border-left-width: 5px;
        border-bottom-width: 10px;
    }

    .what-to-eat-wheel-card strong {
        font-size: 17px;
        line-height: 1.08;
    }

    .what-to-eat-wheel-card small {
        max-width: 74px;
        color: #536258;
        font-size: 11.5px;
        line-height: 1.18;
    }

    .what-to-eat-wheel-card--dessert strong {
        font-size: 15px;
    }

    .what-to-eat-result__actions {
        display: grid;
    }

    .what-to-eat-spinner {
        width: min(326px, calc(100vw - 42px));
        scroll-margin-top: 72px;
    }

    .what-to-eat-spinner__wheel {
        border-width: 7px;
    }

    .what-to-eat-spinner__label {
        --label-radius: 33%;
        --label-width: 31%;
    }

    .what-to-eat-spinner__label span {
        min-height: 30px;
        padding: 3px 5px;
        font-size: 11.5px;
        line-height: 1.15;
    }

    .what-to-eat-spinner__label.is-result span {
        font-size: 12.5px;
        text-decoration-thickness: 2px;
    }

    .what-to-eat-spinner__center {
        width: 76px;
        height: 76px;
        border-width: 6px;
        font-size: 15px;
    }
}

.ad-popup-dialog {
    background: transparent;
    border: 0;
    max-height: min(90vh, 900px);
    max-width: min(92vw, 760px);
    overflow: visible;
    padding: 0;
}

.ad-popup-dialog::backdrop {
    background: rgba(13, 20, 18, 0.58);
}

.ad-popup-image-link {
    display: block;
    line-height: 0;
}

.ad-popup-image-link img {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    display: block;
    height: auto;
    max-height: min(86vh, 760px);
    max-width: min(92vw, 760px);
    object-fit: contain;
    width: 100%;
}

.ad-popup-close {
    align-items: center;
    background: #fffdf8;
    border: 1px solid rgba(27, 35, 32, 0.2);
    border-radius: 999px;
    color: #17211b;
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -12px;
    top: -12px;
    width: 44px;
    z-index: 2;
}

.ad-popup-close:focus-visible,
.ad-popup-image-link:focus-visible,
.ad-line-mini:focus-visible {
    outline: 3px solid rgba(18, 95, 71, 0.32);
    outline-offset: 3px;
}

.ad-line-mini {
    background: #06c755;
    border-radius: 999px;
    bottom: 18px;
    box-shadow: 0 12px 28px rgba(6, 199, 85, 0.28);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    padding: 11px 16px;
    position: fixed;
    right: 18px;
    text-decoration: none;
    z-index: 42;
}

@media (prefers-reduced-motion: no-preference) {
    .ad-popup-dialog[open] {
        animation: ad-popup-enter 180ms ease-out;
    }

    @keyframes ad-popup-enter {
        from {
            opacity: 0;
            transform: translateY(12px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

@media (max-width: 860px) {
    .ad-popup-dialog {
        max-width: min(94vw, 520px);
    }

    .ad-popup-image-link img {
        border-radius: 16px;
        max-width: min(94vw, 520px);
    }

    .ad-popup-close {
        right: -8px;
        top: -8px;
    }

    .ad-line-mini {
        bottom: 88px;
        right: 14px;
    }
}
