:root {
    --bg: #f4f7fb;
    --panel: #ffffff;
    --panel-soft: #eef5fb;
    --line: #d8e3ee;
    --text: #122033;
    --muted: #607086;
    --primary: #0f4c81;
    --primary-strong: #0a365a;
    --accent: #ffb25b;
    --success: #16895d;
    --danger: #b13a3a;
    --shadow: 0 24px 60px rgba(14, 34, 53, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
    color: var(--text);
}

body.has-lightbox {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

main {
    min-height: calc(100vh - 140px);
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.launch-bar {
    background: #0d243b;
    color: #fff;
}

.launch-bar__inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(248, 251, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 227, 238, 0.7);
}

.nav-shell,
.dashboard-topbar,
.section-head,
.footer-grid,
.promo-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-shell {
    min-height: 78px;
}

.brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand span {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    background: var(--panel-soft);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary);
}

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

.nav-admin {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--panel-soft);
}

.hero {
    position: relative;
    padding: 70px 0 46px;
}

.hero-visual {
    background: linear-gradient(140deg, #0f4c81, #164267);
    overflow: hidden;
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 27, 44, 0.82), rgba(9, 27, 44, 0.3));
}

.hero-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 28px;
    align-items: end;
}

.hero-copy h1,
.section h1,
.section h2,
.dashboard-topbar h1,
.dashboard-card h2,
.table-card h2 {
    margin: 0 0 14px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    max-width: 11ch;
}

.hero-copy p,
.section-intro,
.detail-lead,
.listing-card__body p,
.category-card p,
.empty-state,
.newsletter-modal__panel p,
.dashboard-card p,
.table-card p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-visual .hero-copy p,
.hero-visual .eyebrow {
    color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-visual .eyebrow {
    background: rgba(255, 255, 255, 0.14);
}

.hero-search,
.filters {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(216, 227, 238, 0.9);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero-search-simple {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.hero-spotlight__card,
.hero-card,
.listing-card,
.category-card,
.info-card,
.promo-panel,
.empty-state,
.dashboard-card,
.table-card,
.newsletter-modal__panel,
.prelaunch-panel,
.month-card,
.media-card {
    background: var(--panel);
    border: 1px solid rgba(216, 227, 238, 0.92);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-spotlight__card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
}

.hero-spotlight__list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-spotlight__list a,
.today-item,
.company-chip {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--panel-soft);
}

.hero-spotlight__list small {
    color: var(--muted);
}

.section {
    padding: 34px 0 56px;
}

.section-tight {
    padding-top: 26px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(226, 238, 248, 0.55), rgba(245, 248, 252, 0));
}

.card-grid,
.gallery-grid,
.dashboard-grid,
.detail-grid,
.media-grid,
.month-grid {
    display: grid;
    gap: 22px;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.search-results-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: start;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.category-card {
    padding: 24px;
}

.category-card-compact {
    text-align: center;
}

.category-media {
    width: 100%;
    height: 140px;
    margin-bottom: 16px;
    border-radius: 18px;
    overflow: hidden;
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: var(--panel-soft);
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.listing-card {
    overflow: hidden;
}

.listing-card__image img,
.detail-image img,
.gallery-grid img,
.media-card img {
    width: 100%;
    object-fit: cover;
}

.listing-card__image img {
    height: 220px;
}

.listing-card__body,
.info-card,
.promo-panel,
.dashboard-card,
.table-card,
.newsletter-modal__panel,
.prelaunch-panel,
.media-card__body {
    padding: 26px;
}

.listing-card__meta {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.listing-card__badges,
.tag-row,
.stats-grid,
.filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-card__badges span,
.tag,
.stat-chip {
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.section-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.breadcrumbs a {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumbs__sep {
    color: rgba(96, 112, 134, 0.7);
}

.seo-landing-panel {
    margin-bottom: 24px;
}

.seo-activity-grid {
    margin-bottom: 34px;
}

.seo-nearby-section {
    padding-top: 8px;
}

.seo-faq {
    margin-top: 24px;
}

.button,
button,
input,
select,
textarea {
    font: inherit;
}

.autocomplete {
    position: relative;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
}

.autocomplete-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 10px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 35;
}

.autocomplete-panel[hidden] {
    display: none !important;
}

.autocomplete-item {
    width: 100%;
    display: grid;
    justify-items: start;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--panel-soft);
    color: var(--text);
    text-align: left;
}

.autocomplete-item strong {
    font-size: 0.95rem;
}

.autocomplete-item span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

label input[type="checkbox"] {
    width: auto;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover,
button:hover {
    transform: translateY(-1px);
}

.button-primary,
button,
button[type="submit"] {
    background: var(--primary);
    color: #fff;
}

.button-secondary {
    background: var(--accent);
    color: #2a2217;
}

.button-ghost {
    background: var(--panel-soft);
    color: var(--primary);
}

.button-danger {
    background: rgba(177, 58, 58, 0.12);
    color: var(--danger);
}

.filters-shell {
    margin-bottom: 18px;
}

.section-head--results {
    margin-bottom: 14px;
}

.results-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.results-toolbar__view {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: var(--panel-soft);
}

.view-toggle {
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
}

.view-toggle.is-active {
    background: #fff;
    box-shadow: 0 10px 24px rgba(14, 34, 53, 0.08);
}

.results-toolbar__meta {
    color: var(--muted);
    font-weight: 600;
}

.results-layout {
    display: grid;
}

.results-panel {
    display: none;
}

.results-panel.is-active {
    display: block;
}

.results-panel--map.is-active {
    display: grid;
    gap: 18px;
}

.map-card {
    padding: 18px;
    border: 1px solid rgba(216, 227, 238, 0.92);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
    box-shadow: var(--shadow);
}

.map-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.map-card__top p {
    margin: 6px 0 0;
    color: var(--muted);
}

.results-map {
    position: relative;
    z-index: 0;
    isolation: isolate;
    min-height: 62vh;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(216, 227, 238, 0.92);
    background: linear-gradient(180deg, #d9eaf7 0%, #edf5fb 100%);
}

.map-results-list {
    display: grid;
    gap: 16px;
}

.listing-card--compact {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.listing-card--compact .listing-card__image img {
    height: 100%;
    min-height: 100%;
}

.listing-card.is-highlighted {
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.16), var(--shadow);
}

.map-pin {
    background: transparent;
    border: 0;
}

.map-pin span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.32);
}

.map-popup {
    display: grid;
    gap: 6px;
    min-width: 180px;
    max-width: 210px;
}

.map-popup img {
    width: 100%;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
}

.map-popup strong {
    font-size: 0.94rem;
    line-height: 1.2;
}

.map-popup span,
.map-popup p {
    color: var(--muted);
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
}

.map-popup a {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (min-width: 981px) {
    .results-panel--map.is-active {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
        align-items: start;
    }

    .map-card {
        position: sticky;
        top: 188px;
    }
}

.filters-sticky {
    position: sticky;
    top: 126px;
    z-index: 45;
}

.filters-toggle {
    display: none;
    width: 100%;
}

.filters-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr auto;
    gap: 12px;
}

.filters-top .autocomplete {
    min-width: 0;
}

.filter-chip {
    position: relative;
    padding: 0;
}

.filter-chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
}

.filter-chip span {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.filter-chip input:checked + span {
    background: var(--primary);
    color: #fff;
}

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

.site-footer {
    padding: 30px 0 48px;
    border-top: 1px solid rgba(216, 227, 238, 0.85);
}

.footer-grid {
    align-items: start;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
}

.detail-grid {
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.96fr);
}

.detail-image img {
    height: 430px;
    border-radius: 26px;
}

.detail-image-trigger,
.gallery-thumb {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    display: block;
    cursor: zoom-in;
}

.detail-image-trigger:hover,
.gallery-thumb:hover {
    transform: none;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

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

.gallery-grid--single {
    grid-template-columns: 220px;
}

.gallery-grid img {
    height: 170px;
    border-radius: 18px;
}

.gallery-thumb.is-hidden[hidden] {
    display: none !important;
}

.gallery-toggle {
    margin-top: -4px;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 18, 29, 0.94);
    z-index: 120;
}

.lightbox.is-visible {
    display: flex;
}

.lightbox__stage {
    width: min(100%, 1180px);
    height: min(100%, 82vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 22px;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(12px);
}

.lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 14px;
}

.button-group {
    display: grid;
    gap: 10px;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.dashboard-sidebar {
    padding: 30px 22px;
    background: linear-gradient(180deg, #0f2740 0%, #123e65 100%);
    color: #fff;
}

.dashboard-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 24px;
}

.dashboard-sidebar nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a.active,
.brand-admin {
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-main {
    padding: 30px;
}

.dashboard-menu-toggle {
    display: none;
}

.dashboard-topbar {
    margin-bottom: 28px;
}

.dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 26px;
}

.dashboard-card,
.table-card {
    margin-bottom: 24px;
}

.dashboard-card h3,
.table-card h2 {
    margin-top: 0;
}

.dashboard-grid .dashboard-card p {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.dashboard-grid .dashboard-card h3 {
    margin-bottom: 10px;
}

.checklist {
    display: grid;
    gap: 14px;
}

.checklist-item {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--panel-soft);
}

.checklist-item strong {
    color: var(--primary);
}

.checklist-item.is-done {
    background: rgba(22, 137, 93, 0.12);
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-tabs a {
    padding: 11px 15px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--muted);
}

.admin-tabs a.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.company-admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.media-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
    overflow: hidden;
}

.media-card img {
    height: 180px;
}

.month-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.month-card {
    padding: 18px;
    display: grid;
    gap: 8px;
}

.month-card small {
    color: var(--muted);
    font-size: 0.84rem;
}

.summary-box {
    padding: 18px;
    border-radius: 18px;
    background: var(--panel-soft);
    color: var(--text);
}

.month-card.is-full {
    opacity: 0.55;
}

.month-card.is-booked {
    background: rgba(15, 76, 129, 0.08);
    border: 1px solid rgba(15, 76, 129, 0.16);
}

.month-card.is-pending {
    background: rgba(255, 178, 91, 0.16);
    border: 1px solid rgba(255, 178, 91, 0.28);
}

.month-card input[type="checkbox"] {
    width: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

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

.table-card {
    overflow-x: auto;
}

.period-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.period-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: var(--panel-soft);
    border: 1px solid rgba(216, 227, 238, 0.92);
}

.period-card.is-active {
    background: linear-gradient(180deg, #0f4c81, #17598f);
    color: #fff;
}

.period-card.is-active .stat-chip,
.period-card.is-active p {
    color: inherit;
}

.period-card__title {
    font-size: 1.05rem;
    font-weight: 800;
}

.reach-hero {
    background: linear-gradient(135deg, #ffffff 0%, #eef5fb 45%, #e4f0fb 100%);
}

.reach-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
    gap: 22px;
    align-items: stretch;
}

.reach-hero__aside {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(15, 76, 129, 0.08);
    border: 1px solid rgba(15, 76, 129, 0.12);
}

.reach-hero__price {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--primary-strong);
}

.benefit-grid {
    align-items: stretch;
}

.benefit-card {
    background: linear-gradient(180deg, #ffffff, #f6faff);
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.management-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
    gap: 22px;
    margin: 22px 0;
}

.panel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.panel-tabs a {
    display: inline-flex;
    align-items: center;
    padding: 11px 15px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
    font-weight: 700;
}

.panel-tabs a.is-active {
    background: var(--primary);
    color: #fff;
}

.admin-reach-hero .reach-hero__aside {
    background: linear-gradient(180deg, rgba(15, 76, 129, 0.1), rgba(22, 89, 143, 0.16));
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.table-subline {
    color: var(--muted);
    font-size: 0.9rem;
}

.button-small {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.88rem;
}

.status-pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.status-danger {
    background: rgba(177, 58, 58, 0.12);
    color: var(--danger);
}

.status-success {
    background: rgba(22, 137, 93, 0.12);
    color: var(--success);
}

.flash {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: var(--panel-soft);
    color: var(--primary);
}

.flash-success {
    background: rgba(22, 137, 93, 0.12);
    color: var(--success);
}

.flash-error {
    background: rgba(177, 58, 58, 0.12);
    color: var(--danger);
}

.flash-warning {
    background: rgba(255, 178, 91, 0.2);
    color: #7a4c12;
}

.flash a {
    font-weight: 700;
    text-decoration: underline;
}

.flash-stack--public {
    position: fixed;
    top: 94px;
    right: 16px;
    z-index: 85;
    display: grid;
    gap: 10px;
    width: min(calc(100vw - 32px), 380px);
}

.flash--toast {
    margin: 0;
    box-shadow: 0 18px 44px rgba(14, 34, 53, 0.14);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.flash--toast.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.form-hint {
    margin: -6px 0 2px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.login-panel {
    width: min(460px, 100%);
    padding: 34px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.stack,
.form-grid {
    display: grid;
    gap: 16px;
}

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

.newsletter-modal {
    position: fixed;
    inset: auto 16px 16px 16px;
    display: none;
    z-index: 60;
}

.newsletter-modal.is-visible {
    display: block;
}

.newsletter-modal__panel {
    width: min(100%, 420px);
    margin-left: auto;
    position: relative;
}

.newsletter-modal__content {
    display: grid;
    gap: 14px;
}

.newsletter-modal__content h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.newsletter-modal__content form {
    display: grid;
    gap: 12px;
}

.newsletter-modal--centered {
    inset: 0;
    padding: 24px;
    align-items: center;
    justify-content: center;
    background: rgba(8, 18, 29, 0.46);
}

.newsletter-modal--centered.is-visible,
.newsletter-modal--fullscreen.is-visible {
    display: flex;
}

.newsletter-modal--centered .newsletter-modal__panel {
    width: min(100%, 560px);
    margin: 0;
}

.newsletter-modal--fullscreen {
    inset: 0;
    padding: 18px;
    align-items: stretch;
    justify-content: stretch;
    background:
        radial-gradient(circle at top left, rgba(255, 178, 91, 0.18), transparent 34%),
        linear-gradient(140deg, rgba(9, 27, 44, 0.96), rgba(15, 76, 129, 0.92));
}

.newsletter-modal--fullscreen .newsletter-modal__panel {
    width: min(100%, 760px);
    min-height: min(100%, 560px);
    margin: auto;
    padding: clamp(28px, 6vw, 52px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
}

.newsletter-modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 999px;
    background: var(--panel-soft);
    color: var(--primary);
}

.newsletter-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 58;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #1d6aa7);
    color: #fff;
    box-shadow: 0 20px 44px rgba(15, 76, 129, 0.28);
}

.newsletter-fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.newsletter-drawer {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 70;
}

.newsletter-drawer.is-open {
    display: block;
}

.newsletter-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 29, 0.36);
}

.newsletter-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 430px);
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    box-shadow: -24px 0 60px rgba(14, 34, 53, 0.14);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    overflow-y: auto;
}

.newsletter-drawer.is-open .newsletter-drawer__panel {
    transform: translateX(0);
}

.settings-shell {
    display: grid;
    gap: 22px;
}

.settings-hero {
    display: grid;
    gap: 18px;
}

.settings-layout {
    display: grid;
    gap: 18px;
}

.settings-section {
    display: grid;
    gap: 18px;
}

.settings-section__head {
    display: grid;
    gap: 8px;
}

.settings-section__head h2 {
    margin: 0;
}

.settings-split {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
}

.settings-preview-card {
    min-height: 100%;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.settings-inline-note {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary-strong);
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
}

.settings-section-danger {
    border-color: rgba(177, 58, 58, 0.22);
}

.detail-stack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.analytics-hero {
    display: grid;
    gap: 18px;
}

.analytics-filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.analytics-metrics .dashboard-card p {
    font-size: 2.3rem;
}

.analytics-chart-card {
    overflow: hidden;
}

.analytics-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    align-items: end;
    gap: 12px;
    min-height: 240px;
}

.analytics-bar {
    display: grid;
    gap: 8px;
    align-items: end;
    justify-items: center;
    min-height: 220px;
}

.analytics-bar__fill {
    width: 100%;
    min-height: 8px;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(180deg, #5ab2ff 0%, #0f4c81 100%);
}

.analytics-bar__value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
}

.analytics-bar__label {
    color: var(--muted);
    font-size: 0.78rem;
}

.analytics-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}

.empty-state {
    text-align: center;
}

.prelaunch-section {
    padding-top: 72px;
    min-height: calc(100vh - 220px);
}

.prelaunch-panel {
    padding: 36px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.prelaunch-message {
    font-size: 1.12rem;
    color: var(--primary);
    font-weight: 700;
}

.settings-preview {
    width: min(100%, 420px);
    border-radius: 18px;
    border: 1px solid var(--line);
}

@media (max-width: 980px) {
    .hero-showcase,
    .reach-hero__grid,
    .management-layout,
    .detail-grid,
    .dashboard-shell,
    .settings-split,
    .footer-grid,
    .dashboard-topbar,
    .section-head,
    .promo-panel,
    .company-admin-header {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: initial;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .hero-search-simple,
    .filters-top,
    .split {
        grid-template-columns: 1fr;
    }

    .map-card__top {
        grid-template-columns: 1fr;
        display: grid;
    }

    .section-head--results {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .dashboard-menu-toggle {
        display: inline-flex;
    }

    .dashboard-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(300px, 82vw);
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        z-index: 70;
        overflow-y: auto;
    }

    .dashboard-sidebar.is-open {
        transform: translateX(0);
    }

    .dashboard-main {
        padding-top: 18px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .filters-toggle {
        display: inline-flex;
        margin-bottom: 12px;
    }

    .filters-collapsible {
        display: none;
    }

    .filters-collapsible.is-open {
        display: grid;
    }

    .filters-sticky {
        top: 112px;
    }

    .hero {
        padding-top: 46px;
    }

    .results-toolbar__view {
        margin-left: auto;
    }

    .view-toggle {
        padding: 9px 14px;
    }

    .section-head--results {
        align-items: center;
        gap: 12px;
    }

    .results-heading {
        gap: 8px;
    }

    .results-map {
        min-height: 52svh;
    }

    .listing-card--compact {
        grid-template-columns: 1fr;
    }

    .home-body .hero-visual {
        min-height: 74svh;
    }

    .home-body .hero-showcase {
        min-height: 74svh;
        align-content: end;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }
}

@media (max-width: 640px) {
    .flash-stack--public {
        top: 86px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .newsletter-fab {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .newsletter-drawer__panel {
        width: min(100%, 100vw);
        padding: 24px 18px;
    }

    .newsletter-modal--centered,
    .newsletter-modal--fullscreen {
        padding: 14px;
    }

    .newsletter-modal--fullscreen .newsletter-modal__panel {
        min-height: min(100%, 520px);
    }

    .home-body .hero-visual {
        min-height: 72svh;
    }

    .home-body .hero-showcase {
        min-height: 72svh;
    }

    .container {
        width: min(100% - 20px, 1180px);
    }

    .dashboard-main {
        padding: 20px;
    }

    .listing-card__image img {
        height: 190px;
    }

    .detail-image img {
        height: 290px;
    }

    .dashboard-card,
    .table-card,
    .newsletter-modal__panel,
    .prelaunch-panel,
    .listing-card__body,
    .info-card {
        padding: 20px;
    }

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

    .month-grid,
    .media-grid,
    .card-grid {
        gap: 16px;
    }
}
