:root {
    --bg: #f7f6f3;
    --surface: #ffffff;
    --surface-soft: #efede8;
    --surface-muted: #e4e2dc;
    --line: #e0ded8;
    --line-strong: #cbc9c2;
    --ink: #121211;
    --ink-soft: #3a3a37;
    --muted: #6f6f6a;
    --muted-light: #a3a39d;
    --accent: #1a4d42;
    --accent-hover: #143d34;
    --accent-soft: #e8efec;
    --danger: #8b2e2e;
    --danger-soft: #f3ecec;
    --warn-soft: #f4f0e6;
    --success-soft: #e8f0ed;
    --max: 1180px;
    --radius: 2px;
    --radius-lg: 3px;
    --font: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.58;
    letter-spacing: -0.012em;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

h1 {
    font-size: clamp(2.35rem, 5.5vw, 4rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    font-weight: 500;
}

h3 {
    font-size: 1.0625rem;
    font-weight: 600;
}

p {
    margin: 0;
}

button,
.button,
input[type="submit"] {
    border: 0;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    padding: 14px 22px;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background: var(--accent-hover);
}

button.ghost,
.button.ghost,
button.link-button {
    background: transparent;
    color: var(--ink-soft);
    padding-inline: 12px;
}

button.ghost:hover,
.button.ghost:hover {
    color: var(--ink);
}

.text-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
}

.text-link:hover {
    color: var(--accent);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 4vw, 48px);
    position: relative;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    font-size: 1.3125rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: lowercase;
}

.brand-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a,
.link-button {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
}

.nav a:hover,
.link-button:hover {
    color: var(--ink);
}

.nav a.is-active {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 18px !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    background: var(--ink);
    gap: 5px;
    flex-direction: column;
    border-radius: var(--radius);
}

.nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: #fff;
}

.flash-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px clamp(20px, 4vw, 48px) 0;
}

.flash {
    padding: 12px 0 12px 16px;
    border-left: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.9375rem;
}

.flash.error {
    border-left-color: var(--danger);
    color: var(--danger);
}

main {
    min-height: 72vh;
}

.page-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.page-head {
    padding-top: clamp(36px, 6vw, 80px);
    padding-bottom: clamp(20px, 3vw, 32px);
}

.page-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.page-head-row h1 {
    max-width: none;
}

.page-head h1 {
    max-width: 22ch;
}

.page-head.legal h1,
.empty-state h1 {
    max-width: none;
}

.page-head p,
.lead {
    margin-top: 18px;
    max-width: 54ch;
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.62;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
    padding-top: clamp(48px, 8vw, 104px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.hero-copy h1 {
    max-width: 11ch;
}

.hero-copy .lead {
    margin-top: 22px;
}

.hero-stats {
    display: grid;
    gap: 32px;
    padding-bottom: 6px;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item span {
    display: block;
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.48;
    max-width: 24ch;
}

.searchbar,
.filters {
    display: grid;
    gap: 10px;
    margin-top: 36px;
}

.searchbar {
    grid-template-columns: 0.9fr 1.2fr auto;
    max-width: 720px;
}

.filters {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--line);
}

.filters-bar {
    padding-bottom: 8px;
}

.filters-bar .filters {
    margin-top: 0;
}

.catalog-results {
    padding-top: 28px;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.catalog-results .grid.cards {
    margin-top: 0;
}

.filters button {
    align-self: stretch;
}

input,
select,
textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    padding: 14px 0;
    color: var(--ink);
    font: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted-light);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236f6f6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

input[type="file"] {
    padding: 12px 0;
    font-size: 0.875rem;
    color: var(--muted);
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--accent);
    cursor: pointer;
}

.searchbar input,
.filters input,
.filters select {
    background: var(--surface-soft);
    border: 0;
    border-radius: var(--radius);
    padding: 15px 16px;
}

.searchbar input:focus,
.filters input:focus,
.filters select:focus {
    outline: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    outline-offset: 0;
    border-bottom-color: transparent;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

.stack-form--fields input,
.stack-form--fields select,
.stack-form--fields textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
    background: var(--surface-soft);
    border: 0;
    border-radius: var(--radius);
    padding: 14px 16px;
    border-bottom: none;
}

.stack-form--fields input:focus,
.stack-form--fields select:focus,
.stack-form--fields textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
    outline-offset: 0;
}

.form-grid select {
    background-position: right 12px center;
    padding-right: 36px;
}

.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section + .section {
    padding-top: 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.section-head h2 {
    max-width: 18ch;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.steps {
    display: grid;
    gap: 0;
}

.step-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 26px 0;
}

.step-item + .step-item {
    border-top: 1px solid var(--line);
}

.step-num {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted-light);
    padding-top: 3px;
}

.step-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-item span {
    color: var(--muted);
    font-size: 0.9375rem;
}

.grid.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 48px);
}

.space-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.space-image {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.22s ease;
}

.space-image:hover {
    opacity: 0.9;
}

.space-image span {
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--muted-light);
    letter-spacing: -0.04em;
}

.space-body {
    display: grid;
    gap: 8px;
}

.space-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.space-meta span + span::before {
    content: "·";
    margin-right: 12px;
    color: var(--muted-light);
}

.space-body h3 a {
    text-decoration: none;
    color: var(--ink);
}

.space-body h3 a:hover {
    color: var(--accent);
}

.space-body p {
    color: var(--muted);
    font-size: 0.9375rem;
}

.space-price {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 4px;
}

.detail-page {
    padding-top: clamp(20px, 3vw, 32px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.detail-media {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.detail-image {
    width: 100%;
    min-height: clamp(280px, 42vw, 520px);
    max-height: 68vh;
    background: var(--surface-soft) center / cover no-repeat;
}

.detail-image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image--empty span {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--muted-light);
    letter-spacing: -0.04em;
}

.photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: minmax(160px, 1fr);
    gap: 6px;
    overflow: hidden;
    min-height: clamp(280px, 42vw, 520px);
    max-height: 68vh;
}

.photo-gallery-cover {
    grid-row: span 2;
    min-height: 368px;
}

.photo-gallery-item {
    background: var(--surface-soft) center / cover no-repeat;
    min-height: 180px;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

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

.star-filled {
    color: var(--accent);
}

.trust-mark {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.rating-value,
.rating-count {
    color: var(--muted);
    margin-left: 4px;
}

.reviews-list {
    display: grid;
    gap: 0;
    margin-top: 16px;
}

.review-item {
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.review-item p {
    color: var(--ink-soft);
    line-height: 1.62;
}

.photo-manage {
    margin-top: 8px;
}

.photo-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.photo-thumb {
    position: relative;
    min-height: 100px;
    background: var(--surface-soft) center / cover no-repeat;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photo-thumb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.photo-thumb-actions form {
    margin: 0;
}

.photo-thumb-actions button {
    font-size: 0.75rem;
    padding: 4px 8px;
}

.detail-main {
    padding-top: 4px;
}

.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 22px 0 32px;
    font-size: 0.875rem;
    color: var(--muted);
}

.facts span + span::before {
    content: "·";
    margin-right: 16px;
    color: var(--muted-light);
}

.detail-main > p {
    color: var(--ink-soft);
    line-height: 1.68;
}

.detail-main h2,
.detail-main h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.booking-box {
    position: sticky;
    top: 88px;
    align-self: start;
    padding: 0 0 0 clamp(20px, 3vw, 32px);
    border-left: 1px solid var(--line);
}

.booking-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.booking-box > span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.9375rem;
}

.stack-form {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.payment-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

.panel,
.empty,
.auth-card,
.row {
    background: transparent;
    border-radius: 0;
}

.panel,
.empty,
.auth-card {
    padding: 0;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.dash-grid .panel {
    padding: 0 clamp(20px, 3vw, 32px);
    border-left: 1px solid var(--line);
}

.dash-grid .panel:first-child {
    padding-left: 0;
    border-left: 0;
}

a.button {
    text-decoration: none;
}

a.button.ghost {
    background: transparent;
    color: var(--ink-soft);
}

a.button.ghost:hover {
    color: var(--ink);
    background: transparent;
}

.dash-grid .panel .section-head {
    margin-bottom: 20px;
    padding-bottom: 12px;
}

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

.dash-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.dash-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.dash-item a {
    text-decoration: none;
    font-weight: 500;
    color: var(--ink);
}

.dash-item a:hover {
    color: var(--accent);
}

.panel h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0;
}

.panel p + p {
    margin-top: 12px;
}

.list {
    display: grid;
    gap: 0;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.list > h2 {
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 32px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.row-main h3 a {
    text-decoration: none;
    color: var(--ink);
}

.row-main h3 a:hover {
    color: var(--accent);
}

.row-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.inline-actions form {
    margin: 0;
}

.row h3 {
    font-size: 1rem;
}

.row p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9375rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.form-grid label {
    display: grid;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.wide {
    grid-column: 1 / -1;
}

.actions,
.inline-actions,
.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-actions {
    margin-top: 8px;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.payout-fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check input {
    width: auto;
}

.auth-card {
    max-width: 440px;
    margin: clamp(56px, 10vw, 104px) auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

.auth-card h1 {
    font-size: 2rem;
    margin-bottom: 28px;
}

.auth-card p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.9375rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted);
    white-space: nowrap;
}

.badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-right: 7px;
    background: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
}

.badge-new,
.badge-pending,
.badge-unpaid {
    color: #8a6d1d;
}

.badge-accepted,
.badge-active,
.badge-processing {
    color: var(--accent);
}

.badge-paid,
.badge-confirmed {
    color: #1f6b4f;
}

.badge-declined,
.badge-rejected,
.badge-cancelled,
.badge-failed {
    color: var(--danger);
}

.badge-draft,
.badge-paused,
.badge-completed,
.badge-none {
    color: var(--muted);
}

.legal ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.legal li {
    margin-bottom: 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.legal li:first-child {
    border-top: 0;
    padding-top: 0;
}

.legal li strong {
    color: var(--ink);
}

.empty {
    padding: 48px 0;
    border-top: 1px solid var(--line);
}

.empty .lead {
    margin-top: 12px;
}

.empty .button {
    margin-top: 24px;
}

.pagination {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.pagination a,
.pagination span {
    min-width: 40px;
    min-height: 40px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.pagination a:hover {
    color: var(--ink);
}

.pagination span[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}

.pagination-disabled,
.pagination-ellipsis {
    color: var(--muted-light);
}

.footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9375rem;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 32px;
    padding: clamp(56px, 8vw, 80px) clamp(20px, 4vw, 48px);
}

.footer strong {
    color: var(--ink);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--ink);
}

.breadcrumbs {
    max-width: var(--max);
    margin: 0 auto;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 18px clamp(20px, 4vw, 48px) 0;
    font-size: 0.8125rem;
    color: var(--muted);
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--muted-light);
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--ink);
}

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.city-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9375rem;
}

.city-links a:hover {
    color: var(--ink);
}

.auth-card textarea {
    min-height: 96px;
}

.empty-state {
    padding-bottom: clamp(56px, 8vw, 96px);
}

.empty-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.auth-card .eyebrow {
    margin-bottom: 16px;
}

.auth-card .lead {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.9375rem;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

fieldset legend {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 96px 24px 32px;
        background: var(--bg);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow-y: auto;
    }

    body.nav-open .nav {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }

    .nav a,
    .nav .link-button {
        font-size: 1.125rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        border-bottom: 0;
    }

    .hero,
    .split,
    .detail-layout,
    .dash-grid,
    .grid.cards {
        grid-template-columns: 1fr;
    }

    .searchbar,
    .filters,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .detail-image,
    .photo-gallery {
        min-height: 240px;
        max-height: none;
    }

    .booking-box {
        position: static;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 32px 0 0;
        margin-top: 8px;
    }

    .dash-grid .panel {
        border-left: 0;
        padding: 0;
        padding-top: 32px;
        border-top: 1px solid var(--line);
    }

    .dash-grid .panel:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .row-aside {
        align-items: flex-start;
        width: 100%;
    }

    .payout-fieldset {
        grid-template-columns: 1fr;
    }

    .dash-grid--2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 8px;
        border-top: 1px solid var(--line);
    }
}

@media (min-width: 961px) {
    .hero-stats {
        border-left: 1px solid var(--line);
        padding-left: clamp(28px, 4vw, 56px);
    }
}
