@charset "UTF-8";

/* ================================================================
   Trebinje24 — mobile-first visual system
   ================================================================ */

:root {
    color-scheme: light;
    --t24-red: #e74734;
    --t24-red-600: #d83c2e;
    --t24-red-700: #c43127;
    --t24-red-soft: #fff0ed;
    --t24-blue: #2aace0;
    --t24-blue-600: #118dbd;
    --t24-blue-700: #08759f;
    --t24-blue-soft: #eaf8fd;
    --t24-navy: #0b1728;
    --t24-navy-2: #122a40;
    --t24-navy-3: #1b3c55;
    --t24-ink: #132230;
    --t24-text: #263b4a;
    --t24-muted: #637481;
    --t24-faint: #8a99a3;
    --t24-line: #dce5ea;
    --t24-line-strong: #c8d5dc;
    --t24-bg: #f4f7f9;
    --t24-surface: #ffffff;
    --t24-surface-2: #f9fbfc;
    --t24-success: #147a58;
    --t24-success-soft: #e7f6ef;
    --t24-warning: #a85f00;
    --t24-warning-soft: #fff4df;
    --t24-danger: #b4232d;
    --t24-danger-soft: #ffedef;
    --t24-gold: #d69b31;
    --t24-violet: #7058d6;
    --t24-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --t24-shadow-sm: 0 8px 24px rgba(12, 33, 50, .08);
    --t24-shadow: 0 18px 50px rgba(12, 33, 50, .12);
    --t24-shadow-lg: 0 28px 80px rgba(4, 21, 35, .2);
    --t24-radius-sm: 10px;
    --t24-radius: 16px;
    --t24-radius-lg: 24px;
    --t24-radius-xl: 32px;
    --t24-shell: 1240px;
    --t24-header: 66px;
    --t24-mobile-nav: 72px;
    --t24-ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
    min-width: 300px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--t24-header) + 24px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 300px;
    min-height: 100vh;
    margin: 0;
    padding: 0 0 calc(var(--t24-mobile-nav) + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    background: var(--t24-bg);
    color: var(--t24-text);
    font-family: var(--t24-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection,
::selection {
    background: rgba(42, 172, 224, .26);
    color: var(--t24-navy);
}

[hidden] {
    display: none !important;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    margin: 0;
    color: inherit;
    font: inherit;
}

button,
select,
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--t24-ink);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    text-wrap: balance;
}

h1 {
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 8vw, 4.6rem);
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 5vw, 2.65rem);
}

h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

p {
    margin-bottom: 16px;
}

small {
    line-height: 1.35;
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.shell {
    width: min(calc(100% - 32px), var(--t24-shell));
    margin-inline: auto;
}

.site-main {
    min-height: 58vh;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--t24-navy);
    color: #fff;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform .18s ease;
}

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

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid #ffd54a;
    outline-offset: 3px;
}

/* ================================================================
   Shared controls
   ================================================================ */

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    transition: transform .18s var(--t24-ease), box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.button:active {
    transform: translateY(0) scale(.985);
}

.button--primary {
    border-color: var(--t24-red-700);
    background: linear-gradient(135deg, var(--t24-red), var(--t24-red-700));
    box-shadow: 0 10px 24px rgba(196, 49, 39, .22);
    color: #fff;
}

.button--primary:hover {
    background: linear-gradient(135deg, #ef533e, #bb2d24);
    box-shadow: 0 13px 30px rgba(196, 49, 39, .3);
}

.button--dark {
    border-color: var(--t24-navy);
    background: var(--t24-navy);
    box-shadow: 0 10px 24px rgba(11, 23, 40, .16);
    color: #fff;
}

.button--dark:hover {
    background: var(--t24-navy-2);
}

.button--light {
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 26px rgba(4, 20, 34, .14);
    color: var(--t24-navy);
}

.button--ghost {
    border-color: var(--t24-line-strong);
    background: transparent;
    color: var(--t24-ink);
}

.button--small {
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 10px;
    font-size: .875rem;
}

.button--large {
    min-height: 54px;
    padding: 14px 22px;
}

.button--block {
    width: 100%;
}

.icon-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--t24-line);
    border-radius: 50%;
    background: #fff;
    color: var(--t24-navy);
    font-size: 1.25rem;
    transition: background-color .18s ease, transform .18s ease, border-color .18s ease;
}

.icon-button:hover {
    border-color: var(--t24-blue);
    background: var(--t24-blue-soft);
    transform: translateY(-1px);
}

.icon-button--glass {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(12px);
}

.text-button {
    min-height: 44px;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: var(--t24-muted);
    font-weight: 750;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--t24-blue-700);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.muted {
    color: var(--t24-muted);
}

.card-meta {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    color: var(--t24-muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.verified-mark,
.verified-badge {
    color: var(--t24-blue-700);
}

.verified-mark {
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--t24-blue-soft);
    font-size: .72rem;
    font-weight: 900;
}

.verified-badge,
.demo-badge,
.featured-pill,
.open-pill,
.live-pill,
.status-pill,
.booking-ready,
.deal-badge,
.best-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 850;
    line-height: 1.2;
}

.verified-badge {
    padding: 7px 10px;
    background: var(--t24-blue-soft);
}

.demo-badge {
    padding: 7px 10px;
    background: rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .84);
}

.open-pill {
    padding: 6px 9px;
    background: rgba(231, 246, 239, .96);
    color: #096747;
}

.open-pill i,
.open-text i,
.pulse-dot,
.live-pill i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #23b478;
    box-shadow: 0 0 0 4px rgba(35, 180, 120, .14);
}

.open-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1cb57b;
    font-weight: 750;
}

.status-pill {
    padding: 7px 10px;
    background: #edf2f5;
    color: var(--t24-text);
    white-space: nowrap;
}

.status-pill--confirmed,
.status-pill--completed,
.status-pill--checked_in,
.status-pill--published {
    background: var(--t24-success-soft);
    color: var(--t24-success);
}

.status-pill--requested,
.status-pill--pending,
.status-pill--scheduled {
    background: var(--t24-warning-soft);
    color: var(--t24-warning);
}

.status-pill--cancelled,
.status-pill--declined,
.status-pill--failed {
    background: var(--t24-danger-soft);
    color: var(--t24-danger);
}

/* ================================================================
   Header, logo crop and search drawer
   ================================================================ */

.site-header {
    position: sticky;
    z-index: 900;
    top: 0;
    height: var(--t24-header);
    border-bottom: 1px solid rgba(201, 214, 222, .78);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 24px rgba(12, 33, 50, .04);
    backdrop-filter: saturate(160%) blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand-link {
    display: inline-flex;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
}

.brand-crop {
    position: relative;
    display: block;
    overflow: hidden;
    flex: none;
}

.brand-crop img {
    position: absolute;
    max-width: none;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.brand-crop--full {
    width: 158px;
    height: 40px;
}

.brand-crop--full img {
    top: -87px;
    left: -7px;
    width: 171px;
}

.brand-crop--compact {
    width: 76px;
    height: 47px;
}

.brand-crop--compact img {
    top: -20px;
    left: -61px;
    width: 202px;
}

.desktop-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.desktop-nav a {
    position: relative;
    padding: 12px 10px;
    border-radius: 9px;
    color: #405563;
    font-size: .9rem;
    font-weight: 750;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 11px;
    bottom: 6px;
    left: 11px;
    height: 2px;
    border-radius: 2px;
    background: var(--t24-red);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    background: var(--t24-surface-2);
    color: var(--t24-navy);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-actions .publish-button {
    display: none;
}

.login-button {
    white-space: nowrap;
}

.avatar-button {
    position: relative;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--t24-blue), var(--t24-blue-700));
    box-shadow: 0 0 0 1px var(--t24-line), 0 8px 18px rgba(8, 117, 159, .22);
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.avatar-button .status-dot {
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #25b87b;
}

.search-drawer {
    position: fixed;
    z-index: 2000;
    inset: 0;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(4, 17, 30, .66);
    backdrop-filter: blur(7px);
}

.search-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: min(88vh, 620px);
    padding: 24px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow: auto;
    border-radius: 26px 26px 0 0;
    background: #fff;
    box-shadow: var(--t24-shadow-lg);
    animation: panel-in .28s var(--t24-ease) both;
}

.search-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.search-panel__head h2 {
    margin: 0;
}

.global-search {
    display: grid;
    gap: 10px;
}

.global-search input,
.directory-search input,
.hero-search input,
.auth-form input,
.booking-form input,
.booking-form select,
.review-form input,
.review-form select,
.review-form textarea,
.publish-form input,
.publish-form select,
.publish-form textarea,
.editor-form input,
.editor-form select,
.editor-form textarea,
.stay-search input,
.stay-search select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--t24-line-strong);
    border-radius: 11px;
    background: #fff;
    color: var(--t24-ink);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.global-search input {
    min-height: 56px;
    padding: 0 16px;
    font-size: 1.05rem;
}

:where(.global-search, .directory-search, .hero-search, .auth-form, .booking-form, .review-form, .publish-form, .editor-form, .stay-search) :where(input, select, textarea):focus {
    border-color: var(--t24-blue-600);
    box-shadow: 0 0 0 4px rgba(42, 172, 224, .14);
    outline: 0;
}

.search-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.search-shortcuts a {
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid var(--t24-line);
    border-radius: 999px;
    background: var(--t24-surface-2);
    color: var(--t24-text);
    font-size: .86rem;
    font-weight: 750;
}

.search-toggle {
    position: relative;
}

.search-toggle::after {
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--t24-blue);
    content: "";
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   Feedback, install and transient states
   ================================================================ */

.flash {
    position: relative;
    z-index: 40;
    margin-top: 12px;
    padding: 13px 16px;
    border: 1px solid;
    border-radius: 12px;
    box-shadow: var(--t24-shadow-sm);
    font-weight: 750;
}

.flash--success {
    border-color: #b9e2d1;
    background: var(--t24-success-soft);
    color: #0c6447;
}

.flash--error {
    border-color: #efc4c8;
    background: var(--t24-danger-soft);
    color: var(--t24-danger);
}

.form-feedback {
    min-height: 0;
    margin-top: 10px;
    color: var(--t24-muted);
    font-size: .9rem;
    font-weight: 700;
}

.form-feedback:not(:empty) {
    padding: 11px 13px;
    border-radius: 10px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

.install-card {
    position: fixed;
    z-index: 1300;
    right: 12px;
    bottom: calc(var(--t24-mobile-nav) + 12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    display: grid;
    width: auto;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: linear-gradient(145deg, var(--t24-navy), #153b57);
    box-shadow: var(--t24-shadow-lg);
    color: #fff;
    animation: install-in .35s var(--t24-ease) both;
}

.install-card__icon,
.install-widget__icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 1px;
    border-radius: 17px;
    background: linear-gradient(145deg, var(--t24-red), var(--t24-blue));
    box-shadow: inset 0 1px rgba(255, 255, 255, .35), 0 10px 24px rgba(4, 16, 28, .25);
    color: #fff;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 900;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .25);
}

.install-card__copy strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.install-card__copy p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}

.install-card__copy small {
    display: block;
    margin-top: 7px;
    color: #bde9fb;
}

.install-card__actions {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 8px;
}

.install-card__actions .button {
    flex: 1;
}

.install-card__actions .text-button {
    color: rgba(255, 255, 255, .72);
}

@keyframes install-in {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.toast-region {
    position: fixed;
    z-index: 2500;
    right: 16px;
    bottom: calc(var(--t24-mobile-nav) + 18px + env(safe-area-inset-bottom, 0px));
    display: grid;
    width: min(390px, calc(100% - 32px));
    gap: 8px;
    pointer-events: none;
}

.toast-region > * {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    background: var(--t24-navy);
    box-shadow: var(--t24-shadow);
    color: #fff;
    font-weight: 700;
}

/* ================================================================
   Home hero
   ================================================================ */

.hero-home {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 46px 0 78px;
    background:
        radial-gradient(circle at 80% 12%, rgba(42, 172, 224, .28), transparent 34%),
        radial-gradient(circle at 2% 86%, rgba(231, 71, 52, .22), transparent 32%),
        linear-gradient(145deg, #081421 0%, #0e263b 57%, #0b3853 100%);
    color: #fff;
}

.hero-home::after {
    position: absolute;
    z-index: -1;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 62px rgba(255, 255, 255, .025), 0 0 0 124px rgba(255, 255, 255, .018);
    content: "";
}

.hero-home__ambient i,
.business-hero__ambient i {
    position: absolute;
    border-radius: 999px;
    opacity: .6;
    filter: blur(1px);
}

.hero-home__ambient i:nth-child(1) {
    top: 18%;
    left: 4%;
    width: 6px;
    height: 90px;
    background: linear-gradient(transparent, var(--t24-red), transparent);
    transform: rotate(32deg);
}

.hero-home__ambient i:nth-child(2) {
    top: 16%;
    right: 11%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--t24-blue), transparent);
}

.hero-home__ambient i:nth-child(3) {
    right: 32%;
    bottom: 10%;
    width: 8px;
    height: 8px;
    background: #fff;
    box-shadow: 32px -24px 0 rgba(255, 255, 255, .35), -18px 31px 0 var(--t24-red);
}

.hero-home__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
}

.live-city-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
}

.live-city-line b {
    color: #fff;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pulse-dot {
    position: relative;
    background: #38d997;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    50% { box-shadow: 0 0 0 8px rgba(56, 217, 151, 0); }
}

.hero-home h1 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.45rem, 11vw, 5.7rem);
    letter-spacing: -.055em;
}

.hero-home__copy > p {
    max-width: 650px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1rem, 3vw, 1.22rem);
}

.hero-search {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.hero-search__icon {
    display: grid;
    place-items: center;
    color: var(--t24-blue-700);
    font-size: 1.3rem;
}

.hero-search input {
    min-width: 0;
    min-height: 56px;
    padding: 0 12px 0 0;
    border: 0;
    border-radius: 0;
    outline: 0;
}

.hero-search button {
    min-height: 50px;
    grid-column: 1 / -1;
    padding: 0 18px;
    border: 0;
    background: linear-gradient(135deg, var(--t24-red), var(--t24-red-700));
    color: #fff;
    font-weight: 850;
}

.hero-search--light {
    border-color: var(--t24-line);
    box-shadow: var(--t24-shadow-sm);
}

.hero-trends {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 11px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .65);
    font-size: .78rem;
}

.hero-trends a {
    color: #fff;
    font-weight: 720;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .25);
    text-underline-offset: 3px;
}

.hero-live-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--t24-radius-lg);
    background: rgba(255, 255, 255, .09);
    box-shadow: var(--t24-shadow-lg);
    backdrop-filter: blur(14px);
}

.hero-live-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    font-weight: 780;
}

.hero-live-card__head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-live-card__head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t24-red);
    box-shadow: 0 0 0 4px rgba(231, 71, 52, .15);
}

.hero-live-card__visual {
    position: relative;
    display: flex;
    min-height: 126px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(42, 172, 224, .8), rgba(112, 88, 214, .6)),
        var(--t24-navy-2);
}

.hero-live-card__visual::before,
.hero-live-card__visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
}

.hero-live-card__visual::before {
    top: -70px;
    right: -20px;
    width: 190px;
    height: 190px;
}

.hero-live-card__visual::after {
    top: -38px;
    right: 12px;
    width: 126px;
    height: 126px;
}

.hero-live-card__visual b {
    position: relative;
    z-index: 1;
    max-width: 70%;
    color: #fff;
    font-size: 1.2rem;
}

.sound-wave {
    display: flex;
    height: 36px;
    align-items: flex-end;
    gap: 4px;
}

.sound-wave i {
    width: 4px;
    border-radius: 5px;
    background: #fff;
    animation: wave 1s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(1) { height: 38%; }
.sound-wave i:nth-child(2) { height: 82%; animation-delay: -.4s; }
.sound-wave i:nth-child(3) { height: 58%; animation-delay: -.2s; }
.sound-wave i:nth-child(4) { height: 100%; animation-delay: -.55s; }
.sound-wave i:nth-child(5) { height: 46%; animation-delay: -.3s; }

@keyframes wave {
    to { height: 26%; }
}

.hero-live-card__body {
    padding: 18px;
}

.hero-live-card__body .eyebrow {
    color: #8edcf7;
}

.hero-live-card__body h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.45rem;
}

.hero-live-card__body p {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

/* ================================================================
   Home quick actions and global sections
   ================================================================ */

.quick-dock {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    padding: 16px;
    border: 1px solid rgba(208, 220, 226, .88);
    border-radius: 21px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--t24-shadow);
}

.quick-dock__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.quick-dock__head h2 {
    margin: 0;
    font-size: 1.05rem;
}

.quick-dock__head span {
    color: var(--t24-faint);
    font-size: .72rem;
    font-weight: 700;
}

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

.quick-item {
    --quick: var(--t24-blue);
    display: grid;
    min-width: 0;
    min-height: 94px;
    grid-template-rows: 34px 1fr;
    align-content: start;
    gap: 7px;
    padding: 10px 8px;
    border: 1px solid color-mix(in srgb, var(--quick) 20%, var(--t24-line));
    border-radius: 13px;
    background: color-mix(in srgb, var(--quick) 7%, white);
    transition: transform .18s var(--t24-ease), box-shadow .18s ease, border-color .18s ease;
}

.quick-item > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    background: var(--quick);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.quick-item b {
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .74rem;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.quick-item > i {
    display: none;
}

.quick-item:hover {
    border-color: color-mix(in srgb, var(--quick) 55%, var(--t24-line));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--quick) 13%, transparent);
    transform: translateY(-3px);
}

.quick-item--blue { --quick: #278fc6; }
.quick-item--red { --quick: var(--t24-red); }
.quick-item--violet { --quick: #725bd6; }
.quick-item--cyan { --quick: #20a9c0; }
.quick-item--orange { --quick: #d27624; }
.quick-item--green { --quick: #318b5b; }
.quick-item--navy { --quick: #173e59; }
.quick-item--sand { --quick: #a8793d; }
.quick-item--teal { --quick: #188b87; }
.quick-item--lime { --quick: #618f2a; }
.quick-item--rose { --quick: #bd4a72; }
.quick-item--sky { --quick: #368db4; }

.city-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 16px;
    background: #fff;
}

.city-stats > div {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-right: 1px solid var(--t24-line);
    border-bottom: 1px solid var(--t24-line);
}

.city-stats > div:nth-child(2n) {
    border-right: 0;
}

.city-stats > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.city-stats strong {
    color: var(--t24-navy);
    font-size: 1.65rem;
    line-height: 1;
}

.city-stats sup {
    color: var(--t24-red);
}

.city-stats span {
    margin-top: 7px;
    color: var(--t24-muted);
    font-size: .76rem;
}

.section {
    padding-block: 54px;
}

.section--page {
    min-height: 28vh;
    padding-top: 34px;
}

.section--tint {
    border-block: 1px solid #dfebf0;
    background:
        linear-gradient(145deg, rgba(42, 172, 224, .055), transparent 46%),
        #edf4f7;
}

.section--dark {
    background:
        radial-gradient(circle at 12% 15%, rgba(231, 71, 52, .15), transparent 27%),
        radial-gradient(circle at 87% 85%, rgba(42, 172, 224, .18), transparent 32%),
        var(--t24-navy);
    color: rgba(255, 255, 255, .75);
}

.section--dark :where(h2, h3, h4) {
    color: #fff;
}

.section--dark .eyebrow {
    color: #8adcf8;
}

.section--dark .section-link {
    color: #fff;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-heading > div {
    min-width: 0;
}

.section-heading h2 {
    margin-bottom: 7px;
}

.section-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--t24-muted);
}

.section--dark .section-heading p {
    color: rgba(255, 255, 255, .62);
}

.section-link {
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--t24-blue-700);
    font-size: .9rem;
    font-weight: 850;
    white-space: nowrap;
}

.section-link span {
    transition: transform .18s ease;
}

.section-link:hover span {
    transform: translateX(4px);
}

.subsection-heading {
    margin-top: 44px;
    margin-bottom: 18px;
}

.card-rail {
    display: grid;
    grid-auto-columns: minmax(258px, 83%);
    grid-auto-flow: column;
    gap: 14px;
    margin-inline: -16px;
    padding: 2px 16px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
}

.card-rail > * {
    scroll-snap-align: start;
}

.event-rail .event-card {
    height: 100%;
}

/* ================================================================
   Business cards
   ================================================================ */

.business-grid,
.event-grid,
.deal-grid,
.apartment-grid,
.community-grid,
.classified-grid,
.guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.business-card,
.event-card,
.deal-card,
.apartment-card,
.community-card,
.classified-card,
.guide-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: var(--t24-radius);
    background: #fff;
    box-shadow: 0 8px 30px rgba(12, 33, 50, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--t24-ease);
}

.business-card:hover,
.event-card:hover,
.deal-card:hover,
.apartment-card:hover,
.community-card:hover,
.classified-card:hover,
.guide-card:hover {
    border-color: #bed1dc;
    box-shadow: var(--t24-shadow);
    transform: translateY(-4px);
}

.business-card__visual {
    position: relative;
    display: flex;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .32), transparent 20%),
        linear-gradient(145deg, #159bcb, #16567c);
}

.business-card__visual::before,
.business-card__visual::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.business-card__visual::before {
    top: -50px;
    right: -34px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 0 0 28px rgba(255, 255, 255, .055);
}

.business-card__visual::after {
    bottom: -36px;
    left: -15px;
    width: 130px;
    height: 80px;
    background: rgba(11, 23, 40, .12);
    transform: rotate(18deg);
}

.business-visual--restaurant,
.business-visual--food,
.business-visual--butcher { background: linear-gradient(145deg, #e9633d, #9c302b); }
.business-visual--salon,
.business-visual--beauty { background: linear-gradient(145deg, #9b6fda, #4e3b99); }
.business-visual--apartment,
.business-visual--accommodation { background: linear-gradient(145deg, #21a8bd, #175872); }
.business-visual--winery { background: linear-gradient(145deg, #9f546c, #4c2840); }
.business-visual--market,
.business-visual--shop { background: linear-gradient(145deg, #64a34b, #30693d); }
.business-visual--craftsman,
.business-visual--service { background: linear-gradient(145deg, #447794, #173b53); }
.business-visual--boutique { background: linear-gradient(145deg, #d37e8d, #874254); }

.business-card__initials {
    position: relative;
    z-index: 1;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 24px;
    background: rgba(255, 255, 255, .15);
    box-shadow: inset 0 1px rgba(255, 255, 255, .25), 0 12px 30px rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.04em;
    backdrop-filter: blur(9px);
}

.business-card__visual .featured-pill {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    background: rgba(11, 23, 40, .78);
    color: #fff;
    backdrop-filter: blur(8px);
}

.business-card__visual .open-pill {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
}

.business-card__body {
    padding: 17px;
}

.business-card__body h3 {
    margin: 7px 0;
    font-size: 1.16rem;
}

.business-card__body h3 a:hover {
    color: var(--t24-blue-700);
}

.business-card__body > p {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 14px;
    overflow: hidden;
    color: var(--t24-muted);
    font-size: .88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.business-card__footer {
    display: flex;
    min-height: 28px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #edf1f3;
}

.rating {
    color: var(--t24-gold);
    font-size: .83rem;
}

.rating small {
    color: var(--t24-faint);
}

.booking-ready {
    padding: 5px 8px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

/* ================================================================
   Event cards
   ================================================================ */

.event-card__visual {
    position: relative;
    min-height: 142px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 34%, rgba(255, 255, 255, .19), transparent 18%),
        linear-gradient(145deg, #245b78, #112c43);
}

.event-card__visual::after {
    position: absolute;
    right: -36px;
    bottom: -76px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .035), 0 0 0 68px rgba(255, 255, 255, .02);
    content: "";
}

.event-visual--music { background: linear-gradient(145deg, #5944b5, #18284e); }
.event-visual--nightlife { background: linear-gradient(145deg, #9a3e75, #311d51); }
.event-visual--culture { background: linear-gradient(145deg, #c56736, #733326); }
.event-visual--family { background: linear-gradient(145deg, #2998ba, #23607c); }
.event-visual--sport { background: linear-gradient(145deg, #2b9870, #17503d); }
.event-visual--experience { background: linear-gradient(145deg, #9b6744, #4a342b); }

.event-card__date {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: flex;
    width: 62px;
    height: 62px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
    color: var(--t24-navy);
}

.event-card__date b {
    font-size: 1.4rem;
    line-height: 1;
}

.event-card__date small {
    max-width: 55px;
    margin-top: 4px;
    overflow: hidden;
    color: var(--t24-muted);
    font-size: .61rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-pill {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 12px;
    padding: 6px 9px;
    background: rgba(11, 23, 40, .76);
    color: #fff;
    backdrop-filter: blur(8px);
}

.live-pill i {
    background: #ff705d;
    box-shadow: 0 0 0 4px rgba(255, 112, 93, .17);
}

.event-card__glyph {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 3px;
    color: rgba(255, 255, 255, .8);
    font-size: 4.7rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-5deg);
}

.event-card__body {
    padding: 16px;
}

.event-card__body h3 {
    margin: 7px 0 10px;
    font-size: 1.12rem;
}

.event-card__venue {
    min-height: 40px;
    margin: 0;
    color: var(--t24-muted);
    font-size: .87rem;
}

.event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #edf1f3;
    color: var(--t24-navy);
    font-size: .86rem;
}

/* ================================================================
   Deals, comparisons, apartments and services
   ================================================================ */

.deal-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.deal-card__top {
    position: relative;
    display: flex;
    min-height: 92px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 120%, rgba(255, 255, 255, .26), transparent 40%),
        linear-gradient(135deg, var(--t24-red), #bc2e27);
}

.deal-card__top::after {
    position: absolute;
    right: -22px;
    bottom: -54px;
    width: 140px;
    height: 100px;
    border: 18px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.deal-badge {
    z-index: 1;
    padding: 6px 9px;
    background: rgba(255, 255, 255, .92);
    color: var(--t24-red-700);
}

.deal-discount {
    z-index: 1;
    color: #fff;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.deal-card__body {
    padding: 17px;
}

.deal-card__body h3 {
    margin: 8px 0;
    font-size: 1.16rem;
}

.deal-card__body p {
    color: var(--t24-muted);
    font-size: .88rem;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.price-row strong {
    color: var(--t24-red-700);
    font-size: 1.3rem;
}

.price-row del,
.menu-item__price del {
    color: var(--t24-faint);
}

.price-row small {
    color: var(--t24-muted);
}

.deal-card__link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 17px;
    border-top: 1px solid var(--t24-line);
    color: var(--t24-blue-700);
    font-size: .87rem;
    font-weight: 850;
}

.compare-showcase {
    display: grid;
    gap: 24px;
}

.compare-showcase__copy {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--t24-radius-lg);
    background:
        radial-gradient(circle at 90% 15%, rgba(42, 172, 224, .25), transparent 28%),
        var(--t24-navy);
    color: rgba(255, 255, 255, .72);
}

.compare-showcase__copy::after {
    position: absolute;
    right: -75px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 36px rgba(255, 255, 255, .025);
    content: "";
}

.compare-showcase__copy h2 {
    color: #fff;
}

.compare-showcase__copy .eyebrow {
    color: #8edcf7;
}

.compare-list {
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: var(--t24-radius-lg);
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.compare-row {
    display: grid;
    min-height: 78px;
    grid-template-columns: 30px minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--t24-line);
    transition: background .18s ease;
}

.compare-row:last-child {
    border-bottom: 0;
}

.compare-row:hover {
    background: var(--t24-blue-soft);
}

.compare-rank {
    color: var(--t24-faint);
    font-size: .75rem;
    font-weight: 850;
}

.compare-product {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.compare-product b {
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compare-product small,
.compare-saving small {
    color: var(--t24-muted);
    font-size: .7rem;
}

.compare-saving {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.compare-saving strong {
    color: var(--t24-red-700);
    font-size: .92rem;
}

.compare-arrow {
    color: var(--t24-blue-700);
    font-weight: 900;
}

.appointment-spotlight,
.photo-feature,
.photo-winner {
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--t24-line);
    border-radius: var(--t24-radius-lg);
    background: #fff;
    box-shadow: var(--t24-shadow);
}

.appointment-spotlight__visual {
    position: relative;
    display: grid;
    min-height: 290px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .22), transparent 27%),
        linear-gradient(145deg, #866fdd, #342e77);
}

.appointment-spotlight__visual::before,
.appointment-spotlight__visual::after {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    content: "";
}

.appointment-spotlight__visual::before { top: -115px; left: -60px; }
.appointment-spotlight__visual::after { right: -100px; bottom: -75px; }

.spotlight-monogram {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 38px;
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 22px 50px rgba(22, 17, 73, .3);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.verified-float {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .93);
    color: var(--t24-blue-700);
    font-size: .72rem;
    font-weight: 850;
}

.spotlight-slots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    background: rgba(11, 23, 40, .55);
    backdrop-filter: blur(10px);
}

.spotlight-slots small {
    width: 100%;
    color: rgba(255, 255, 255, .66);
}

.spotlight-slots span {
    padding: 5px 8px;
    border-radius: 7px;
    background: #fff;
    color: var(--t24-navy);
    font-size: .75rem;
    font-weight: 850;
}

.appointment-spotlight__copy,
.photo-feature__copy,
.photo-winner__copy {
    padding: 28px;
}

.appointment-spotlight__copy > p,
.photo-feature__copy > p,
.photo-winner__copy > p {
    color: var(--t24-muted);
}

.mini-service-list {
    display: grid;
    gap: 1px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: var(--t24-line);
}

.mini-service-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    font-size: .84rem;
}

.mini-service-list b {
    color: var(--t24-muted);
    font-size: .74rem;
}

.apartment-card {
    color: var(--t24-text);
}

.apartment-grid--page,
.community-grid--page {
    align-items: stretch;
}

.apartment-card__visual,
.stay-unit__visual {
    position: relative;
    display: block;
    min-height: 180px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(11, 23, 40, .25)),
        linear-gradient(145deg, #38b4cb, #246b83 62%, #133d55);
}

.apartment-visual--2 { background: linear-gradient(145deg, #d99a64, #8b4d45 62%, #49323b); }
.apartment-visual--3 { background: linear-gradient(145deg, #70a778, #315e58 62%, #1b3c4c); }

.apartment-card__visual::after,
.stay-unit__visual::after {
    position: absolute;
    right: 12%;
    bottom: 0;
    width: 48%;
    height: 62%;
    border: 8px solid rgba(255, 255, 255, .75);
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, .72) 49%, rgba(255, 255, 255, .72) 53%, transparent 54%),
        linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .72) 53%, transparent 54%),
        rgba(13, 46, 62, .22);
    box-shadow: -72px 27px 0 -30px rgba(255, 255, 255, .64);
    content: "";
}

.apartment-card__badge,
.stay-unit__visual > span {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--t24-navy);
    font-size: .72rem;
    font-weight: 850;
}

.apartment-card__scene i {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 17px;
    width: 38px;
    height: 44px;
    border-radius: 50% 50% 8px 8px;
    background: rgba(255, 255, 255, .28);
}

.apartment-card__scene i:nth-child(2) { left: 43px; height: 30px; opacity: .7; }
.apartment-card__scene i:nth-child(3) { left: 70px; width: 22px; height: 56px; opacity: .55; }

.apartment-card__body {
    padding: 17px;
}

.apartment-card__body h3 {
    margin: 7px 0;
    color: var(--t24-ink);
}

.apartment-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--t24-muted);
    font-size: .88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.apartment-card__body > strong {
    color: var(--t24-ink);
    font-size: 1.15rem;
}

.apartment-card__body > strong small,
.apartment-price small,
.stay-unit__body > strong small {
    color: var(--t24-muted);
    font-size: .72rem;
    font-weight: 600;
}

.amenity-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.amenity-row span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #edf3f6;
    color: #4c6270;
    font-size: .7rem;
    font-weight: 720;
}

.apartment-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--t24-line);
}

.apartment-price a {
    color: var(--t24-blue-700);
    font-size: .82rem;
    font-weight: 850;
}

.services-index {
    overflow: hidden;
}

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

.service-pills a {
    display: grid;
    min-width: 0;
    min-height: 86px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--t24-line);
    border-radius: 13px;
    background: #fff;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.service-pills a:hover {
    border-color: var(--t24-blue);
    box-shadow: var(--t24-shadow-sm);
    transform: translateY(-2px);
}

.service-pills span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-weight: 900;
}

.service-pills b {
    min-width: 0;
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .78rem;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.service-pills i {
    color: var(--t24-faint);
    font-style: normal;
}

/* ================================================================
   Community
   ================================================================ */

.community-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 16px;
}

.community-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: 1.1rem;
    font-weight: 900;
}

.community-card--job .community-card__icon { background: #edf0ff; color: #5146a4; }
.community-card--lost_found .community-card__icon { background: #fff1e8; color: #a84f18; }
.community-card--pet .community-card__icon { background: #ffedf4; color: #a83c68; }
.community-card--market .community-card__icon { background: #ebf7ee; color: #287147; }
.community-card--obituary .community-card__icon { background: #edf0f2; color: #3b4852; }

.community-card__body h3 {
    margin: 5px 0 7px;
}

.community-card__body p {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--t24-muted);
    font-size: .86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.community-card__body > small {
    color: var(--t24-faint);
    font-size: .7rem;
}

.community-policy {
    border-bottom: 1px solid #f2d8cf;
    background: #fff4f0;
    color: #7b3a2d;
}

.community-policy > div {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
}

.community-policy > div > span {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--t24-red-700);
    font-weight: 900;
}

.community-policy p {
    flex: 1;
    margin: 0;
    font-size: .8rem;
    font-weight: 720;
}

.community-policy a {
    display: none;
    color: var(--t24-red-700);
    font-size: .78rem;
    font-weight: 850;
}

.classified-card {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr);
}

.classified-card__visual {
    position: relative;
    display: grid;
    min-height: 154px;
    place-items: center;
    background: linear-gradient(145deg, #d6a262, #8d5d34);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.classified-card__visual b {
    position: absolute;
    top: 9px;
    left: 9px;
    padding: 5px 7px;
    border-radius: 999px;
    background: rgba(11, 23, 40, .72);
    font-size: .62rem;
}

.classified-card > div:last-child {
    min-width: 0;
    padding: 14px;
}

.classified-card h3 {
    margin: 6px 0;
}

.classified-card p {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--t24-muted);
    font-size: .82rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.classified-card strong {
    color: var(--t24-red-700);
}

/* ================================================================
   Photo of the day and graphic scenes
   ================================================================ */

.photo-feature__visual {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #bceafa;
}

.river-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #72cce9 0%, #c6ecf6 56%, #7cbcc9 57%, #3e8da7 100%);
}

.river-scene .sun {
    position: absolute;
    top: 15%;
    right: 14%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffd26d;
    box-shadow: 0 0 0 18px rgba(255, 210, 109, .15);
}

.river-scene .hill {
    position: absolute;
    bottom: 32%;
    width: 88%;
    height: 42%;
    border-radius: 60% 70% 0 0;
    background: #4f916e;
}

.river-scene .hill--one {
    left: -26%;
    transform: rotate(8deg);
}

.river-scene .hill--two {
    right: -35%;
    bottom: 29%;
    background: #397c63;
    transform: rotate(-7deg);
}

.river-scene .bridge {
    position: absolute;
    z-index: 3;
    right: 12%;
    bottom: 31%;
    left: 12%;
    height: 15px;
    border-radius: 3px;
    background: #d9b58b;
    box-shadow: 0 8px 0 #8c674a;
}

.river-scene .bridge::before,
.river-scene .bridge::after {
    position: absolute;
    bottom: -44px;
    width: 12px;
    height: 44px;
    background: #8c674a;
    content: "";
}

.river-scene .bridge::before { left: 22%; }
.river-scene .bridge::after { right: 22%; }

.river-scene .river {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    background:
        repeating-linear-gradient(174deg, rgba(255, 255, 255, .17) 0 2px, transparent 2px 17px),
        linear-gradient(#5ab1ca, #307b9b);
}

.river-scene--large {
    min-height: 390px;
}

.photo-feature__label {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 12px;
    background: rgba(11, 23, 40, .67);
    color: #fff;
    font-size: .83rem;
    backdrop-filter: blur(9px);
}

.photo-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 18px 0;
}

.photo-author > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .75rem;
    font-weight: 900;
}

.photo-author div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.photo-author small {
    color: var(--t24-muted);
    font-size: .72rem;
}

.photo-score {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 13px;
}

.photo-score > div {
    padding: 12px 8px;
    border-right: 1px solid var(--t24-line);
    text-align: center;
}

.photo-score > div:last-child {
    border-right: 0;
}

.photo-score strong,
.photo-score small {
    display: block;
}

.photo-score strong {
    color: var(--t24-navy);
    font-size: 1.05rem;
}

.photo-score small {
    margin-top: 3px;
    color: var(--t24-muted);
    font-size: .64rem;
}

.photo-protection {
    display: grid;
    gap: 24px;
}

.photo-protection > div p {
    color: var(--t24-muted);
}

.photo-protection ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo-protection li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
    border: 1px solid var(--t24-line);
    border-radius: 13px;
    background: #fff;
}

.photo-protection li > span {
    grid-row: 1 / 3;
    color: var(--t24-blue-700);
    font-size: .72rem;
    font-weight: 900;
}

.photo-protection li b {
    color: var(--t24-ink);
}

.photo-protection li p {
    margin: 3px 0 0;
    color: var(--t24-muted);
    font-size: .8rem;
}

.always-full-note {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-block: 32px;
}

.always-full-note__icon {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--t24-red), var(--t24-blue));
    box-shadow: 0 14px 34px rgba(15, 96, 128, .22);
    color: #fff;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 900;
}

.always-full-note h2 {
    margin: 0;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.business-cta,
.claim-strip {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(42, 172, 224, .28), transparent 27%),
        linear-gradient(135deg, var(--t24-red-700), #8f2b34 44%, var(--t24-navy) 100%);
    color: rgba(255, 255, 255, .76);
}

.business-cta::after,
.claim-strip::after {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .028);
    content: "";
}

.business-cta__inner,
.claim-strip > .shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-block: 44px;
}

.business-cta h2,
.claim-strip h2 {
    color: #fff;
}

.business-cta .eyebrow,
.claim-strip .eyebrow {
    color: #a7e5fa;
}

.business-cta p,
.claim-strip p {
    margin: 0;
}

/* ================================================================
   Page heroes, filters and directory
   ================================================================ */

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 24%, rgba(42, 172, 224, .28), transparent 30%),
        linear-gradient(145deg, var(--t24-navy), #143a57);
    color: rgba(255, 255, 255, .72);
}

.page-hero::before,
.page-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
}

.page-hero::before {
    top: -130px;
    right: -90px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 54px rgba(255, 255, 255, .025);
}

.page-hero::after {
    bottom: -60px;
    left: 7%;
    width: 160px;
    height: 90px;
    background: rgba(231, 71, 52, .14);
    filter: blur(45px);
}

.page-hero--deals,
.page-hero--community,
.page-hero--publish {
    background:
        radial-gradient(circle at 82% 16%, rgba(42, 172, 224, .25), transparent 29%),
        linear-gradient(145deg, #982c2d, var(--t24-red-700) 42%, var(--t24-navy));
}

.page-hero--apartments,
.page-hero--photo {
    background:
        radial-gradient(circle at 80% 16%, rgba(255, 255, 255, .13), transparent 26%),
        linear-gradient(145deg, #0b526d, var(--t24-blue-700) 42%, var(--t24-navy));
}

.page-hero--directory,
.page-hero--search {
    background:
        radial-gradient(circle at 82% 18%, rgba(42, 172, 224, .32), transparent 30%),
        linear-gradient(145deg, #0b1728, #134565);
}

.page-hero--events {
    background:
        radial-gradient(circle at 82% 18%, rgba(154, 82, 197, .32), transparent 30%),
        linear-gradient(145deg, #151833, #243b67 55%, #0d536c);
}

.page-hero--prices {
    background:
        radial-gradient(circle at 86% 14%, rgba(54, 195, 159, .24), transparent 29%),
        linear-gradient(145deg, #0b1728, #164c59);
}

.page-hero--guide {
    background:
        radial-gradient(circle at 84% 16%, rgba(231, 71, 52, .25), transparent 29%),
        linear-gradient(145deg, #0b1728, #3b304d 57%, #8a3a37);
}

.page-hero__inner {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding-block: 42px;
}

.page-hero__inner > div:first-child {
    max-width: 790px;
}

.page-hero h1 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2.1rem, 9vw, 4.25rem);
}

.page-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(.95rem, 2.5vw, 1.12rem);
}

.page-hero .eyebrow {
    color: #9be1f9;
}

.hero-symbol,
.hero-count {
    display: grid;
    min-width: 78px;
    min-height: 78px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 26px;
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .14);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.hero-count {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
}

.hero-count strong {
    font-size: 2rem;
    line-height: 1;
}

.hero-count span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .66);
    font-size: .7rem;
}

.filter-bar,
.directory-tools {
    position: relative;
    z-index: 5;
    margin-top: -20px;
    padding: 14px;
    border: 1px solid var(--t24-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--t24-shadow-sm);
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-chips,
.category-strip,
.reservation-tabs,
.view-switch {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar,
.category-strip::-webkit-scrollbar,
.reservation-tabs::-webkit-scrollbar,
.view-switch::-webkit-scrollbar {
    display: none;
}

.filter-chips a,
.category-strip a,
.reservation-tabs button,
.view-switch button {
    display: inline-flex;
    min-height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--t24-line);
    border-radius: 999px;
    background: #fff;
    color: var(--t24-muted);
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.filter-chips a.is-active,
.category-strip a.is-active,
.reservation-tabs button.is-active,
.view-switch button.is-active {
    border-color: var(--t24-navy);
    background: var(--t24-navy);
    color: #fff;
}

.category-strip small {
    color: inherit;
    opacity: .65;
}

.filter-switch {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .8rem;
    font-weight: 850;
    text-align: center;
}

.category-strip--shell {
    margin-top: 18px;
    padding-block: 4px;
}

.directory-tools {
    display: grid;
    gap: 12px;
}

.directory-search {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: #fff;
}

.directory-search > span {
    display: grid;
    place-items: center;
    color: var(--t24-blue-700);
}

.directory-search input {
    min-width: 0;
    padding: 0 10px 0 0;
    border: 0;
}

.directory-search button {
    min-height: 44px;
    grid-column: 1 / -1;
    border: 0;
    background: var(--t24-navy);
    color: #fff;
    font-weight: 800;
}

.directory-layout {
    display: grid;
    gap: 20px;
}

.directory-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 15px;
    border: 1px solid var(--t24-line);
    border-radius: 15px;
    background: #fff;
}

.directory-sidebar > strong,
.directory-sidebar .sidebar-note {
    grid-column: 1 / -1;
}

.directory-sidebar label {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #edf1f3;
    border-radius: 9px;
    color: var(--t24-text);
    font-size: .78rem;
    font-weight: 700;
}

.directory-sidebar input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: var(--t24-blue-700);
}

.sidebar-note {
    display: flex;
    gap: 9px;
    margin-top: 6px;
    padding: 11px;
    border-radius: 10px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

.sidebar-note > span {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    font-weight: 900;
}

.sidebar-note p {
    margin: 0;
    color: var(--t24-text);
    font-size: .72rem;
}

.sidebar-note b {
    display: block;
    margin-bottom: 2px;
    color: var(--t24-blue-700);
}

.stay-search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -18px;
}

.stay-search {
    display: grid;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--t24-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--t24-shadow);
}

.stay-search label,
.booking-form label,
.review-form label,
.publish-form label,
.editor-form label,
.auth-form > label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    color: var(--t24-text);
    font-size: .78rem;
    font-weight: 820;
}

.stay-search input,
.stay-search select,
.booking-form input,
.booking-form select,
.review-form input,
.review-form select,
.review-form textarea,
.publish-form input,
.publish-form select,
.publish-form textarea,
.editor-form input,
.editor-form select,
.editor-form textarea {
    padding: 10px 12px;
    font-weight: 550;
}

/* ================================================================
   Business profile
   ================================================================ */

.business-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 38px;
    background:
        radial-gradient(circle at 86% 18%, rgba(42, 172, 224, .27), transparent 29%),
        radial-gradient(circle at 4% 90%, rgba(231, 71, 52, .17), transparent 29%),
        linear-gradient(145deg, #091522, #163850);
    color: rgba(255, 255, 255, .72);
}

.business-hero__ambient i:nth-child(1) {
    top: -60px;
    right: -40px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.business-hero__ambient i:nth-child(2) {
    right: 80px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    border: 28px solid rgba(255, 255, 255, .025);
}

.business-hero__ambient i:nth-child(3) {
    bottom: 10%;
    left: 4%;
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--t24-red), transparent);
    transform: rotate(-24deg);
}

.business-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.business-hero__visual {
    display: flex;
    width: 110px;
    height: 110px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(42, 172, 224, .78), rgba(231, 71, 52, .63));
    box-shadow: 0 22px 50px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .25);
    color: #fff;
}

.business-hero__visual span {
    font-size: 1.7rem;
    font-weight: 900;
}

.business-hero__visual small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .75);
    font-size: .63rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.business-hero__copy h1 {
    margin: 10px 0 7px;
    color: #fff;
    font-size: clamp(2.05rem, 9vw, 4.5rem);
}

.business-hero__copy > p {
    max-width: 680px;
    margin-bottom: 14px;
}

.business-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    font-size: .82rem;
}

.business-hero__facts > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rating-large {
    color: #ffd46e;
    font-weight: 850;
}

.rating-large small {
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
}

.business-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.business-hero__actions .button {
    flex: 1 1 auto;
}

.business-tabs {
    position: sticky;
    z-index: 100;
    top: var(--t24-header);
    border-bottom: 1px solid var(--t24-line);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 7px 20px rgba(12, 33, 50, .04);
    backdrop-filter: blur(14px);
}

.business-tabs > div {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.business-tabs > div::-webkit-scrollbar {
    display: none;
}

.business-tabs a {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 13px;
    color: var(--t24-muted);
    font-size: .8rem;
    font-weight: 800;
}

.business-tabs a::after {
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--t24-red);
    content: "";
    opacity: 0;
}

.business-tabs a:hover {
    color: var(--t24-navy);
}

.business-tabs a:hover::after {
    opacity: 1;
}

.business-layout {
    display: grid;
    gap: 24px;
    padding-block: 34px 58px;
}

.business-content,
.business-sidebar {
    min-width: 0;
}

.business-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--t24-line);
}

.business-section:first-child {
    padding-top: 0;
}

.business-section:last-child {
    border-bottom: 0;
}

.business-section > h2 {
    margin-bottom: 18px;
}

.lead-copy {
    max-width: 800px;
    color: #3f5564;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
}

.business-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.business-feature-row span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--t24-success-soft);
    color: #176849;
    font-size: .73rem;
    font-weight: 780;
}

.menu-groups {
    display: grid;
    gap: 20px;
}

.menu-group {
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 15px;
    background: #fff;
}

.menu-group > h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--t24-line);
    background: var(--t24-surface-2);
}

.menu-group > h3 span {
    display: grid;
    min-width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 9px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .72rem;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 15px 16px;
    border-bottom: 1px solid #eaf0f3;
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-item__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.menu-item__title h4 {
    margin: 0;
    font-size: 1rem;
}

.menu-item__title span {
    padding: 3px 6px;
    border-radius: 999px;
    background: var(--t24-red-soft);
    color: var(--t24-red-700);
    font-size: .61rem;
    font-weight: 850;
}

.menu-item p {
    margin: 5px 0;
    color: var(--t24-muted);
    font-size: .8rem;
}

.menu-item a {
    color: var(--t24-blue-700);
    font-size: .73rem;
    font-weight: 820;
}

.menu-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.menu-item__price strong {
    color: var(--t24-red-700);
    font-size: 1.03rem;
}

.menu-item__price small {
    color: var(--t24-muted);
    font-size: .66rem;
}

.service-list {
    display: grid;
    gap: 9px;
}

.service-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--t24-line);
    border-radius: 13px;
    background: #fff;
}

.service-list__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: #f0edff;
    color: var(--t24-violet);
    font-weight: 900;
}

.service-list h3 {
    margin: 0 0 3px;
    font-size: .96rem;
}

.service-list p {
    margin: 0 0 3px;
    color: var(--t24-muted);
    font-size: .78rem;
}

.service-list small {
    color: var(--t24-faint);
    font-size: .68rem;
}

.service-list article > strong {
    color: var(--t24-red-700);
    font-size: .9rem;
    white-space: nowrap;
}

.booking-module {
    margin-block: 28px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #cfe2ea;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(42, 172, 224, .12), transparent 27%),
        #f8fcfe;
    box-shadow: var(--t24-shadow-sm);
}

.booking-module--appointment {
    border-color: #d9d2f4;
    background:
        radial-gradient(circle at 100% 0, rgba(112, 88, 214, .12), transparent 27%),
        #fbfaff;
}

.booking-module--restaurant .module-icon {
    background: var(--t24-red-soft);
    color: var(--t24-red-700);
}

.ajax-form {
    min-width: 0;
}

.booking-module__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.booking-module__head h2 {
    margin-bottom: 7px;
}

.booking-module__head p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .87rem;
}

.module-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 16px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: 1.25rem;
    font-weight: 900;
}

.booking-module--appointment .module-icon {
    background: #f0edff;
    color: var(--t24-violet);
}

.booking-fields {
    display: grid;
    gap: 11px;
}

.booking-fields + .booking-fields {
    margin-top: 14px;
}

.booking-fields--identity {
    margin-block: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--t24-line);
}

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

.booking-form input[readonly] {
    background: #edf3f5;
    color: var(--t24-muted);
}

.table-picker,
.slot-picker {
    margin-top: 18px;
}

.table-picker legend,
.slot-picker legend {
    margin-bottom: 10px;
    color: var(--t24-ink);
    font-size: .82rem;
    font-weight: 850;
}

.table-map {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #bfd4dd;
    border-radius: 16px;
    background:
        linear-gradient(rgba(31, 89, 113, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 89, 113, .04) 1px, transparent 1px),
        #eef6f8;
    background-size: 22px 22px;
}

.table-map::before {
    position: absolute;
    inset: 34px 16px 30px;
    border: 2px solid rgba(24, 91, 116, .18);
    border-radius: 11px;
    content: "";
}

.table-map__zone {
    position: absolute;
    z-index: 1;
    left: 16px;
    padding: 4px 7px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .88);
    color: var(--t24-muted);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.table-map__zone--top { top: 8px; }
.table-map__zone--bottom { bottom: 7px; }

.table-choice {
    position: absolute;
    z-index: 3;
    top: var(--y);
    left: var(--x);
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
}

.table-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.table-choice > span {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #8bb0bf;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 16px rgba(14, 60, 79, .12);
    color: var(--t24-text);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.table-choice--square > span,
.table-choice--rectangle > span {
    border-radius: 13px;
}

.table-choice--rectangle {
    width: 82px;
}

.table-choice b {
    font-size: .78rem;
}

.table-choice small {
    color: var(--t24-muted);
    font-size: .58rem;
}

.table-choice input:checked + span {
    border-color: var(--t24-red-700);
    background: var(--t24-red-soft);
    box-shadow: 0 0 0 4px rgba(231, 71, 52, .12), 0 8px 20px rgba(196, 49, 39, .15);
    color: var(--t24-red-700);
    transform: scale(1.05);
}

.table-choice input:focus-visible + span {
    outline: 3px solid #ffd54a;
    outline-offset: 3px;
}

.table-choice input:disabled + span {
    border-style: dashed;
    background: #e4ebee;
    color: var(--t24-faint);
    opacity: .7;
}

.table-map__door {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 7px;
    padding: 3px 7px;
    border-radius: 6px;
    background: var(--t24-navy);
    color: #fff;
    font-size: .6rem;
    font-style: normal;
    font-weight: 850;
}

.slot-picker > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.slot-picker label {
    position: relative;
}

.slot-picker input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.slot-picker span {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid #cfc8ec;
    border-radius: 11px;
    background: #fff;
    color: #504392;
    font-size: .82rem;
    font-weight: 850;
}

.slot-picker input:checked + span {
    border-color: var(--t24-violet);
    background: var(--t24-violet);
    box-shadow: 0 8px 20px rgba(112, 88, 214, .2);
    color: #fff;
}

.slot-picker input:focus-visible + span {
    outline: 3px solid #ffd54a;
    outline-offset: 2px;
}

.stay-units {
    display: grid;
    gap: 16px;
}

.stay-unit {
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 17px;
    background: #fff;
}

.stay-unit__body {
    padding: 18px;
}

.stay-unit__body > p {
    color: var(--t24-muted);
}

.booking-form--compact {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--t24-line);
}

.booking-form--compact > div {
    display: grid;
    gap: 9px;
}

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

.review-card {
    padding: 17px;
    border: 1px solid var(--t24-line);
    border-radius: 14px;
    background: #fff;
}

.review-author {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.review-author > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .7rem;
    font-weight: 900;
}

.review-author > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.review-author small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.review-author > strong {
    color: var(--t24-gold);
    font-size: .72rem;
    letter-spacing: -1px;
}

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

.review-card p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .88rem;
}

.business-sidebar {
    display: grid;
    align-content: start;
    gap: 13px;
}

.info-card {
    overflow: hidden;
    padding: 16px;
    border: 1px solid var(--t24-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(12, 33, 50, .045);
}

.info-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
}

.hours-list {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 10px;
    background: var(--t24-line);
}

.hours-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    background: #fff;
    font-size: .76rem;
}

.hours-list small {
    color: var(--t24-muted);
}

.mini-map {
    position: relative;
    height: 138px;
    margin: -16px -16px 15px;
    overflow: hidden;
    background:
        linear-gradient(34deg, transparent 45%, rgba(255, 255, 255, .8) 46% 50%, transparent 51%),
        linear-gradient(-22deg, transparent 46%, rgba(255, 255, 255, .72) 47% 51%, transparent 52%),
        #dcebee;
}

.mini-map__river {
    position: absolute;
    top: -20%;
    left: 44%;
    width: 38px;
    height: 150%;
    border-radius: 50%;
    background: #77c7df;
    transform: rotate(22deg);
}

.mini-map__pin {
    position: absolute;
    top: 48%;
    left: 55%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 8px;
    background: var(--t24-red);
    box-shadow: 0 8px 20px rgba(146, 40, 32, .3);
    color: #fff;
    font-size: .62rem;
    font-style: normal;
    font-weight: 900;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mini-map__pin::first-letter {
    transform: rotate(45deg);
}

.info-card > h3 {
    margin-bottom: 7px;
    font-size: .98rem;
}

.info-card > a {
    color: var(--t24-blue-700);
    font-size: .8rem;
    font-weight: 850;
}

.contact-card {
    padding: 0;
}

.contact-card > a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--t24-line);
    color: var(--t24-text);
}

.contact-card > a:last-child {
    border-bottom: 0;
}

.contact-card > a > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

.contact-card > a > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-card small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.contact-card b {
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .84rem;
    text-overflow: ellipsis;
}

.claim-card {
    background: linear-gradient(145deg, var(--t24-blue-soft), #fff);
}

.claim-card > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--t24-blue-700);
    color: #fff;
    font-weight: 900;
}

.claim-card p {
    color: var(--t24-muted);
    font-size: .82rem;
}

/* ================================================================
   Price explorer
   ================================================================ */

.price-explorer {
    display: grid;
    gap: 18px;
}

.price-products,
.price-results {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.price-products__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid var(--t24-line);
    background: var(--t24-surface-2);
}

.price-products__head span {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 9px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .72rem;
    font-weight: 850;
}

.price-product {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--t24-line);
    transition: background .18s ease, border-color .18s ease;
}

.price-product:last-child {
    border-bottom: 0;
}

.price-product:hover,
.price-product.is-active {
    background: var(--t24-blue-soft);
}

.price-product.is-active {
    box-shadow: inset 4px 0 var(--t24-blue-700);
}

.price-product > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.price-product b {
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.price-product small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.price-product > strong {
    color: var(--t24-red-700);
    font-size: .86rem;
    white-space: nowrap;
}

.price-results__head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-bottom: 1px solid var(--t24-line);
}

.price-results__head h2 {
    margin: 0 0 6px;
    font-size: 1.65rem;
}

.price-results__head p {
    margin: 0;
    color: var(--t24-muted);
}

.best-price {
    display: flex;
    min-width: 130px;
    flex-direction: column;
    padding: 12px 15px;
    border-radius: 13px;
    background: var(--t24-success-soft);
}

.best-price small {
    color: var(--t24-success);
    font-size: .68rem;
    font-weight: 800;
}

.best-price strong {
    color: #0e6849;
    font-size: 1.35rem;
}

.offer-table {
    min-width: 0;
}

.offer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 7px 12px;
    padding: 14px;
    border-bottom: 1px solid var(--t24-line);
}

.offer-row:last-child {
    border-bottom: 0;
}

.offer-row.is-best {
    background: linear-gradient(90deg, rgba(231, 246, 239, .9), #fff);
    box-shadow: inset 4px 0 var(--t24-success);
}

.offer-row--head {
    display: none;
}

.offer-row > span:first-child {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.offer-logo {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .64rem;
    font-style: normal;
    font-weight: 900;
}

.offer-row > span:first-child > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.offer-row b {
    overflow: hidden;
    color: var(--t24-ink);
    font-size: .84rem;
    text-overflow: ellipsis;
}

.offer-row small {
    color: var(--t24-muted);
    font-size: .67rem;
}

.offer-row > span:nth-child(2) {
    grid-column: 1;
    padding-left: 48px;
    color: var(--t24-muted);
    font-size: .72rem;
}

.offer-row > span:nth-child(3) {
    display: flex;
    grid-column: 1;
    align-items: center;
    gap: 7px;
    padding-left: 48px;
}

.offer-row > span:nth-child(3) strong {
    color: var(--t24-red-700);
}

.best-tag {
    padding: 4px 7px;
    background: var(--t24-success-soft);
    color: var(--t24-success) !important;
}

.offer-row > span:last-child {
    display: grid;
    grid-row: 1 / 4;
    grid-column: 2;
    place-items: center;
}

.offer-row > span:last-child a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: var(--t24-navy);
    color: #fff;
    font-weight: 900;
}

.catalog-note {
    display: flex;
    gap: 11px;
    margin: 14px;
    padding: 13px;
    border-radius: 11px;
    background: var(--t24-blue-soft);
}

.catalog-note > span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--t24-blue-700);
    color: #fff;
    font-weight: 850;
}

.catalog-note p {
    margin: 0;
    color: #365766;
    font-size: .78rem;
}

.search-product-list {
    display: grid;
    gap: 8px;
}

.search-product-list a {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: #fff;
}

.search-product-list a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.search-product-list b {
    color: var(--t24-ink);
}

.search-product-list small {
    color: var(--t24-muted);
}

.search-product-list strong {
    color: var(--t24-red-700);
    white-space: nowrap;
}

/* ================================================================
   Guide, legal and errors
   ================================================================ */

.guide-card {
    padding: 20px;
}

.guide-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--t24-blue), var(--t24-blue-700));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.guide-card h2 {
    font-size: 1.24rem;
}

.guide-card p {
    color: var(--t24-muted);
    font-size: .88rem;
}

.guide-card a {
    color: var(--t24-blue-700);
    font-size: .85rem;
    font-weight: 850;
}

.legal-page {
    max-width: 860px;
    padding-block: 56px 76px;
}

.legal-page > h1 {
    font-size: clamp(2.25rem, 8vw, 4rem);
}

.legal-lead {
    color: #3e5665;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.75;
}

.legal-copy {
    margin-top: 32px;
    padding: 22px;
    border: 1px solid var(--t24-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.legal-copy h2 {
    margin-top: 30px;
    font-size: 1.35rem;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    color: #435967;
    line-height: 1.75;
}

.error-page,
.dashboard-empty {
    display: flex;
    min-height: 66vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 54px;
    text-align: center;
}

.error-code {
    display: block;
    color: transparent;
    font-size: clamp(5rem, 28vw, 11rem);
    font-weight: 950;
    line-height: .85;
    letter-spacing: -.08em;
    -webkit-text-stroke: 2px var(--t24-blue);
}

.error-page h1,
.dashboard-empty h1 {
    margin-top: 20px;
    font-size: clamp(1.8rem, 7vw, 3rem);
}

.error-page p,
.dashboard-empty p {
    max-width: 650px;
    color: var(--t24-muted);
}

.dashboard-empty__icon {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--t24-blue-soft), #fff);
    box-shadow: var(--t24-shadow);
    color: var(--t24-blue-700);
    font-size: 2rem;
    font-weight: 900;
}

.dashboard-empty > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

/* ================================================================
   Publish flow and AI assistance
   ================================================================ */

.publish-layout {
    display: grid;
    gap: 20px;
}

.publish-form,
.publish-help,
.editor-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--t24-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.form-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding-block: 22px;
    border-bottom: 1px solid var(--t24-line);
}

.form-step:first-child {
    padding-top: 0;
}

.form-step > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: var(--t24-navy);
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.form-step h2 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.form-step label + label {
    margin-top: 13px;
}

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

.type-picker label {
    position: relative;
    display: block;
}

.type-picker input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.type-picker label > span {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7px;
    padding: 11px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: var(--t24-surface-2);
}

.type-picker i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-style: normal;
}

.type-picker b {
    color: var(--t24-ink);
    font-size: .75rem;
    line-height: 1.25;
}

.type-picker input:checked + span {
    border-color: var(--t24-blue-700);
    background: var(--t24-blue-soft);
    box-shadow: 0 0 0 3px rgba(42, 172, 224, .1);
}

.type-picker input:focus-visible + span {
    outline: 3px solid #ffd54a;
    outline-offset: 2px;
}

.ai-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    padding: 9px;
    border: 1px solid #d8d1f2;
    border-radius: 11px;
    background: #f7f5ff;
}

.ai-toolbar button {
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid #c8bfed;
    border-radius: 9px;
    background: #fff;
    color: #5947a9;
    font-size: .75rem;
    font-weight: 830;
}

.ai-toolbar small {
    flex: 1 1 100%;
    color: #71699a;
    font-size: .68rem;
}

.publish-policy {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    padding: 13px;
    border-radius: 11px;
    background: var(--t24-red-soft);
    color: #71362f;
}

.publish-policy span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--t24-red-700);
    font-weight: 900;
}

.publish-policy p {
    margin: 0;
    font-size: .78rem;
    font-weight: 720;
}

.publish-help {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0, rgba(112, 88, 214, .14), transparent 25%),
        #fff;
}

.publish-help h2 {
    font-size: 1.5rem;
}

.publish-help ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
    color: var(--t24-text);
    font-size: .85rem;
}

.publish-help li::marker {
    color: var(--t24-violet);
}

.publish-help > p {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--t24-line);
    color: var(--t24-muted);
    font-size: .8rem;
}

/* ================================================================
   Phone-only authentication
   ================================================================ */

.auth-shell {
    display: grid;
    min-height: calc(100vh - var(--t24-header));
    gap: 0;
    padding-block: 28px 48px;
}

.auth-shell--pending .auth-card {
    align-self: center;
}

.auth-card {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 22px;
    border: 1px solid var(--t24-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--t24-shadow);
}

.auth-brand {
    display: inline-flex;
    margin-bottom: 22px;
}

.auth-card__intro {
    margin-bottom: 22px;
}

.auth-card__intro h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 8vw, 3rem);
}

.auth-card__intro p {
    margin: 0;
    color: var(--t24-muted);
}

.auth-card__intro--center {
    text-align: center;
}

.auth-form {
    display: grid;
    gap: 11px;
}

.phone-field {
    display: grid;
    min-height: 60px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--t24-line-strong);
    border-radius: 13px;
    background: #fff;
}

.phone-field:focus-within {
    border-color: var(--t24-blue-600);
    box-shadow: 0 0 0 4px rgba(42, 172, 224, .14);
}

.phone-field > span {
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.phone-field input {
    min-width: 0;
    min-height: 58px;
    padding: 0 8px;
    border: 0;
    outline: 0;
    font-size: 1.02rem;
}

.phone-field i {
    padding-right: 11px;
    color: var(--t24-blue-700);
    font-size: .7rem;
    font-style: normal;
    font-weight: 800;
}

.auth-benefits {
    display: grid;
    gap: 8px;
    margin-top: 19px;
    padding: 13px;
    border-radius: 12px;
    background: var(--t24-success-soft);
    color: #2d5c4a;
}

.auth-benefits span {
    font-size: .75rem;
    font-weight: 700;
}

.auth-privacy {
    display: flex;
    gap: 8px;
    margin: 16px 0 0;
    color: var(--t24-muted);
    font-size: .72rem;
}

.auth-aside {
    display: none;
}

.auth-back {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--t24-muted);
    font-size: .8rem;
    font-weight: 800;
}

.sms-status-orb {
    position: relative;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    margin: 4px auto 22px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--t24-blue), var(--t24-blue-700));
    box-shadow: 0 16px 40px rgba(8, 117, 159, .25);
    color: #fff;
    font-size: .9rem;
    font-weight: 900;
}

.sms-status-orb i {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(42, 172, 224, .34);
    border-radius: 50%;
    animation: sms-orbit 2.4s ease-out infinite;
}

.sms-status-orb i:nth-child(2) { animation-delay: -.8s; }
.sms-status-orb i:nth-child(3) { animation-delay: -1.6s; }

@keyframes sms-orbit {
    0% { opacity: .8; transform: scale(.82); }
    100% { opacity: 0; transform: scale(1.36); }
}

.sms-instruction,
.sms-to {
    margin-top: 11px;
    padding: 14px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: var(--t24-surface-2);
}

.sms-instruction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 10px;
}

.sms-instruction small,
.sms-to small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.sms-instruction strong {
    grid-column: 1;
    overflow-wrap: anywhere;
    color: var(--t24-navy);
}

.sms-instruction button {
    min-height: 40px;
    grid-row: 1 / 3;
    grid-column: 2;
    padding: 7px 10px;
    border: 1px solid var(--t24-blue-600);
    border-radius: 9px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .74rem;
    font-weight: 850;
}

.sms-to {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sms-to a {
    color: var(--t24-blue-700);
    font-size: 1.05rem;
    font-weight: 900;
}

.waiting-line {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 15px;
    padding: 12px 0;
}

.waiting-line > span {
    position: relative;
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 3px solid #d9e5ea;
    border-top-color: var(--t24-blue-700);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.waiting-line p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .8rem;
    font-weight: 750;
}

.auth-note {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-radius: 11px;
    background: var(--t24-warning-soft);
}

.auth-note > span {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--t24-warning);
    font-weight: 900;
}

.auth-note b {
    color: #71450c;
    font-size: .78rem;
}

.auth-note p {
    margin: 3px 0 0;
    color: #795b34;
    font-size: .7rem;
}

/* ================================================================
   User and business dashboards
   ================================================================ */

.dashboard-shell {
    display: grid;
    gap: 18px;
    padding-block: 24px 58px;
}

.dashboard-sidebar {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--t24-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.dashboard-user > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--t24-blue), var(--t24-blue-700));
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.dashboard-business > span {
    background: linear-gradient(145deg, var(--t24-red), var(--t24-red-700));
}

.dashboard-user > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.dashboard-user b {
    overflow: hidden;
    color: var(--t24-ink);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-user small {
    color: var(--t24-success);
    font-size: .68rem;
}

.dashboard-sidebar nav {
    display: flex;
    gap: 6px;
    margin-inline: -14px;
    padding: 3px 14px 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dashboard-sidebar nav::-webkit-scrollbar {
    display: none;
}

.dashboard-sidebar nav a,
.dashboard-sidebar > form button,
.sidebar-switch {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--t24-muted);
    font-size: .78rem;
    font-weight: 780;
    white-space: nowrap;
}

.dashboard-sidebar nav a span,
.dashboard-sidebar > form button span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 8px;
    background: #edf3f6;
    color: var(--t24-blue-700);
}

.dashboard-sidebar nav a.is-active {
    background: var(--t24-navy);
    color: #fff;
}

.dashboard-sidebar nav a.is-active span {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.dashboard-sidebar > form,
.sidebar-switch {
    display: none;
}

.dashboard-main {
    min-width: 0;
}

.business-dashboard .dashboard-main,
.business-editor .dashboard-main {
    min-width: 0;
}

.business-editor .dashboard-main {
    counter-reset: editor-section;
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.dashboard-header h1 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 7vw, 3.2rem);
}

.dashboard-header p {
    margin: 0;
    color: var(--t24-muted);
}

.dashboard-header > div:last-child:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-overview,
.metric-grid {
    display: grid;
    gap: 12px;
}

.trust-summary,
.next-action,
.install-widget,
.metric-card {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--t24-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(12, 33, 50, .045);
}

.trust-summary__head {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.trust-gem {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #8c77e2, #5040a0);
    color: #fff;
    box-shadow: 0 9px 20px rgba(80, 64, 160, .22);
}

.trust-summary__head small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.trust-summary__head h2 {
    margin: 1px 0 0;
    font-size: 1.18rem;
}

.trust-summary__head > strong {
    color: var(--t24-violet);
    font-size: 1.5rem;
}

.progress-track {
    height: 8px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e5f5;
}

.progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--t24-violet), var(--t24-blue));
}

.trust-summary > p {
    margin: 10px 0 0;
    color: var(--t24-muted);
    font-size: .72rem;
}

.next-action {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    background:
        radial-gradient(circle at 100% 0, rgba(42, 172, 224, .11), transparent 30%),
        #fff;
}

.next-action > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-weight: 900;
}

.next-action small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.next-action h2 {
    margin: 3px 0;
    font-size: 1.05rem;
}

.next-action p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .78rem;
}

.next-action > b {
    grid-column: 2;
    color: var(--t24-blue-700);
    font-size: .75rem;
}

.install-widget {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    background: linear-gradient(145deg, #fff, var(--t24-blue-soft));
}

.install-widget h2 {
    margin: 0 0 3px;
    font-size: 1rem;
}

.install-widget p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .75rem;
}

.install-widget .button {
    grid-column: 1 / -1;
}

.dashboard-section,
.value-banner,
.editor-card {
    margin-top: 18px;
}

.dashboard-section,
.value-banner {
    padding: 20px;
    border: 1px solid var(--t24-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
}

.dashboard-section .section-heading {
    align-items: flex-start;
}

.reservation-tabs,
.view-switch {
    margin-bottom: 13px;
}

.reservation-list,
.my-posts,
.notification-timeline,
.catalog-editor,
.staff-editor {
    display: grid;
    gap: 8px;
}

.reservation-list > article,
.my-posts > article,
.notification-timeline > article,
.team-placeholder,
.staff-editor > article {
    display: grid;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: var(--t24-surface-2);
}

.reservation-kind,
.notification-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: 1rem;
    font-weight: 900;
}

.reservation-kind--appointment { background: #f0edff; color: var(--t24-violet); }
.reservation-kind--stay { background: #e8f6f1; color: var(--t24-success); }
.reservation-kind--restaurant { background: var(--t24-red-soft); color: var(--t24-red-700); }

.reservation-list small,
.my-posts small,
.notification-timeline small {
    color: var(--t24-muted);
    font-size: .67rem;
}

.reservation-list h3,
.my-posts h3,
.notification-timeline h3 {
    margin: 3px 0;
    font-size: .95rem;
}

.reservation-list p,
.my-posts p,
.notification-timeline p {
    margin: 0;
    color: var(--t24-muted);
    font-size: .76rem;
}

.reservation-list .status-pill,
.my-posts .status-pill {
    grid-column: 2;
}

.my-posts > article > span:first-child {
    padding-top: 3px;
    color: var(--t24-blue-700);
    font-size: .68rem;
    font-weight: 850;
}

.my-posts > article > button,
.business-booking-table article > button,
.catalog-editor article > button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--t24-line);
    border-radius: 10px;
    background: #fff;
    color: var(--t24-muted);
    font-weight: 900;
}

.my-posts > article > button {
    position: absolute;
    right: 12px;
}

.my-posts > article {
    position: relative;
    padding-right: 56px;
}

.empty-inline,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border: 1px dashed var(--t24-line-strong);
    border-radius: 14px;
    background: var(--t24-surface-2);
    color: var(--t24-muted);
    text-align: center;
}

.empty-inline {
    font-size: .82rem;
}

.empty-state {
    min-height: 250px;
    margin-block: 20px;
}

.empty-state > span {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 21px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: 1.45rem;
    font-weight: 900;
}

.empty-state h2 {
    font-size: 1.35rem;
}

.empty-state p {
    max-width: 480px;
}

.trust-levels {
    display: grid;
    gap: 8px;
}

.trust-detail {
    background:
        radial-gradient(circle at 100% 0, rgba(112, 88, 214, .08), transparent 28%),
        #fff;
}

.trust-levels > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid var(--t24-line);
    border-radius: 11px;
    opacity: .58;
}

.trust-levels > div.is-reached {
    border-color: #d6cffa;
    background: #f8f6ff;
    opacity: 1;
}

.trust-levels > div > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    background: #e9e6f6;
    color: var(--t24-violet);
    font-size: .72rem;
    font-weight: 900;
}

.trust-levels b {
    color: var(--t24-ink);
    font-size: .84rem;
}

.trust-levels small {
    color: var(--t24-muted);
    font-size: .65rem;
}

.title-awards {
    margin-top: 18px;
}

.title-awards h3 {
    margin-bottom: 11px;
}

.title-awards article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid #eadab6;
    border-radius: 12px;
    background: #fffbf2;
}

.title-awards article > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 13px;
    background: #fff3cf;
    color: #9b670d;
}

.title-awards article p {
    margin: 2px 0 0;
    color: var(--t24-muted);
    font-size: .75rem;
}

.title-awards article > small {
    grid-column: 2;
    color: #9b670d;
    font-size: .65rem;
    font-weight: 850;
}

.settings-grid {
    display: grid;
    gap: 9px;
}

.settings-grid > article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
}

.settings-grid > article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

.settings-grid h3 {
    margin: 0;
    font-size: .9rem;
}

.settings-grid p {
    margin: 2px 0;
    color: var(--t24-text);
    font-size: .8rem;
}

.settings-grid small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.settings-grid button {
    margin-top: 7px;
    padding: 6px 9px;
    border: 1px solid var(--t24-blue-600);
    border-radius: 8px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .72rem;
    font-weight: 850;
}

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

.metric-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    padding: 14px;
}

.metric-card > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
}

.metric-card small {
    color: var(--t24-muted);
    font-size: .65rem;
}

.metric-card strong {
    display: block;
    color: var(--t24-navy);
    font-size: 1.55rem;
    line-height: 1.1;
}

.metric-card p {
    margin: 5px 0 0;
    color: var(--t24-muted);
    font-size: .66rem;
}

.metric-card--primary {
    border-color: transparent;
    background: linear-gradient(145deg, var(--t24-blue-700), var(--t24-navy-2));
    color: rgba(255, 255, 255, .72);
}

.metric-card--primary > span {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.metric-card--primary :where(small, strong, p) {
    color: inherit;
}

.metric-card--primary strong {
    color: #fff;
}

.value-banner {
    display: grid;
    gap: 14px;
    overflow: hidden;
    border: 0;
    background:
        radial-gradient(circle at 92% 15%, rgba(42, 172, 224, .25), transparent 28%),
        linear-gradient(145deg, var(--t24-navy), #183e5a);
    color: rgba(255, 255, 255, .7);
}

.value-banner .eyebrow {
    color: #8edcf7;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.value-stats span {
    display: flex;
    flex-direction: column;
}

.value-stats strong {
    color: #fff;
    font-size: 1.25rem;
}

.value-stats small {
    color: rgba(255, 255, 255, .57);
    font-size: .62rem;
}

.business-booking-table,
.catalog-editor {
    min-width: 0;
}

.booking-table-head {
    display: none;
}

.business-booking-table article,
.catalog-editor article {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 8px;
    padding: 13px;
    border: 1px solid var(--t24-line);
    border-radius: 12px;
    background: var(--t24-surface-2);
}

.business-booking-table article.is-new,
.notification-timeline article.is-unread {
    border-color: #a8d6e8;
    background: linear-gradient(90deg, var(--t24-blue-soft), #fff);
    box-shadow: inset 4px 0 var(--t24-blue-700);
}

.business-booking-table article > span,
.catalog-editor article > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.business-booking-table article b,
.catalog-editor article b {
    color: var(--t24-ink);
    font-size: .82rem;
}

.business-booking-table article small,
.catalog-editor article small {
    color: var(--t24-muted);
    font-size: .66rem;
}

.business-booking-table article .status-pill {
    align-self: center;
}

.business-booking-table article > button {
    justify-self: end;
}

.notification-timeline article > button {
    min-height: 38px;
    grid-column: 2;
    justify-self: start;
    padding: 7px 10px;
    border: 1px solid var(--t24-blue-600);
    border-radius: 9px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .72rem;
    font-weight: 850;
}

.notification-center {
    background:
        radial-gradient(circle at 100% 0, rgba(42, 172, 224, .07), transparent 28%),
        #fff;
}

.notification-timeline .status-pill {
    grid-column: 2;
}

.escalation-map {
    display: grid;
    gap: 7px;
    margin-top: 15px;
    padding: 13px;
    border-radius: 13px;
    background: var(--t24-navy);
}

.escalation-map > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 3px 8px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
}

.escalation-map > div > span {
    display: grid;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: rgba(42, 172, 224, .15);
    color: #8edcf7;
    font-size: .67rem;
    font-weight: 850;
}

.escalation-map b {
    color: #fff;
    font-size: .78rem;
}

.escalation-map small {
    color: rgba(255, 255, 255, .55);
    font-size: .64rem;
}

.escalation-map > i {
    color: rgba(255, 255, 255, .36);
    font-style: normal;
    text-align: center;
    transform: rotate(90deg);
}


.team-placeholder {
    align-items: center;
}

.team-panel {
    background:
        linear-gradient(145deg, rgba(244, 247, 249, .4), transparent 45%),
        #fff;
}

.team-placeholder > span,
.staff-editor article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--staff-color, var(--t24-blue));
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
}

.team-placeholder > div,
.staff-editor article > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.team-placeholder small,
.staff-editor small {
    color: var(--t24-muted);
    font-size: .68rem;
}

.team-placeholder > strong {
    grid-column: 2;
    color: var(--t24-success);
    font-size: .7rem;
}

.dashboard-scope-note {
    margin-top: 18px;
    color: var(--t24-muted);
    font-size: .72rem;
    text-align: center;
}

/* ================================================================
   Business editor
   ================================================================ */

.editor-card {
    padding: 18px;
}

.editor-card__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--t24-line);
}

.editor-card__head > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.editor-card__head > div > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: var(--t24-navy);
    color: #fff;
    font-size: .67rem;
    font-weight: 900;
}

.editor-card__head h2 {
    margin: 0;
    font-size: 1.25rem;
}

.editor-card__head > small {
    color: var(--t24-muted);
    font-size: .68rem;
}

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

.catalog-editor article > span:first-child {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.catalog-editor article i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--t24-blue-soft);
    color: var(--t24-blue-700);
    font-size: .6rem;
    font-style: normal;
    font-weight: 900;
}

.staff-editor article {
    align-items: center;
}

.staff-editor label {
    display: flex;
    grid-column: 2;
    align-items: center;
    gap: 7px;
    color: var(--t24-muted);
    font-size: .72rem;
}

.staff-editor input,
.notification-settings input {
    width: 19px;
    height: 19px;
    accent-color: var(--t24-blue-700);
}

.staff-editor article > button {
    min-height: 38px;
    grid-column: 2;
    justify-self: start;
    padding: 7px 10px;
    border: 1px solid var(--t24-line-strong);
    border-radius: 9px;
    background: #fff;
    color: var(--t24-text);
    font-size: .72rem;
    font-weight: 800;
}

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

.notification-settings > label {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 13px;
    border: 1px solid var(--t24-line);
    border-radius: 11px;
}

.notification-settings label > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.notification-settings b {
    color: var(--t24-ink);
    font-size: .8rem;
}

.notification-settings small {
    color: var(--t24-muted);
    font-size: .67rem;
}

/* ================================================================
   Dialogs
   ================================================================ */

dialog {
    max-width: min(560px, calc(100% - 24px));
    max-height: min(88vh, 760px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t24-shadow-lg);
    color: var(--t24-text);
}

dialog::backdrop {
    background: rgba(3, 15, 27, .7);
    backdrop-filter: blur(7px);
}

.review-dialog {
    width: 560px;
}

.dialog-close-form {
    position: sticky;
    z-index: 2;
    top: 0;
    height: 0;
}

.dialog-close-form button {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--t24-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--t24-navy);
    font-size: 1.25rem;
}

.review-form {
    display: grid;
    gap: 13px;
    padding: 26px 22px;
}

.review-form h2 {
    padding-right: 48px;
}

/* ================================================================
   Footer and mobile navigation
   ================================================================ */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at 8% 20%, rgba(231, 71, 52, .11), transparent 23%),
        radial-gradient(circle at 91% 72%, rgba(42, 172, 224, .12), transparent 27%),
        #07131f;
    color: rgba(255, 255, 255, .62);
}

.footer-main {
    display: grid;
    gap: 28px;
    padding-block: 44px 34px;
}

.footer-brand .brand-crop {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

.footer-brand > p {
    max-width: 420px;
    margin: 16px 0;
    font-size: .86rem;
}

.footer-principle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: rgba(255, 255, 255, .77);
    font-size: .72rem;
    font-weight: 750;
}

.footer-principle i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t24-red);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: .84rem;
}

.footer-column a {
    width: max-content;
    max-width: 100%;
    color: rgba(255, 255, 255, .58);
    font-size: .8rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-block: 18px 26px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .43);
    font-size: .7rem;
}

.footer-bottom p {
    margin: 0;
}

.mobile-nav {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(var(--t24-mobile-nav) + env(safe-area-inset-bottom, 0px));
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    padding: 7px 8px env(safe-area-inset-bottom, 0px);
    border-top: 1px solid rgba(194, 209, 217, .9);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 34px rgba(11, 23, 40, .09);
    backdrop-filter: blur(18px);
}

.mobile-nav__item {
    display: flex;
    min-width: 0;
    min-height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 12px;
    color: var(--t24-muted);
}

.mobile-nav__item > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 900;
}

.mobile-nav__item small {
    max-width: 100%;
    overflow: hidden;
    font-size: .59rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-nav__item.is-active {
    color: var(--t24-blue-700);
}

.mobile-nav__item.is-active > span {
    background: var(--t24-blue-soft);
}

.mobile-nav__publish {
    display: grid;
    width: 54px;
    height: 54px;
    place-self: start center;
    place-items: center;
    margin-top: -20px;
    border: 4px solid #fff;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--t24-red), var(--t24-red-700));
    box-shadow: 0 9px 24px rgba(196, 49, 39, .3);
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
}

/* Слика дана: финалисти, гласање и сигурно слање. */
.photo-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-feature__visual > .photo-media {
    position: absolute;
    inset: 0;
}

.photo-finalists-section {
    overflow: hidden;
}

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

.photo-finalist-card {
    overflow: hidden;
    border: 1px solid var(--t24-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--t24-shadow-sm);
    transition: transform .2s var(--t24-ease), box-shadow .2s var(--t24-ease);
}

.photo-finalist-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--t24-shadow);
}

.photo-finalist-card__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--t24-blue-soft);
}

.photo-origin-score {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(7, 21, 36, .68);
    color: #fff;
    font-size: .67rem;
    font-weight: 850;
    backdrop-filter: blur(8px);
}

.photo-finalist-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
}

.photo-finalist-card__body h3,
.photo-finalist-card__body p {
    margin: 0;
}

.photo-finalist-card__body h3 {
    color: var(--t24-ink);
    font-size: .92rem;
}

.photo-finalist-card__body p {
    margin-top: 3px;
    color: var(--t24-muted);
    font-size: .72rem;
}

.photo-vote {
    display: inline-flex;
    min-width: 58px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--t24-line);
    border-radius: 999px;
    background: #fff;
    color: var(--t24-navy);
    font-weight: 850;
}

.photo-vote span {
    color: var(--t24-red);
    font-size: 1.15rem;
}

.photo-vote.is-voted {
    border-color: rgba(231, 71, 52, .24);
    background: var(--t24-red-soft);
    color: var(--t24-red-700);
}

.photo-submit-dialog {
    width: 620px;
}

.photo-submit-form {
    display: grid;
    gap: 14px;
    padding: 28px 22px;
}

.photo-submit-form h2 {
    padding-right: 48px;
}

.photo-file-field {
    position: relative;
    display: grid;
    min-height: 190px;
    place-items: center;
    overflow: hidden;
    padding: 18px;
    border: 1.5px dashed var(--t24-blue-400);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--t24-blue-soft), #fff);
    color: var(--t24-blue-700);
    text-align: center;
    cursor: pointer;
}

.photo-file-field > span {
    position: relative;
    z-index: 2;
    max-width: 75%;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--t24-shadow-sm);
    font-size: .78rem;
    font-weight: 850;
}

.photo-file-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.photo-file-field img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-file-field img[hidden] {
    display: none;
}

.photo-privacy-note {
    margin: 0;
    color: var(--t24-muted);
    font-size: .72rem;
    line-height: 1.55;
}

@media (min-width: 681px) {
    .photo-finalists { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 901px) {
    .photo-finalists { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ================================================================
   Breakpoint: up to 420px — narrow phones
   ================================================================ */

@media (max-width: 420px) {
    .shell {
        width: min(calc(100% - 24px), var(--t24-shell));
    }

    .brand-crop--full {
        width: 144px;
        height: 36px;
    }

    .brand-crop--full img {
        top: -79px;
        left: -6px;
        width: 156px;
    }

    .brand-crop--compact {
        width: 68px;
        height: 43px;
    }

    .brand-crop--compact img {
        top: -18px;
        left: -55px;
        width: 183px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions .icon-button {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .is-authenticated .brand-crop--compact + .sr-only {
        width: 1px !important;
    }

    .login-button {
        min-height: 38px;
        padding-inline: 10px;
        font-size: .78rem;
    }

    .hero-home {
        padding-top: 38px;
    }

    .hero-home h1 {
        font-size: clamp(2.25rem, 12.5vw, 3.2rem);
    }

    .quick-grid {
        gap: 6px;
    }

    .quick-item {
        min-height: 90px;
        padding-inline: 7px;
    }

    .quick-item b {
        font-size: .68rem;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading .section-link {
        min-height: 38px;
        font-size: 0;
    }

    .section-heading .section-link span {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border: 1px solid var(--t24-line);
        border-radius: 50%;
        font-size: .9rem;
    }

    .service-pills a {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .service-pills span {
        width: 34px;
        height: 34px;
    }

    .service-pills i {
        display: none;
    }

    .booking-module {
        margin-inline: -4px;
        padding: 16px;
    }

    .table-map {
        min-height: 350px;
    }

    .table-choice {
        width: 61px;
        height: 61px;
    }

    .table-choice--rectangle {
        width: 70px;
    }

    .table-choice small {
        font-size: .52rem;
    }

    .slot-picker > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compare-row {
        grid-template-columns: 24px minmax(0, 1fr) auto 22px;
        padding-inline: 10px;
    }

    .compare-saving strong {
        font-size: .8rem;
    }

    .type-picker {
        grid-template-columns: 1fr;
    }

    .type-picker label > span {
        min-height: 64px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

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

    .value-stats {
        gap: 5px;
    }

    .value-stats strong {
        font-size: 1.05rem;
    }

    .photo-score {
        grid-template-columns: 1fr;
    }

    .photo-score > div {
        border-right: 0;
        border-bottom: 1px solid var(--t24-line);
    }

    .photo-score > div:last-child {
        border-bottom: 0;
    }
}

/* ================================================================
   Breakpoint: 421–680px — large phones
   ================================================================ */

@media (min-width: 421px) and (max-width: 680px) {
    .quick-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .type-picker {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .slot-picker > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ================================================================
   Breakpoint: over 680px — tablets
   ================================================================ */

@media (min-width: 681px) {
    :root {
        --t24-header: 72px;
    }

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

    .brand-crop--full {
        width: 190px;
        height: 46px;
    }

    .brand-crop--full img {
        top: -105px;
        left: -9px;
        width: 207px;
    }

    .header-actions .publish-button {
        display: inline-flex;
    }

    .search-panel {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(680px, calc(100% - 48px));
        max-height: 78vh;
        padding: 28px;
        border-radius: 24px;
        transform: translate(-50%, -50%);
        animation: search-dialog-in .28s var(--t24-ease) both;
    }

    @keyframes search-dialog-in {
        from { opacity: 0; transform: translate(-50%, -46%) scale(.98); }
        to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    .global-search {
        grid-template-columns: 1fr auto;
    }

    .global-search .button {
        min-width: 130px;
    }

    .hero-home {
        padding-block: 66px 94px;
    }

    .hero-search {
        grid-template-columns: 50px minmax(0, 1fr) auto;
    }

    .hero-search input {
        min-height: 64px;
    }

    .hero-search button {
        min-width: 140px;
        grid-row: 1;
        grid-column: 3;
    }

    .quick-dock {
        margin-top: -48px;
        padding: 19px;
    }

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

    .quick-item {
        min-height: 100px;
        padding: 11px;
    }

    .quick-item b {
        font-size: .78rem;
    }

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

    .city-stats > div,
    .city-stats > div:nth-child(2n),
    .city-stats > div:nth-last-child(-n + 2) {
        border-right: 1px solid var(--t24-line);
        border-bottom: 0;
    }

    .city-stats > div:last-child {
        border-right: 0;
    }

    .section {
        padding-block: 66px;
    }

    .section--page {
        padding-top: 42px;
    }

    .card-rail {
        grid-auto-columns: minmax(280px, 43%);
        margin-inline: 0;
        padding-inline: 2px;
    }

    .business-grid,
    .event-grid,
    .deal-grid,
    .apartment-grid,
    .community-grid,
    .classified-grid,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .compare-showcase {
        grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
        align-items: stretch;
    }

    .compare-showcase__copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 34px;
    }

    .appointment-spotlight,
    .photo-feature,
    .photo-winner {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }

    .photo-winner {
        align-items: stretch;
    }

    .appointment-spotlight__visual,
    .photo-feature__visual {
        min-height: 420px;
    }

    .appointment-spotlight__copy,
    .photo-feature__copy,
    .photo-winner__copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 38px;
    }

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

    .photo-protection {
        grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
    }

    .business-cta__inner,
    .claim-strip > .shell {
        min-height: 230px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
    }

    .business-cta__inner > div,
    .claim-strip > .shell > div {
        max-width: 710px;
    }

    .page-hero__inner {
        min-height: 290px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
    }

    .filter-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .directory-search {
        grid-template-columns: 44px minmax(0, 1fr) auto;
    }

    .directory-search button {
        min-width: 110px;
        grid-row: 1;
        grid-column: 3;
        padding-inline: 18px;
    }

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

    .stay-search {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: end;
    }

    .stay-search .button {
        grid-column: 1 / -1;
    }

    .business-hero {
        padding-block: 50px;
    }

    .business-hero__inner {
        grid-template-columns: 130px minmax(0, 1fr);
        align-items: center;
        gap: 24px;
    }

    .business-hero__visual {
        width: 130px;
        height: 130px;
        border-radius: 40px;
    }

    .business-hero__actions {
        grid-column: 1 / -1;
    }

    .business-hero__actions .button {
        flex: 0 0 auto;
    }

    .booking-fields {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .slot-picker > div {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .booking-form--compact > div:first-child {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-form--compact > div:nth-child(2) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .price-results__head {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .offer-row,
    .offer-row--head {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(110px, .65fr) minmax(110px, .65fr) 38px;
        align-items: center;
        gap: 12px;
    }

    .offer-row--head {
        padding-block: 10px;
        background: var(--t24-surface-2);
        color: var(--t24-muted);
        font-size: .7rem;
        font-weight: 850;
    }

    .offer-row > span:nth-child(2),
    .offer-row > span:nth-child(3),
    .offer-row > span:last-child {
        grid-row: auto;
        grid-column: auto;
        padding-left: 0;
    }

    .offer-row > span:nth-child(3) {
        flex-wrap: wrap;
    }

    .offer-row > span:last-child {
        display: grid;
    }

    .offer-row--head > span:last-child {
        display: block;
    }

    .publish-form,
    .publish-help,
    .editor-card {
        padding: 28px;
    }

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

    .auth-shell {
        padding-block: 44px 70px;
    }

    .auth-card {
        width: min(100%, 620px);
        justify-self: center;
        padding: 34px;
    }

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

    .install-widget {
        grid-column: 1 / -1;
        grid-template-columns: 54px minmax(0, 1fr) auto;
    }

    .install-widget .button {
        grid-row: 1;
        grid-column: 3;
    }

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

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

    .value-banner {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
        padding: 24px;
    }

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

    .trust-levels > div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .trust-levels small {
        grid-column: 2;
    }

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

    .editor-form > .button,
    .editor-form > .form-feedback {
        justify-self: start;
    }

    .editor-card__head {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .staff-editor article {
        grid-template-columns: 42px minmax(0, 1fr) auto auto;
    }

    .staff-editor label,
    .staff-editor article > button {
        grid-row: 1;
        grid-column: auto;
    }

    .footer-main {
        grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(125px, .7fr));
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ================================================================
   Breakpoint: over 900px — desktop navigation and dashboard layout
   ================================================================ */

@media (min-width: 901px) {
    body {
        padding-bottom: 0;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .install-card {
        right: 24px;
        bottom: 24px;
        left: auto;
        width: min(520px, calc(100% - 48px));
    }

    .toast-region {
        bottom: 24px;
    }

    .hero-home__inner {
        grid-template-columns: minmax(0, 1.48fr) minmax(300px, .72fr);
        align-items: center;
    }

    .hero-live-card {
        transform: rotate(1deg);
    }

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

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

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

    .event-grid,
    .event-grid--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .deal-grid--page {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .directory-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        align-items: start;
    }

    .directory-sidebar {
        position: sticky;
        top: calc(var(--t24-header) + 20px);
        display: grid;
        grid-template-columns: 1fr;
    }

    .directory-sidebar > strong,
    .directory-sidebar .sidebar-note {
        grid-column: auto;
    }

    .stay-search {
        grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    }

    .stay-search .button {
        min-width: 190px;
        grid-column: auto;
    }

    .business-hero__inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
    }

    .business-hero__visual {
        width: 144px;
        height: 144px;
    }

    .business-hero__actions {
        grid-column: auto;
        justify-content: flex-end;
    }

    .business-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        align-items: start;
        gap: 34px;
    }

    .business-sidebar {
        position: sticky;
        top: calc(var(--t24-header) + 70px);
    }

    .booking-module {
        padding: 26px;
    }

    .stay-unit {
        display: grid;
        grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
    }

    .stay-unit__visual {
        min-height: 100%;
    }

    .price-explorer {
        grid-template-columns: 310px minmax(0, 1fr);
        align-items: start;
    }

    .price-products {
        position: sticky;
        top: calc(var(--t24-header) + 20px);
    }

    .publish-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
        align-items: start;
    }

    .publish-help {
        position: sticky;
        top: calc(var(--t24-header) + 20px);
    }

    .auth-shell {
        grid-template-columns: minmax(420px, .85fr) minmax(0, 1.15fr);
        align-items: stretch;
        padding-block: 44px 64px;
    }

    .auth-card {
        width: 100%;
        justify-self: auto;
        border-radius: 26px 0 0 26px;
        box-shadow: -12px 24px 60px rgba(12, 33, 50, .12);
    }

    .auth-aside {
        position: relative;
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        overflow: hidden;
        border-radius: 0 26px 26px 0;
        background:
            radial-gradient(circle at 80% 10%, rgba(42, 172, 224, .3), transparent 28%),
            radial-gradient(circle at 8% 92%, rgba(231, 71, 52, .23), transparent 30%),
            var(--t24-navy);
        box-shadow: 18px 24px 60px rgba(12, 33, 50, .16);
        color: rgba(255, 255, 255, .67);
    }

    .auth-aside h2 {
        color: #fff;
        font-size: 1.65rem;
    }

    .auth-aside .eyebrow {
        color: #8edcf7;
    }

    .auth-aside__art {
        position: relative;
        display: grid;
        min-height: 265px;
        place-items: center;
    }

    .auth-orbit {
        position: absolute;
        width: 230px;
        height: 230px;
        border: 1px solid rgba(255, 255, 255, .13);
        border-radius: 50%;
        box-shadow: 0 0 0 36px rgba(255, 255, 255, .025), 0 0 0 72px rgba(255, 255, 255, .015);
    }

    .auth-phone {
        position: relative;
        z-index: 2;
        display: flex;
        width: 158px;
        height: 248px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border: 6px solid rgba(255, 255, 255, .88);
        border-radius: 30px;
        background: linear-gradient(160deg, #1c4f6c, #112438);
        box-shadow: 0 26px 60px rgba(0, 0, 0, .35);
        color: #fff;
        transform: rotate(3deg);
    }

    .auth-phone b {
        font-size: 1.8rem;
        font-style: italic;
    }

    .auth-phone small {
        padding: 7px 9px;
        border-radius: 8px;
        background: rgba(42, 172, 224, .15);
        color: #b5e9fb;
        font-size: .65rem;
    }

    .auth-phone em {
        color: #6ee1b1;
        font-size: .63rem;
        font-style: normal;
        font-weight: 850;
    }

    .auth-bubble {
        position: absolute;
        z-index: 3;
        padding: 8px 11px;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 11px;
        background: rgba(255, 255, 255, .13);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
        color: #fff;
        font-size: .72rem;
        font-weight: 800;
        backdrop-filter: blur(8px);
    }

    .auth-bubble--one { top: 22px; left: 4%; }
    .auth-bubble--two { right: 1%; bottom: 66px; }
    .auth-bubble--three { bottom: 13px; left: 12%; }

    .auth-aside--steps {
        justify-content: center;
    }

    .auth-aside--steps ol {
        display: grid;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .auth-aside--steps li {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 13px;
        border: 1px solid rgba(255, 255, 255, .11);
        border-radius: 13px;
        background: rgba(255, 255, 255, .045);
    }

    .auth-aside--steps li > span {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, .1);
        color: rgba(255, 255, 255, .6);
        font-weight: 900;
    }

    .auth-aside--steps li.is-active {
        border-color: rgba(42, 172, 224, .5);
        background: rgba(42, 172, 224, .1);
    }

    .auth-aside--steps li.is-done > span {
        background: var(--t24-success);
        color: #fff;
    }

    .auth-aside--steps b,
    .auth-aside--steps small {
        display: block;
    }

    .auth-aside--steps b {
        color: #fff;
        font-size: .85rem;
    }

    .auth-aside--steps small {
        color: rgba(255, 255, 255, .57);
        font-size: .68rem;
    }

    .dashboard-shell {
        grid-template-columns: 240px minmax(0, 1fr);
        align-items: start;
        gap: 24px;
        padding-block: 34px 72px;
    }

    .dashboard-sidebar {
        position: sticky;
        top: calc(var(--t24-header) + 18px);
        padding: 16px;
    }

    .dashboard-sidebar nav {
        display: grid;
        gap: 4px;
        margin: 0;
        padding: 8px 0;
        overflow: visible;
    }

    .dashboard-sidebar nav a,
    .dashboard-sidebar > form button,
    .sidebar-switch {
        width: 100%;
        min-height: 44px;
    }

    .dashboard-sidebar > form {
        display: block;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--t24-line);
    }

    .sidebar-switch {
        display: inline-flex;
        margin-top: 10px;
        border-top: 1px solid var(--t24-line);
        border-radius: 0;
    }

    .dashboard-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .dashboard-header > .button,
    .dashboard-header > div:last-child:not(:first-child) {
        flex: 0 0 auto;
    }

    .dashboard-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .install-widget {
        grid-column: auto;
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .install-widget__icon {
        width: 48px;
        height: 48px;
    }

    .install-widget .button {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .booking-table-head {
        display: grid;
        grid-template-columns: 90px minmax(140px, 1.3fr) minmax(120px, 1fr) 112px 38px;
        align-items: center;
        gap: 12px;
        padding: 9px 12px;
        border-bottom: 1px solid var(--t24-line);
        color: var(--t24-muted);
        font-size: .66rem;
        font-weight: 850;
    }

    .business-booking-table,
    .catalog-editor {
        overflow-x: auto;
        border: 1px solid var(--t24-line);
        border-radius: 13px;
    }

    .business-booking-table article {
        min-width: 650px;
        grid-template-columns: 90px minmax(140px, 1.3fr) minmax(120px, 1fr) 112px 38px;
    }

    .business-booking-table article,
    .catalog-editor article {
        align-items: center;
        gap: 12px;
        margin: 0;
        padding: 11px 12px;
        border: 0;
        border-bottom: 1px solid var(--t24-line);
        border-radius: 0;
        background: #fff;
    }

    .business-booking-table article:last-child,
    .catalog-editor article:last-child {
        border-bottom: 0;
    }

    .business-booking-table article .status-pill,
    .business-booking-table article > button {
        justify-self: start;
    }

    .notification-timeline > article {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        align-items: center;
    }

    .notification-timeline article > button,
    .notification-timeline .status-pill {
        grid-row: 1;
        grid-column: 3;
    }

    .escalation-map {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .escalation-map > i {
        transform: none;
    }

    .catalog-editor .booking-table-head,
    .catalog-editor article {
        min-width: 650px;
        grid-template-columns: minmax(180px, 1.4fr) minmax(110px, .8fr) 100px 130px 38px;
    }

    .catalog-editor article > button {
        justify-self: end;
    }
}

/* ================================================================
   Breakpoint: over 1180px — large desktop
   ================================================================ */

@media (min-width: 1181px) {
    .desktop-nav {
        gap: 7px;
    }

    .desktop-nav a {
        padding-inline: 13px;
    }

    .hero-home {
        min-height: 600px;
        display: flex;
        align-items: center;
    }

    .hero-home__inner {
        grid-template-columns: minmax(0, 1.6fr) 390px;
        gap: 70px;
    }

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

    .quick-item {
        min-height: 112px;
    }

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

    .business-grid--directory {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .page-hero__inner {
        min-height: 320px;
    }

    .directory-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 28px;
    }

    .business-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 44px;
    }

    .dashboard-shell {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 32px;
    }

    .dashboard-section,
    .value-banner {
        padding: 26px;
    }

    .metric-card {
        padding: 18px;
    }

    .metric-card strong {
        font-size: 1.8rem;
    }
}

/* ================================================================
   Accessibility preferences and print
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (prefers-contrast: more) {
    :root {
        --t24-line: #a9bac4;
        --t24-line-strong: #7d929f;
        --t24-muted: #465a67;
    }

    .button,
    .icon-button,
    input,
    select,
    textarea {
        border-width: 2px;
    }
}

@media (forced-colors: active) {
    .button,
    .mobile-nav__publish,
    .quick-item > span,
    .verified-mark,
    .open-pill,
    .status-pill,
    .module-icon,
    .reservation-kind {
        forced-color-adjust: auto;
    }

    .pulse-dot,
    .open-pill i,
    .open-text i,
    .live-pill i {
        border: 1px solid CanvasText;
    }
}

@media print {
    body {
        padding: 0;
        background: #fff;
        color: #000;
    }

    .site-header,
    .site-footer,
    .mobile-nav,
    .search-drawer,
    .install-card,
    .toast-region,
    .dashboard-sidebar,
    .business-tabs,
    .button,
    button {
        display: none !important;
    }

    .shell {
        width: 100%;
        max-width: none;
    }

    .dashboard-shell,
    .business-layout,
    .price-explorer {
        display: block;
    }

    .dashboard-section,
    .info-card,
    .business-section,
    .offer-table {
        break-inside: avoid;
        box-shadow: none;
    }
}

/* 2026-08-10e — official Trebinje24 SVG branding and shortcut artwork */
.brand-logo {
    display: block;
    width: 158px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    user-select: none;
}

.install-card__icon,
.install-widget__icon {
    padding: 7px;
    background: #0b1728;
}

.install-card__icon img,
.install-widget__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 420px) {
    .brand-logo {
        width: 142px;
        max-height: 38px;
    }
}

@media (min-width: 681px) {
    .brand-logo {
        width: 190px;
        max-height: 48px;
    }
}
