/* Orange Job 2026 refresh: Japanese-first editorial job-board UI. */
:root {
    --orange: #c84312;
    --orange-dark: #9d2f08;
    --orange-soft: #fff0e7;
    --ink: #251f1d;
    --ink-soft: #483f3b;
    --muted: #6e625d;
    --cream: #fffaf6;
    --sand: #f5ece5;
    --line: #e4d7cf;
    --green: #08745f;
    --green-soft: #e9f6f1;
    --purple: #5547a4;
    --purple-soft: #f0eefb;
    --shadow-sm: 0 8px 22px rgba(54, 35, 25, .07);
    --shadow-md: 0 18px 48px rgba(54, 35, 25, .11);
    --radius-sm: 9px;
    --radius: 14px;
    --radius-lg: 20px;
    --container: 1240px;
}

body {
    color: var(--ink);
    background: #fff;
    font-size: 17px;
    line-height: 1.75;
}

h1, h2, h3 { letter-spacing: -.02em; }

p, li, dd { overflow-wrap: anywhere; }

a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--ink) !important;
}

small { font-size: .875em; }

.container { width: min(calc(100% - 48px), var(--container)); }

.section { padding: 78px 0; }
.section--tint, .section--soft { background: var(--cream); }

.section-heading { margin-bottom: 30px; }
.section-heading h2 { font-size: clamp(29px, 3.2vw, 42px); }
.section-heading > p,
.section-heading--split > p { font-size: 16px; }
.section-heading--split { align-items: end; }
.section-heading--center { max-width: 780px; }

.section-label,
.home-kicker {
    margin: 0 0 8px;
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .06em;
}

.section-label--light { color: #ffc5a7; }

.eyebrow {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: .08em;
}

.button {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 800;
}

.button--primary {
    color: #fff;
    background: var(--orange);
    box-shadow: none;
}

.button--primary:hover { background: var(--orange-dark); box-shadow: none; }
.button--small { min-height: 44px; padding: 9px 17px; font-size: 15px; }
.button--outline-dark { color: #fff; background: transparent; border-color: rgba(255,255,255,.56); }
.button--outline-dark:hover { background: rgba(255,255,255,.1); }

.text-link { min-height: 44px; align-items: center; font-size: 15px; }

/* Landing pages: let visitors reach live listings before the SEO guide. */
.landing-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.landing-jobs { scroll-margin-top: 74px; border-bottom: 1px solid var(--line); }

.age-notice { font-size: 14px; }
.age-notice__inner { min-height: 36px; }

.site-header { background: rgba(255,255,255,.97); box-shadow: 0 1px 0 var(--line); }
.site-header__inner { min-height: 74px; }
.site-nav { gap: 2px; }
.site-nav > a { min-height: 44px; padding: 10px 13px; border-radius: 8px; font-size: 14px; }
.site-nav > a:not(.nav-favorite):hover,
.site-nav > a.is-active { color: var(--orange-dark); background: var(--orange-soft); }
.site-nav .nav-favorite { border-radius: 8px; }

/* Home: the real search is the visual centerpiece. */
.home-hero {
    padding: 58px 0 0;
    background: #fff7f1;
    border-bottom: 1px solid var(--line);
}

.home-hero__inner {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) 380px;
}

.home-hero__copy { padding: 10px 0 34px; }
.home-hero__copy h1 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.18;
}
.home-hero__copy h1 span { color: var(--orange-dark); }
.home-hero__nowrap { display: inline-block; white-space: nowrap; }
.home-hero__copy > p:not(.home-kicker) { max-width: 740px; margin-bottom: 22px; color: var(--ink-soft); font-size: 18px; }
.home-proof { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; list-style: none; }
.home-proof li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.home-proof li::before { position: absolute; left: 0; color: var(--green); content: "✓"; }

.home-hero__guide {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.home-hero__guide > p { margin-bottom: 15px; font-size: 14px; font-weight: 900; }
.home-hero__guide ol { display: grid; gap: 0; margin: 0 0 10px; padding: 0; list-style: none; }
.home-hero__guide li { display: grid; gap: 1px 13px; padding: 12px 0; border-top: 1px solid var(--line); grid-template-columns: 32px 1fr; }
.home-hero__guide li span { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-size: 14px; font-weight: 900; grid-row: 1 / 3; }
.home-hero__guide li b { font-size: 15px; }
.home-hero__guide li small { color: var(--muted); font-size: 14px; }
.home-hero__guide > a { display: inline-flex; min-height: 44px; align-items: center; color: var(--orange-dark); font-size: 14px; font-weight: 900; }

.home-search-card {
    position: relative;
    bottom: -46px;
    padding: 25px 28px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.home-search-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.home-search-card__head h2 { margin: 0; font-size: 24px; }
.home-search-card__head p { margin: 0; color: var(--muted); font-size: 14px; }

.search-panel,
.search-panel--compact {
    display: grid;
    gap: 10px;
    align-items: stretch;
    grid-template-columns: minmax(180px, 1.2fr) minmax(120px, .78fr) minmax(480px, 2.6fr) auto;
}
.search-panel__field { min-width: 0; padding: 10px 13px 9px; background: #fff; border: 1px solid #cfc0b7; border-radius: 8px; }
.search-panel__field label { margin-bottom: 2px; color: var(--muted); font-size: 14px; letter-spacing: 0; }
.search-panel__field select,
.search-panel__field input { min-height: 44px; padding: 7px 24px 7px 0; font-size: 15px; font-weight: 700; outline: 0; }
.search-panel__field:focus-within { border-color: var(--orange-dark); box-shadow: 0 0 0 3px rgba(157,47,8,.16); }
.search-panel__field select:focus-visible,
.search-panel__field input:focus-visible { outline: 0; }
.search-panel__advanced { display: block; min-width: 0; }
.search-panel__advanced-fields { display: grid; height: 100%; gap: 10px; grid-template-columns: repeat(4,minmax(0,1fr)); }
.search-panel__advanced > summary { display: none; }
.search-panel__feature-picker { position: relative; min-width: 0; background: #fff; border: 1px solid #cfc0b7; border-radius: 8px; }
.search-panel__feature-picker[open] { border-color: var(--orange-dark); box-shadow: 0 0 0 3px rgba(157,47,8,.16); }
.search-panel__feature-picker > summary { display: grid; min-height: 65px; align-content: center; padding: 9px 34px 8px 13px; cursor: pointer; list-style: none; }
.search-panel__feature-picker > summary::-webkit-details-marker { display: none; }
.search-panel__feature-picker > summary::after { position: absolute; top: 50%; right: 13px; width: 8px; height: 8px; border-right: 2px solid var(--orange-dark); border-bottom: 2px solid var(--orange-dark); content: ""; transform: translateY(-70%) rotate(45deg); }
.search-panel__feature-picker[open] > summary::after { transform: translateY(-25%) rotate(225deg); }
.search-panel__feature-picker > summary span { color: var(--muted); font-size: 14px; font-weight: 800; }
.search-panel__feature-picker > summary b { overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.search-panel__feature-options { position: absolute; z-index: 25; top: calc(100% + 7px); right: 0; display: grid; width: min(390px, 85vw); max-height: 330px; overflow-y: auto; padding: 10px; background: #fff; border: 1px solid #cfc0b7; border-radius: 8px; box-shadow: var(--shadow-md); grid-template-columns: repeat(2,minmax(0,1fr)); }
.search-panel__feature-options label { display: flex; min-height: 44px; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 800; }
.search-panel__feature-options label:hover { background: var(--orange-soft); }
.search-panel__feature-options input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--orange-dark); }
.search-panel__submit { min-width: 145px; border-radius: 8px; }

.quick-links { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 15px; font-size: 14px; }
.quick-links > span { color: var(--muted); font-weight: 800; }
.quick-links a { padding: 5px 10px; color: var(--orange-dark); background: var(--orange-soft); border-radius: 6px; font-weight: 800; }

.home-shortcuts { padding: 78px 0 28px; }
.shortcut-grid { display: grid; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; grid-template-columns: repeat(4, 1fr); }
.shortcut-grid > a { display: grid; align-items: center; gap: 2px 12px; min-height: 94px; padding: 18px; grid-template-columns: 42px 1fr; }
.shortcut-grid > a + a { border-left: 1px solid var(--line); }
.shortcut-grid > a:hover { background: var(--cream); }
.shortcut-icon { display: grid; width: 40px; height: 40px; place-items: center; color: #fff; background: var(--ink); border-radius: 8px; font-size: 14px; font-weight: 900; grid-row: 1 / 3; }
.shortcut-grid b { font-size: 15px; }
.shortcut-grid small { color: var(--muted); font-size: 14px; }

.area-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
.area-grid a { position: relative; display: grid; gap: 4px; min-height: 138px; padding: 22px 48px 20px 21px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.area-grid a:hover { border-color: #c98b70; box-shadow: var(--shadow-sm); }
.area-grid strong { font-size: 21px; }
.area-grid span { color: var(--orange-dark); font-size: 14px; font-weight: 900; }
.area-grid small { color: var(--muted); font-size: 14px; }
.area-grid a > b { position: absolute; top: 50%; right: 18px; transform: translateY(-50%); }

.need-grid { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.need-grid a { display: grid; min-height: 62px; align-items: center; gap: 11px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 15px; font-weight: 800; grid-template-columns: 26px 1fr auto; }
.need-grid a:hover { color: var(--orange-dark); border-color: #c98b70; }
.need-grid span { color: var(--green); }

.editorial-section { padding: 74px 0; color: #fff; background: #292321; }
.editorial-grid { display: grid; gap: 70px; grid-template-columns: .9fr 1.1fr; }
.editorial-grid h2 { font-size: clamp(29px, 3.2vw, 42px); }
.editorial-grid > div > p:not(.section-label) { color: #d6cbc5; font-size: 16px; }
.editorial-grid ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.editorial-grid li { border-bottom: 1px solid rgba(255,255,255,.18); }
.editorial-grid li a { display: grid; min-height: 82px; align-content: center; gap: 2px; padding: 12px 4px; }
.editorial-grid li b { font-size: 17px; }
.editorial-grid li span { color: #c8bbb5; font-size: 14px; }

.business-cta--new { padding: 60px 0; background: #f2e7de; }
.business-cta--new .business-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.business-cta--new h2 { margin-bottom: 9px; font-size: 30px; }
.business-cta--new p { max-width: 760px; margin: 0; color: var(--ink-soft); font-size: 15px; }
.business-cta__buttons { display: flex; flex: 0 0 auto; gap: 10px; }

/* Listing and cards */
.page-hero--jobs { padding: 38px 0 34px; background: #fff7f1; }
.page-hero--jobs .eyebrow { display: none; }
.page-hero--jobs h1 { margin: 8px 0 4px; font-size: 36px; }
.page-hero--jobs p { font-size: 15px; }
.jobs-search-strip { padding: 18px 0; background: #fff; border-block: 1px solid var(--line); }
.jobs-section { padding-top: 42px; }
.jobs-layout { gap: 30px; grid-template-columns: 265px minmax(0,1fr); }
.filter-sidebar { max-height: calc(100vh - 120px); overflow-y: auto; padding: 20px; border-radius: 10px; scrollbar-gutter: stable; }
.filter-sidebar__head h2 { font-size: 19px; }
.filter-sidebar__head a { min-height: 44px; align-items: center; font-size: 14px; }
.filter-group label { font-size: 14px; }
.filter-group input, .filter-group select { min-height: 46px; padding: 9px 11px; font-size: 15px; }
.filter-group--checks { min-width: 0; padding: 0; border: 0; }
.filter-group--checks legend { margin-bottom: 7px; padding: 0; font-size: 14px; font-weight: 800; }
.filter-check-grid { display: grid; gap: 4px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.filter-check-grid label { display: flex; min-width: 0; min-height: 44px; align-items: center; gap: 7px; padding: 5px 6px; background: #fbf8f5; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; line-height: 1.35; }
.filter-check-grid label:has(input:checked) { color: var(--orange-dark); background: var(--orange-soft); border-color: #d79575; }
.filter-check-grid input { width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; padding: 0; accent-color: var(--orange-dark); }
.filter-check-grid span { min-width: 0; font-size: 12px; font-weight: 800; }
.filter-help b { font-size: 14px; }
.filter-help p { font-size: 14px; }
.results-count { font-size: 15px; }
.results-count strong { font-size: 28px; }
.results-note { font-size: 14px; }
.sort-form label { font-size: 14px; }
.sort-form select { min-height: 44px; font-size: 14px; }
.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 18px; }
.active-filters > span { color: var(--muted); font-size: 14px; font-weight: 900; }
.active-filters a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 7px 10px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-weight: 800; }
.active-filters a:hover { border-color: #c98b70; }
.active-filters a b { color: var(--orange-dark); font-size: 16px; }
.active-filters .active-filters__reset { color: var(--orange-dark); background: transparent; border-color: transparent; text-decoration: underline; }

.recent-jobs { margin-bottom: 24px; padding: 18px; background: #fff7f1; border: 1px solid #e5b69f; border-radius: 9px; }
.recent-jobs__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.recent-jobs__head span { color: var(--orange-dark); font-size: 12px; font-weight: 900; }
.recent-jobs__head h2 { margin: 2px 0 0; font-size: 19px; }
.recent-jobs__head button { min-height: 44px; color: var(--muted); font-size: 14px; text-decoration: underline; }
.recent-jobs__list { display: grid; gap: 8px; grid-template-columns: repeat(3,minmax(0,1fr)); }
.recent-jobs__list a { display: grid; min-width: 0; min-height: 88px; align-content: center; padding: 11px 13px; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.recent-jobs__list a:hover { border-color: #c98b70; }
.recent-jobs__list span, .recent-jobs__list small { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.recent-jobs__list strong { overflow: hidden; margin: 2px 0; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }

.job-grid { gap: 16px; }
.job-list { gap: 16px; }
.job-card { padding: 20px; border-radius: 11px; transition: border-color .18s ease, box-shadow .18s ease; }
.job-card:hover { border-color: #c98b70; box-shadow: var(--shadow-sm); transform: none; }
.job-card__topline { margin-bottom: 13px; }
.source-badge, .group-badge { padding: 5px 9px; border-radius: 5px; font-size: 14px; }
.job-card__heading { gap: 13px; grid-template-columns: 64px minmax(0,1fr) auto; }
.job-thumbnail { display: grid; width: 64px; height: 64px; place-content: center; gap: 0; color: #fff; background: #8e3d20; border-radius: 9px; text-align: center; }
.job-thumbnail--av { background: #4c467d; }
.job-thumbnail span { font-size: 17px; font-weight: 900; }
.job-thumbnail small { color: rgba(255,255,255,.82); font-size: 12px; }
.job-card__category { font-size: 14px; }
.job-card h3 { margin: 1px 0 3px; font-size: 21px; }
.job-card__location { font-size: 14px; }
.favorite-button { min-width: 44px; height: 44px; font-size: 14px; }
.job-card__salary { margin: 15px 0 12px; padding: 12px 14px; background: var(--orange-soft); border-radius: 8px; }
.job-card__salary span { font-size: 14px; }
.job-card__salary strong { font-size: 20px; }
.job-card__facts { margin-bottom: 12px; border-radius: 8px; }
.job-card__facts > div { padding: 9px 11px; }
.job-card__facts dt { font-size: 14px; }
.job-card__facts dd { white-space: normal; font-size: 14px; }
.job-card__summary { margin-bottom: 11px; font-size: 14px; }
.tag-list span { padding: 5px 9px; font-size: 14px; }
.tag-list--large span { font-size: 14px; }
.job-card__source-note { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 11px; color: var(--muted); border-top: 1px solid var(--line); font-size: 14px; }
.job-card__source-note a { color: var(--orange-dark); font-weight: 800; }
.job-card__actions { margin-top: 12px; }
.compare-button { min-height: 44px; font-size: 14px; }

.pagination { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.pagination__status { margin: 0 0 13px; color: var(--muted); font-size: 14px; text-align: center; }
.pagination__status span { white-space: nowrap; }
.pagination__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.pagination__page,
.pagination__direction,
.pagination__gap { display: inline-grid; min-width: 44px; min-height: 44px; place-items: center; padding: 7px 11px; border: 1px solid var(--line); border-radius: 7px; font-size: 15px; font-weight: 800; }
.pagination a:hover { color: var(--orange-dark); background: var(--orange-soft); border-color: #c98b70; }
.pagination__page.is-current { color: #fff; background: var(--orange-dark); border-color: var(--orange-dark); }
.pagination__direction.is-disabled { color: #aaa19c; background: #f6f3f1; }
.pagination__gap { min-width: 28px; padding-inline: 3px; border-color: transparent; }

/* Job detail */
.detail-top { padding: 34px 0 28px; background: #fff7f1; }
.detail-source { font-size: 14px; }
.detail-source > span, .detail-source p { font-size: 14px; }
.detail-heading { margin-top: 20px; }
.detail-heading h1 { font-size: clamp(29px,4vw,44px); }
.detail-heading__copy p { font-size: 15px; }
.detail-heading__tags span { font-size: 14px; }
.detail-heading__actions { display: flex; gap: 8px; }
.compare-button--detail { min-width: 94px; }
.compare-page-shortcut { display: inline-flex; min-height: 44px; align-items: center; padding: 0 10px; color: var(--orange-dark); font-size: 14px; font-weight: 900; text-decoration: underline; }
.job-thumbnail--large { width: 78px; height: 78px; border-radius: 10px; }
.job-thumbnail--large span { font-size: 21px; }
.detail-trust-list { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 19px 0 0; padding: 0; list-style: none; }
.detail-trust-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.detail-trust-list li::before { position: absolute; left: 0; color: var(--green); content: "✓"; }
.detail-jump-nav { position: sticky; z-index: 20; top: 74px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.detail-jump-nav .container { display: flex; overflow-x: auto; scrollbar-width: thin; }
.detail-jump-nav a { flex: 0 0 auto; min-height: 50px; align-content: center; padding: 0 18px; border-bottom: 3px solid transparent; font-size: 14px; font-weight: 800; scroll-snap-align: start; }
.detail-jump-nav a:hover { color: var(--orange-dark); border-bottom-color: var(--orange); }
.detail-layout { gap: 32px; grid-template-columns: minmax(0,1fr) 330px; }
.preview-warning { padding: 18px 20px; border-radius: 9px; }
.preview-warning strong { font-size: 15px; }
.preview-warning p { font-size: 14px; }
.detail-highlight { padding: 23px; border-radius: 10px; }
.detail-highlight > span { font-size: 14px; }
.detail-highlight strong { font-size: clamp(25px,3.5vw,38px); }
.detail-highlight p { font-size: 14px; }
.detail-summary { padding: 27px; border-radius: 10px; }
.detail-summary .eyebrow { display: none; }
.detail-summary h2 { font-size: 27px; }
.detail-summary > p { font-size: 15px; }
.fact-table dt { font-size: 14px; }
.fact-table dd { font-size: 14px; }
.detail-block { padding: 35px 2px; }
.detail-block__head > span { min-width: 40px; min-height: 40px; border-radius: 7px; font-size: 14px; }
.detail-block__head small { font-size: 12px; }
.detail-block__head h2 { font-size: 27px; }
.detail-block > p { font-size: 15px; }
.check-card { padding: 20px; border-radius: 9px; }
.check-card b, .check-card li { font-size: 14px; }
.safety-checks li { font-size: 14px; }
.source-box dt, .source-box dd { font-size: 14px; }
.fine-print { font-size: 14px !important; }
.owner-action { display: grid; gap: 2px; margin-top: 16px; padding: 15px 17px; color: var(--ink); background: var(--orange-soft); border: 1px solid #e5b69f; border-radius: 8px; }
.owner-action span { font-size: 14px; }
.owner-action strong { color: var(--orange-dark); font-size: 15px; }
.detail-continuation { display: grid; gap: 20px; margin-top: 26px; padding: 26px; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; }
.detail-continuation h2 { margin: 0 0 5px; font-size: 24px; }
.detail-continuation p:not(.section-label) { margin: 0; color: var(--muted); font-size: 14px; }
.detail-continuation__actions { display: grid; gap: 9px; grid-template-columns: repeat(3,minmax(0,1fr)); }
.detail-continuation__actions .button { width: 100%; min-height: 48px; }
.related-jobs-section { background: var(--cream); border-top: 1px solid var(--line); }
.apply-card, .side-checklist { border-radius: 10px; }
.apply-card .eyebrow { font-size: 12px; }
.apply-card h2 { font-size: 23px; }
.apply-card p { font-size: 14px; }
.apply-card small { font-size: 14px; }
.side-checklist h2 { font-size: 17px; }
.side-checklist li, .side-checklist a { font-size: 14px; }

/* Business and contact */
.business-hero--new { padding: 58px 0; background: #292321; }
.business-hero--new .business-hero__inner { gap: 54px; grid-template-columns: 1.1fr .9fr; }
.business-hero--new h1 { font-size: clamp(38px,5vw,61px); }
.business-hero--new p { color: #d2c6c0; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.business-promise { padding: 27px; background: #fff; border-radius: 10px; color: var(--ink); }
.business-promise strong { font-size: 20px; }
.business-promise p, .business-promise li { color: var(--ink-soft); font-size: 14px; }
.business-promise ul { margin: 16px 0 0; padding-left: 22px; }

.plan-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
.plan-card { position: relative; padding: 29px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.plan-card--paid { border: 2px solid var(--orange); }
.plan-card__badge { position: absolute; top: -14px; right: 20px; padding: 5px 11px; color: #fff; background: var(--orange); border-radius: 5px; font-size: 12px; font-weight: 900; }
.plan-card__head > span { color: var(--orange-dark); font-size: 14px; font-weight: 900; }
.plan-card__head h3 { margin: 4px 0 8px; font-size: 25px; }
.plan-card__head strong { font-size: 36px; }
.plan-card__head small { font-size: 14px; }
.plan-card > p, .plan-card li { font-size: 15px; }
.plan-card > ul { min-height: 160px; padding-left: 22px; }
.plan-card > small { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; }

.business-steps { display: grid; gap: 1px; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); border-radius: 10px; list-style: none; grid-template-columns: repeat(4,1fr); }
.business-steps li { display: grid; gap: 12px; padding: 24px; background: #fff; grid-template-columns: 36px 1fr; }
.business-steps li span { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-size: 14px; font-weight: 900; }
.business-steps h3 { margin: 3px 0 6px; font-size: 17px; }
.business-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.business-requirements { display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; }
.business-requirements h2 { font-size: 34px; }
.business-requirements p, .business-requirements li { font-size: 15px; }
.business-requirements ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.business-requirements li { padding: 12px 15px 12px 43px; background: var(--cream); border: 1px solid var(--line); border-radius: 7px; }
.business-requirements li::before { position: absolute; margin-left: -27px; color: var(--green); content: "✓"; font-weight: 900; }

.business-contact-strip { padding: 43px 0; color: #fff; background: var(--orange-dark); }
.business-contact-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.business-contact-strip h2 { margin-bottom: 5px; font-size: 26px; }
.business-contact-strip p { margin: 0; font-size: 15px; }
.business-contact-strip p a { text-decoration: underline; }

.contact-hub { display: grid; gap: 14px; grid-template-columns: repeat(3,1fr); }
.contact-hub__card { padding: 25px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--ink); border-radius: 9px; }
.contact-hub__card:hover { border-color: #c98b70; box-shadow: var(--shadow-sm); }
.contact-hub__card--accent { border-top-color: var(--orange); }
.contact-hub__card > span { color: var(--muted); font-size: 14px; font-weight: 800; }
.contact-hub__card h2 { margin: 10px 0; font-size: 21px; }
.contact-hub__card p { color: var(--ink-soft); font-size: 14px; }
.contact-hub__card b { color: var(--orange-dark); font-size: 14px; }
.direct-contact { display: grid; gap: 60px; grid-template-columns: 1.1fr .9fr; }
.direct-contact h2 { font-size: clamp(25px,3vw,36px); }
.direct-contact p, .direct-contact aside p { font-size: 15px; }
.direct-contact aside { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.direct-contact aside h3 { font-size: 17px; }

.banner-page-layout { display: grid; align-items: start; gap: 34px; grid-template-columns: 290px minmax(0,1fr); }
.banner-guide { position: sticky; top: 102px; padding: 22px; background: var(--cream); border: 1px solid var(--line); border-radius: 9px; }
.banner-guide h2 { font-size: 21px; }
.banner-guide ol { padding-left: 22px; }
.banner-guide li, .banner-guide p { font-size: 14px; }
.banner-guide code { padding: 2px 4px; background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 12px; }
.banner-gallery { display: grid; gap: 16px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.banner-item { min-width: 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.banner-item header { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.banner-item h2 { margin: 0; font-size: 18px; }
.banner-item header a { min-height: 44px; align-content: center; color: var(--orange-dark); font-size: 14px; font-weight: 800; }
.banner-preview { display: grid; min-height: 150px; overflow: auto; place-items: center; margin: 12px 0; padding: 18px; background: #eee6df; border-radius: 6px; }
.banner-item label { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 800; }
.banner-item textarea { width: 100%; resize: vertical; padding: 10px; background: #fff; border: 1px solid #cfc0b7; border-radius: 6px; font-family: Consolas, monospace; font-size: 14px; line-height: 1.5; }
.banner-item .button { margin-top: 9px; }

.business-form-hero { background: #fff7f1; }
.form-privacy-points { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 20px 0 0; padding: 0; list-style: none; }
.form-privacy-points li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.form-privacy-points li::before { position: absolute; left: 0; color: var(--green); content: "✓"; }
.banner-callout { padding: 24px 0; background: var(--orange-soft); border-block: 1px solid #e5b69f; }
.banner-callout .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.banner-callout h2 { margin-bottom: 3px; font-size: 20px; }
.banner-callout p { margin: 0; font-size: 14px; }
.banner-callout code { font-size: 12px; }
.business-form-section { background: #f7f3ef; }
.business-form { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.business-form__header { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
.business-form__header h2 { margin: 3px 0 7px; font-size: 28px; }
.business-form__header p { margin: 0; color: var(--muted); font-size: 15px; }
.business-form__banner-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 17px; padding: 12px 14px; background: var(--orange-soft); border: 1px solid #e5b69f; border-radius: 7px; }
.business-form__banner-link span { color: var(--ink-soft); font-size: 14px; }
.business-form__banner-link strong { color: var(--ink); }
.business-form__banner-link .button { flex: 0 0 auto; }
.business-form__body { padding: 0 30px 30px; }
.form-section { min-width: 0; margin: 0; padding: 28px 0; border: 0; border-bottom: 1px solid var(--line); }
.form-section legend { width: 100%; padding: 0 0 16px; font-size: 20px; font-weight: 900; }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.form-optional-details { margin-top: 20px; padding: 0 16px; background: var(--cream); border: 1px solid var(--line); border-radius: 8px; }
.form-optional-details > summary { position: relative; display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 15px; cursor: pointer; list-style: none; }
.form-optional-details > summary::-webkit-details-marker { display: none; }
.form-optional-details > summary strong { font-size: 15px; }
.form-optional-details > summary span { color: var(--muted); font-size: 14px; }
.form-optional-details > summary::after { color: var(--orange-dark); content: "＋"; font-size: 21px; font-weight: 900; }
.form-optional-details[open] > summary::after { content: "−"; }
.form-optional-details[open] { padding-bottom: 18px; }
.form-optional-details[open] > summary { margin-bottom: 15px; border-bottom: 1px solid var(--line); }
.form-field { min-width: 0; }
.form-field--full { margin-top: 18px; }
.form-field > label, .form-field__label { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 14px; font-weight: 900; }
.form-field label em, .form-field__label em, .form-check em { padding: 2px 5px; color: #fff; background: var(--orange-dark); border-radius: 3px; font-size: 11px; font-style: normal; line-height: 1.3; }
.form-field label small { color: var(--muted); font-size: 12px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 10px 12px; background: #fff; border: 1px solid #bcaea5; border-radius: 7px; font-size: 16px; }
.form-field textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange-dark); box-shadow: 0 0 0 3px rgba(157,47,8,.14); outline: 0; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--danger); }
.form-field__error { margin: 5px 0 0; color: var(--danger); font-size: 14px; font-weight: 800; }
.form-check { display: flex; align-items: flex-start; gap: 11px; min-height: 44px; margin-top: 9px; padding: 9px 11px; background: var(--cream); border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-weight: 700; }
.form-check input { flex: 0 0 auto; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--orange-dark); }
.form-check a { color: var(--orange-dark); text-decoration: underline; }
.form-check-grid { display: grid; gap: 8px; grid-template-columns: repeat(2,1fr); }
.form-check-grid .form-check { margin-top: 0; }
.form-error-summary { margin: 24px 30px 0; padding: 17px 19px; color: #64142a; background: #fff2f5; border: 1px solid #e8b2c0; border-radius: 7px; }
.form-error-summary strong { font-size: 16px; }
.form-error-summary ul { margin: 8px 0 0; padding-left: 22px; }
.form-error-summary li { font-size: 14px; }
.form-error-summary a { text-decoration: underline; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 28px; }
.form-submit p { max-width: 560px; margin: 0; color: var(--muted); font-size: 14px; }
.form-submit .button { flex: 0 0 auto; min-height: 54px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-contact-fallback { margin-top: 20px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.form-contact-fallback h2 { margin-bottom: 5px; font-size: 18px; }
.form-contact-fallback p { margin: 0; color: var(--muted); font-size: 14px; }
.form-contact-fallback a { color: var(--orange-dark); font-weight: 900; text-decoration: underline; }
.form-success-card { padding: 40px; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--green); border-radius: 9px; text-align: center; }
.form-success-card__mark { display: grid; width: 60px; height: 60px; place-items: center; margin: 0 auto 16px; color: #fff; background: var(--green); border-radius: 50%; font-size: 29px; }
.form-success-card h2 { font-size: 30px; }
.form-success-card > p { font-size: 15px; }
.form-success-card__receipt { display: inline-grid; gap: 4px; margin: 10px auto 20px; padding: 12px 22px; background: var(--cream); border: 1px solid var(--line); border-radius: 6px; }
.form-success-card__receipt span { color: var(--muted); font-size: 12px; }
.form-success-card__receipt strong { font-family: Consolas,monospace; font-size: 20px; letter-spacing: .03em; }
.form-success-card aside { margin: 24px auto; padding: 17px; background: var(--orange-soft); border-radius: 7px; text-align: left; }
.form-success-card aside p { margin: 3px 0 0; font-size: 14px; }
.form-success-card__actions { display: flex; justify-content: center; gap: 10px; }

.simple-doc p, .simple-doc li { font-size: 15px; }
.simple-doc dt, .simple-doc dd { font-size: 14px; }
.doc-updated { font-size: 14px !important; }
.guide-nav a { min-height: 44px; align-content: center; font-size: 14px; }
.article-index > span { font-size: 12px; letter-spacing: .06em; }
.article-index a { min-height: 44px; align-content: center; font-size: 14px; }
.article-body section > p { font-size: 16px; }
.compare-cards span, .formula-box span, .contract-grid span, .official-link span, .consult-grid small { font-size: 12px; }
.compare-cards p, .big-checklist p, .callout p, .law-points b, .law-points span, .contract-grid p, .red-flags p, .consult-grid span { font-size: 14px; }
.compare-cards h3, .big-checklist b, .callout b, .official-link b, .consult-grid b { font-size: 15px; }
.consult-grid a { min-height: 72px; }
.principle-grid span { font-size: 14px; }
.principle-grid p, .policy-list li { font-size: 14px; }
.safe-box p, .report-block p { font-size: 15px; }
.value-grid p { font-size: 14px; }

.site-footer h2 { font-size: 15px; }
.site-footer a { min-height: 44px; font-size: 14px; }
.site-footer__grid > div:not(:first-child) a { min-height: 44px; font-size: 14px; }
.site-footer p, .site-footer small { font-size: 14px; }
.footer-age { font-size: 12px; }
.age-gate { border-radius: 16px; }
.age-gate p { font-size: 15px; }
.age-gate__exit { min-height: 44px; align-content: center; font-size: 14px; }
.age-gate > small { font-size: 12px; }
.compare-table { font-size: 14px; }
.compare-table td strong { font-size: 16px; }
.compare-dialog__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.compare-hero { background: #fff7f1; }
.compare-page-head { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 22px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.compare-page-head strong { font-size: 21px; }
.compare-page-head p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.compare-page-head > div:last-child { display: flex; gap: 9px; }
.compare-scroll-hint { display: none; }
.compare-page-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); overscroll-behavior-inline: contain; scroll-behavior: smooth; }
.compare-page-table { width: 100%; min-width: 850px; border-collapse: collapse; background: #fff; table-layout: fixed; }
.compare-page-table th, .compare-page-table td { padding: 17px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-page-table th:first-child { position: sticky; z-index: 2; left: 0; width: 140px; color: var(--ink-soft); background: var(--cream); box-shadow: 8px 0 14px rgba(54,35,25,.08); font-size: 14px; }
.compare-page-table thead th { background: #fffaf6; }
.compare-page-table thead th:first-child { z-index: 3; }
.compare-page-table thead th:not(:first-child) { border-top: 4px solid var(--orange); }
.compare-page-table thead span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 12px; }
.compare-page-table thead a { color: var(--ink); font-size: 19px; font-weight: 900; }
.compare-page-table td { color: var(--ink-soft); font-size: 14px; }
.compare-page-table td small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.compare-page-table__pay td { color: var(--orange-dark); font-size: 19px; font-weight: 900; }
.compare-page-table__pay td small { font-weight: 700; }
.compare-no { color: var(--danger); }
.compare-page-table__actions td { display: grid; gap: 8px; }
.compare-page-note { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.compare-empty { margin-inline: auto; }
.page-compare .compare-bar { display: none !important; }
.dialog-close { width: 44px; height: 44px; }
.toast { font-size: 14px; }

@media (max-width: 1050px) {
    .home-hero__inner { gap: 36px; grid-template-columns: minmax(0,1fr) 340px; }
    .search-panel, .search-panel--compact { grid-template-columns: repeat(2,1fr); }
    .search-panel__field--keyword { grid-column: span 2; }
    .search-panel__advanced { grid-column: 1 / -1; }
    .search-panel__submit { min-width: 0; }
    .area-grid { grid-template-columns: repeat(2,1fr); }
    .business-steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 880px) {
    body { font-size: 16px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 60px 0; }
    .home-hero { padding-top: 40px; }
    .home-hero__inner { gap: 24px; grid-template-columns: 1fr; }
    .home-hero__copy { padding-bottom: 6px; }
    .home-hero__guide { display: none; }
    .home-search-card { bottom: -34px; }
    .home-shortcuts { padding-top: 66px; }
    .shortcut-grid { grid-template-columns: repeat(2,1fr); }
    .shortcut-grid > a:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
    .shortcut-grid > a:nth-child(4) { border-top: 1px solid var(--line); }
    .editorial-grid, .business-requirements, .direct-contact { gap: 36px; grid-template-columns: 1fr; }
    .business-cta--new .business-cta__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
    .business-hero--new .business-hero__inner { gap: 30px; grid-template-columns: 1fr; }
    .compare-page-head { align-items: flex-start; flex-direction: column; }
    .contact-hub { grid-template-columns: 1fr; }
    .banner-page-layout { grid-template-columns: 1fr; }
    .banner-guide { position: static; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { display: none; }
    .page-job-detail .compare-bar { display: none !important; }
    .filter-sidebar { max-height: none; overflow: visible; }
}

@media (max-width: 620px) {
    html { scroll-padding-top: 76px; }
    body { padding-bottom: 65px; font-size: 16px; line-height: 1.7; }
    body.has-compare-bar:not(.page-job-detail):not(.page-compare) { padding-bottom: calc(138px + env(safe-area-inset-bottom)); }
    .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 48px 0; }
    .section-heading { margin-bottom: 22px; }
    .section-heading--split { align-items: flex-start; flex-direction: column; gap: 12px; }
    .section-heading h2 { font-size: 28px; }
    .section-heading > p, .section-heading--split > p { font-size: 15px; }
    .landing-hero-actions { flex-direction: column; }
    .landing-hero-actions .button { width: 100%; }
    .age-notice { font-size: 14px; }
    .age-notice__inner { min-height: 42px; }
    .age-notice__inner > span { max-width: 69%; }
    .site-header__inner { min-height: 62px; }
    .brand img { width: 160px; }
    .site-nav > a { font-size: 15px; }
    .home-hero { padding-top: 30px; }
    .home-hero__copy h1 { font-size: 38px; }
    .home-hero__copy > p:not(.home-kicker) { font-size: 16px; }
    .home-proof { display: grid; gap: 6px; }
    .home-search-card { bottom: -28px; padding: 19px 16px 18px; }
    .home-search-card__head { align-items: flex-start; flex-direction: column; gap: 2px; }
    .search-panel, .search-panel--compact { grid-template-columns: 1fr; }
    .search-panel__field--keyword, .search-panel__submit { grid-column: auto; }
    .search-panel__advanced { display: block; min-width: 0; grid-column: 1 / -1; }
    .search-panel__advanced > summary { display: grid; min-height: 48px; align-items: center; padding: 8px 12px; background: #fff; border: 1px solid #cfc0b7; border-radius: 8px; cursor: pointer; list-style: none; grid-template-columns: 1fr auto auto; }
    .search-panel__advanced > summary::-webkit-details-marker { display: none; }
    .search-panel__advanced > summary span { font-size: 15px; font-weight: 900; }
    .search-panel__advanced > summary small { margin-right: 10px; color: var(--muted); font-size: 12px; }
    .search-panel__advanced > summary b { color: var(--orange-dark); font-size: 21px; transition: transform .18s ease; }
    .search-panel__advanced[open] > summary b { transform: rotate(45deg); }
    .search-panel__advanced-fields { display: grid; height: auto; gap: 8px; margin-top: 8px; grid-template-columns: 1fr; }
    .search-panel__field { padding: 9px 12px 8px; }
    .search-panel__field label { font-size: 14px; }
    .search-panel__field select, .search-panel__field input { font-size: 16px; }
    .search-panel__feature-picker { width: 100%; }
    .search-panel__feature-picker > summary { min-height: 62px; }
    .search-panel__feature-options { position: static; width: 100%; max-height: 310px; border-width: 1px 0 0; border-radius: 0 0 8px 8px; box-shadow: none; grid-template-columns: 1fr; }
    .search-panel__feature-options label { font-size: 15px; }
    .search-panel__submit { width: 100%; min-height: 50px; }
    .quick-links > span { width: 100%; }
    .home-shortcuts { padding-top: 56px; }
    .shortcut-grid > a { min-height: 86px; padding: 13px; grid-template-columns: 37px 1fr; }
    .shortcut-icon { width: 35px; height: 35px; }
    .area-grid { grid-template-columns: 1fr; }
    .area-grid a { min-height: 112px; padding-block: 17px; }
    .job-grid { grid-template-columns: 1fr; }
    .need-grid { grid-template-columns: 1fr; }
    .editorial-section { padding: 52px 0; }
    .editorial-grid { gap: 32px; }
    .business-cta__buttons { width: 100%; flex-direction: column; }
    .business-cta__buttons .button { width: 100%; }
    .page-hero p { font-size: 14px; }
    .page-hero--jobs { padding: 16px 0; }
    .page-hero--jobs h1 { font-size: 30px; }
    .page-hero--jobs p { display: none; }
    .business-form-hero { padding: 20px 0; }
    .business-form-hero .breadcrumbs { display: none; }
    .business-form-hero h1 { margin-bottom: 9px; font-size: 32px; }
    .business-form-hero .form-privacy-points { margin-top: 13px; gap: 4px 14px; }
    .business-form-section { padding-top: 20px; }
    .jobs-search-strip { padding: 14px 0; }
    .jobs-layout { display: block; }
    .results-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
    .sort-form { width: 100%; justify-content: space-between; }
    .sort-form select { min-width: 170px; font-size: 16px; }
    .job-card { padding: 16px; }
    .job-card__heading { grid-template-columns: 54px minmax(0,1fr) 44px; }
    .job-thumbnail { width: 54px; height: 58px; }
    .job-card h3 { font-size: 19px; }
    .job-card__facts { grid-template-columns: 1fr; }
    .job-card__facts > div { display: grid; grid-template-columns: 88px 1fr; }
    .job-card__facts > div + div { border-top: 1px solid var(--line); border-left: 0; }
    .job-card__facts dd { margin: 0; }
    .job-card__source-note { align-items: flex-start; flex-direction: column; }
    .job-card__actions { gap: 8px; }
    .job-card__actions > * { min-width: 0; flex: 1; }
    .detail-top { padding: 24px 0 20px; }
    .detail-heading { align-items: flex-start; grid-template-columns: 1fr; }
    .job-thumbnail--large { display: none; }
    .detail-heading h1 { font-size: 29px; }
    .detail-heading__actions { align-self: flex-start; grid-column: 1 / -1; }
    .detail-heading__actions .favorite-button--detail { display: inline-flex; align-self: flex-start; }
    .recent-jobs__list { grid-template-columns: 1fr 1fr; }
    .detail-summary { padding: 20px 16px; }
    .fact-table > div { grid-template-columns: 112px 1fr; }
    .detail-block { padding: 29px 0; }
    .detail-block__head h2 { font-size: 24px; }
    .detail-continuation { padding: 21px 16px; }
    .detail-continuation__actions { grid-template-columns: 1fr; }
    .detail-continuation__actions .button { min-height: 50px; }
    .plan-grid { grid-template-columns: 1fr; }
    .banner-gallery { grid-template-columns: 1fr; }
    .banner-callout .container, .form-submit { align-items: flex-start; flex-direction: column; }
    .form-grid, .form-check-grid { grid-template-columns: 1fr; }
    .business-form__header { padding: 20px 18px 17px; }
    .business-form__banner-link { align-items: center; flex-direction: row; gap: 8px; margin-top: 13px; padding: 9px 10px; }
    .business-form__banner-link span { min-width: 0; flex: 1; line-height: 1.45; }
    .business-form__banner-link .button { width: auto; min-height: 44px; padding-inline: 12px; }
    .business-form__body { padding: 0 18px 22px; }
    .form-optional-details > summary { align-items: flex-start; flex-direction: column; justify-content: center; gap: 1px; padding: 8px 28px 8px 0; }
    .form-optional-details > summary::after { position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
    .form-error-summary { margin: 18px 18px 0; }
    .form-submit .button { width: 100%; }
    .form-success-card { padding: 28px 18px; }
    .form-success-card__actions { flex-direction: column; }
    .plan-card { padding: 23px 19px; }
    .plan-card > ul { min-height: 0; }
    .business-steps { grid-template-columns: 1fr; }
    .business-steps li { padding: 20px; }
    .business-contact-strip .container { align-items: flex-start; flex-direction: column; gap: 20px; }
    .mobile-nav { min-height: 64px; }
    .mobile-nav a { min-height: 58px; font-size: 14px; }
    .mobile-nav a span { font-size: 18px; }
    .mobile-nav a[aria-current="page"] { color: var(--orange-dark); background: var(--orange-soft); }
    .mobile-apply { min-height: 64px; padding: 7px 12px calc(7px + env(safe-area-inset-bottom)); }
    .mobile-apply .favorite-button { min-width: 52px; height: 50px; }
    .mobile-apply .button { min-height: 50px; }
    .compare-bar .button { min-height: 44px; }
    .compare-dialog__actions, .compare-page-head > div:last-child { width: 100%; flex-direction: column; }
    .compare-dialog__actions .button, .compare-page-head .button { width: 100%; }
    .compare-scroll-hint { display: flex; min-height: 44px; align-items: center; gap: 9px; margin: -4px 0 10px; padding: 8px 12px; color: var(--ink-soft); background: var(--orange-soft); border: 1px solid #e5b69f; border-radius: 8px; font-size: 14px; font-weight: 800; }
    .compare-scroll-hint span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--orange-dark); border-radius: 50%; font-size: 17px; }
    .compare-page-table-wrap { -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
    .compare-page-table thead th:not(:first-child) { scroll-snap-align: start; }
    .detail-jump-nav::after { position: absolute; top: 0; right: 0; width: 34px; height: 50px; background: linear-gradient(90deg,rgba(255,255,255,0),#fff); content: ""; pointer-events: none; }
    .detail-jump-nav .container { padding-right: 34px; scroll-snap-type: x proximity; }
    .recent-jobs { padding: 15px; }
    .recent-jobs__head { align-items: flex-start; }
    .recent-jobs__list { grid-template-columns: 1fr; }
    .site-footer { padding-bottom: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
