:root {
    --bg: #f3f3f1;
    --surface: #fff;
    --text: #161616;
    --muted: #5b5b5b;
    --line: #d5d5d0;
    --accent: #1a3348;
    --accent-hover: #122536;
    --apply: #1c7a45;
    --apply-hover: #156338;
    --danger: #8a1f1f;
    --radius: 3px;
    --container: 1080px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    margin: 0 0 0.6em;
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 1.05rem;
}

p {
    margin: 0 0 1em;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 30;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 16px 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text);
}

.logo:hover {
    text-decoration: none;
}

.logo img {
    width: auto;
}

.logo-name {
    display: block;
    height: 48px;
    max-width: min(240px, 70vw);
}

.nav-toggle {
    display: none;
}

.nav-toggle__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
}

.nav a:hover {
    text-decoration: none;
    background: #eef2f5;
    color: var(--accent);
}

.nav a.is-active {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

.nav a.is-active:hover {
    background: var(--accent-hover);
    color: #fff;
}

.site-main {
    min-height: calc(100vh - 220px);
}

.hero,
.page-head {
    padding: 40px 0 8px;
}

.hero .lead {
    margin-bottom: 0.85em;
}

.hero .lead:last-of-type {
    margin-bottom: 0;
}

.lead {
    max-width: 42em;
    color: var(--muted);
    font-size: 1.05rem;
}

.section {
    padding: 28px 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--accent);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    background: #eef2f5;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-apply {
    background: var(--apply);
    border-color: var(--apply);
    color: #fff;
}

.btn-apply:hover {
    background: var(--apply-hover);
    border-color: var(--apply-hover);
    color: #fff;
}

.btn-ghost {
    background: var(--surface);
}

.btn-quiet {
    background: #ecece8;
    border-color: var(--line);
    color: var(--text);
}

.btn-quiet:hover {
    background: #e2e2de;
    border-color: #c8c8c2;
    color: var(--text);
}

.btn-info {
    min-width: 0;
    padding: 0 12px;
}

.btn-lg {
    min-height: 48px;
    padding: 0 22px;
}

.btn-block {
    width: 100%;
}

.filter {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px 24px;
    align-items: flex-end;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.filter__sum label,
.filter__type legend {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.filter__type {
    margin: 0;
    border: 0;
    padding: 0;
}

.filter__sum-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter__sum input[type="range"] {
    flex: 1;
    width: 100%;
    accent-color: var(--accent);
}

.filter__sum output {
    min-width: 7.5em;
    font-weight: 700;
}

.filter-count {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.type-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-btn {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.type-btn input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.type-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.type-btn:hover span {
    border-color: var(--accent);
}

.type-btn input:focus-visible + span {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.type-btn input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.loan-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.loan-card__image {
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #ecece8;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 4px 10px rgba(22, 22, 22, 0.14);
    position: relative;
    z-index: 1;
}

.loan-card__image:hover {
    text-decoration: none;
}

.loan-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    max-width: calc(100% - 16px);
    padding: 5px 8px;
    border-radius: var(--radius);
    background: #e67a22;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.loan-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loan-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    flex: 1;
}

.loan-card__title {
    margin: 0;
    font-size: 1.05rem;
}

.loan-card__title a {
    color: var(--text);
}

.loan-card__excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.loan-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 2px -14px;
    padding: 14px;
    background: #f6f6f3;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.loan-card__meta > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.loan-card__meta dt,
.facts span,
.params dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.loan-card__meta dt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    flex-shrink: 0;
}

.meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.loan-card__meta dd,
.facts strong,
.params dd {
    margin: 2px 0 0;
    font-weight: 700;
}

.loan-card__meta dd {
    margin: 0;
    font-size: 1.08rem;
    text-align: right;
    white-space: nowrap;
}

.loan-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.loan-card__actions .btn-info {
    flex: 0 0 auto;
}

.loan-card__actions .btn-apply {
    flex: 1 1 auto;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star {
    position: relative;
    width: 14px;
    height: 14px;
    background: #d8d8d4;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star__fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: #e8a317;
}

.stars__value {
    margin-left: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
}

.chip:hover,
.chip.is-active {
    border-color: var(--accent);
    text-decoration: none;
    background: #eef2f5;
}

.facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.facts > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.facts span .meta-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.facts strong {
    display: block;
}

.facts a {
    overflow-wrap: anywhere;
}

.loan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.loan-layout__right {
    display: grid;
    gap: 16px;
}

.loan-media {
    margin-bottom: 12px;
    background: #ecece8;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(22, 22, 22, 0.14);
}

.loan-media img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: calc(var(--radius) - 1px);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.panel {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.panel h2 {
    margin-bottom: 12px;
}

.panel h3:first-of-type {
    margin-top: 0;
}

.params dl {
    margin: 0 0 16px;
}

.params dl > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.params dt {
    flex: 0 0 auto;
}

.params dd {
    margin: 0;
    text-align: right;
}

.plain-list {
    margin: 0 0 1.2em;
    padding-left: 18px;
}

.plain-list:last-child {
    margin-bottom: 0;
}

.content {
    max-width: 46em;
}

.content-box {
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5 {
    margin: 1.15em 0 12px;
}

.content-box > h2:first-child,
.content-box > h3:first-child,
.content-box > h4:first-child,
.content-box > h5:first-child {
    margin-top: 0;
}

.content-box h3 { font-size: 1.15rem; }
.content-box h4 { font-size: 1.05rem; }
.content-box h5 { font-size: 1rem; }

.content-box p:last-child,
.content-box ul:last-child {
    margin-bottom: 0;
}

.content-box img {
    margin: 0.8em 0;
}

.map-wrap {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ecece8;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-bottom: 0;
}

.faq-item:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
}

.faq-item:only-child {
    border-radius: var(--radius);
}

.faq-item summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
}

.faq-item__body {
    padding: 0 16px 14px;
    color: var(--muted);
}

.empty {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}

.site-footer {
    margin-top: 40px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-inner {
    display: grid;
    gap: 12px;
}

.footer-brand strong {
    color: var(--text);
}

.footer-brand p,
.footer-copy {
    margin: 6px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.8rem;
}

.idea-card__money {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 -14px;
    padding: 9px 14px;
    background: #e8eef3;
    border-top: 1px solid #cfd8e0;
    border-bottom: 1px solid #cfd8e0;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.idea-card__money .meta-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.idea-card__money strong {
    margin-left: auto;
    font-size: 1.05rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.idea-capital {
    margin: 0 0 16px;
    border-radius: var(--radius);
    border: 1px solid #cfd8e0;
    border-left: 3px solid var(--accent);
}

.idea-page .container {
    max-width: 46em;
}

.idea-body {
    max-width: 46em;
    margin: 0 auto;
}

.crumb {
    margin: 0 0 8px;
    font-size: 0.9rem;
}

.crumb a {
    color: var(--muted);
}

.flash {
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.flash.is-ok {
    border-color: #9bb3a4;
}

.flash.is-err {
    border-color: var(--danger);
    color: var(--danger);
}

.muted {
    color: var(--muted);
}

.story-wrap {
    max-width: 46em;
}

.story-wrap .chips {
    margin-bottom: 16px;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.story-card {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.story-card__title {
    margin: 0 0 8px;
}

.story-card__excerpt {
    margin: 0 0 10px;
    color: var(--muted);
}

.story-card__more {
    margin: 0;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.story-cat {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--muted);
}

.story-cat.is-success {
    color: var(--apply);
    border-color: #b7d4c3;
}

.story-cat.is-failure {
    color: var(--danger);
    border-color: #e0c4c4;
}

.story-form {
    margin-top: 12px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.story-form .field {
    margin-bottom: 14px;
}

.story-form .field label,
.story-form .field .lbl {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-form input[type="text"],
.story-form input[type="email"],
.story-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font: inherit;
    background: #fff;
}

.story-form textarea {
    min-height: 180px;
    resize: vertical;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.story-page .story-wrap h1 {
    margin-bottom: 0;
}

.home-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.home-col {
    padding: 0 18px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.home-col__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -18px 12px;
    padding: 11px 18px;
    background: var(--accent);
    color: #fff;
}

.home-col__head h2 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
}

.home-col__head a {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #c9d5df;
}

.home-col__head a:hover {
    color: #fff;
}

.home-content {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.home-content h2,
.home-content h3,
.home-content h4,
.home-content h5 {
    margin: 1.15em 0 12px;
}

.home-content > :first-child {
    margin-top: 0;
}

.home-content p:last-child,
.home-content ul:last-child {
    margin-bottom: 0;
}

.loans-guide {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.loans-guide__head {
    margin: 0;
    padding: 16px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
}

.loans-guide__body {
    padding: 22px 22px 12px;
}

.loans-guide__lead {
    max-width: 46em;
    color: var(--muted);
    font-size: 1.05rem;
}

.loans-guide__body p,
.loans-guide__close p {
    max-width: 46em;
}

.loans-guide h3 {
    margin: 1.7em 0 0.65em;
    padding-top: 1.15em;
    border-top: 1px solid var(--line);
    font-size: 1.12rem;
}

.loans-guide__body > h3:first-of-type {
    margin-top: 0.35em;
}

.loans-guide h4 {
    margin: 1.15em 0 0.5em;
    font-size: 1rem;
}

.loans-guide__kicker {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.loans-guide__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 1.2em;
}

.loans-guide__compare > div {
    padding: 14px 16px;
    background: #f7f7f4;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.loans-guide__compare h4 {
    margin: 0 0 8px;
    color: var(--accent);
}

.loans-guide__compare p:last-child {
    margin-bottom: 0;
}

.loans-guide__callout,
.loans-guide__example {
    max-width: 46em;
    margin: 0 0 1.2em;
    padding: 14px 16px;
    border-radius: var(--radius);
}

.loans-guide__callout {
    background: #e8eef3;
    border: 1px solid #cfd8e0;
    border-left: 3px solid var(--accent);
}

.loans-guide__example {
    background: #f7f7f4;
    border: 1px solid var(--line);
}

.loans-guide__callout p:last-child,
.loans-guide__example p:last-child {
    margin-bottom: 0;
}

.loans-guide__list {
    max-width: 46em;
    margin: 0 0 1.2em;
    padding: 12px 16px 12px 34px;
    background: #f7f7f4;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.loans-guide__list li + li {
    margin-top: 6px;
}

.loans-guide__chain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
    max-width: 46em;
    margin: 0 0 1.2em;
    padding: 0;
    list-style: none;
}

.loans-guide__chain li {
    display: inline-flex;
    align-items: center;
}

.loans-guide__chain span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: #f3ece8;
    border: 1px solid #e0d5cf;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
}

.loans-guide__chain li:not(:last-child)::after {
    content: "→";
    margin: 0 8px;
    color: var(--muted);
    font-weight: 700;
}

.loans-guide__qs {
    max-width: 46em;
    margin: 0 0 1.2em;
    padding: 0;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    counter-reset: loan-q;
}

.loans-guide__qs li {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    font-weight: 700;
    counter-increment: loan-q;
}

.loans-guide__qs li:first-child {
    border-top: 0;
}

.loans-guide__qs li::before {
    content: counter(loan-q);
    flex: 0 0 1.5em;
    color: var(--accent);
}

.loans-guide__close {
    padding: 20px 22px;
    background: #e8eef3;
    border-top: 1px solid #cfd8e0;
}

.loans-guide__close h3 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.loans-guide__close p:last-child {
    margin-bottom: 0;
}

.home-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.home-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.home-list__main {
    min-width: 0;
    flex: 1;
}

.home-list__main a {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.home-list__main a:hover {
    color: var(--accent);
}

.home-list span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.85rem;
}

.home-list__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 36px;
    min-height: 32px;
    padding: 0 8px 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.12em;
    line-height: 1;
}

.home-list__go:hover {
    text-decoration: none;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.home-banner {
    margin: 0;
}

.home-banner img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(22, 22, 22, 0.14);
}

@media (max-width: 960px) {
    .loan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cols,
    .loan-layout,
    .split,
    .loans-guide__compare {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .header-inner {
        position: relative;
        flex-wrap: nowrap;
        min-height: 64px;
        gap: 12px;
    }

    .logo-name {
        height: 36px;
        max-width: calc(100vw - 96px);
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        cursor: pointer;
        flex-shrink: 0;
    }

    .nav-toggle__bar {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--accent);
    }

    .site-header.is-open .nav-toggle {
        background: var(--accent);
        border-color: var(--accent);
    }

    .site-header.is-open .nav-toggle__bar {
        background: #fff;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 20;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0 12px;
        background: var(--surface);
        border-top: 1px solid var(--line);
        box-shadow: 0 8px 16px rgba(22, 22, 22, 0.06);
    }

    .site-header.is-open .nav {
        display: flex;
    }

    .nav a {
        min-height: 40px;
        padding: 0 12px;
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.45rem;
    }

    .hero,
    .page-head {
        padding-top: 28px;
    }

    .filter {
        grid-template-columns: 1fr;
    }

    .filter .btn {
        width: 100%;
    }

    .loan-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .loans-guide__head {
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .loans-guide__body,
    .loans-guide__close {
        padding-left: 16px;
        padding-right: 16px;
    }

    .map-wrap {
        aspect-ratio: 1 / 1;
    }
}
