:root {
    --ink: #162320;
    --muted: #65726e;
    --line: #dce4df;
    --soft: #f3f7f4;
    --paper: #ffffff;
    --brand: #08745d;
    --brand-dark: #053f34;
    --accent: #d8793b;
    --gold: #f3c56b;
    --danger: #a22d2d;
    --shadow: 0 22px 70px rgba(22, 35, 32, 0.16);
    --shadow-soft: 0 12px 32px rgba(22, 35, 32, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(243, 247, 244, 0.78), rgba(255, 255, 255, 0) 380px),
        var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

.site-header,
.site-footer {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 18px clamp(18px, 4vw, 56px);
}

.cookie-banner {
    align-items: start;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    bottom: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr) auto;
    left: 50%;
    max-width: min(1120px, calc(100vw - 36px));
    padding: 18px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 60;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    color: var(--brand-dark);
    display: block;
    margin-bottom: 4px;
}

.cookie-banner p {
    color: var(--muted);
    margin: 0;
}

.cookie-copy {
    display: grid;
    gap: 6px;
}

.cookie-options {
    display: grid;
    gap: 10px;
}

.cookie-option {
    align-items: start;
    background: rgba(243, 247, 244, 0.88);
    border: 1px solid rgba(220, 228, 223, 0.94);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px;
}

.cookie-option input {
    margin-top: 4px;
    width: auto;
}

.cookie-option small {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.cookie-option.is-disabled {
    opacity: 0.62;
}

.cookie-actions {
    display: grid;
    flex-shrink: 0;
    gap: 10px;
}

.site-header {
    border-bottom: 1px solid rgba(220, 228, 223, 0.78);
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 26px rgba(22, 35, 32, 0.06);
}

.brand,
.main-nav,
.hero-actions,
.detail-actions,
.form-actions,
.actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.brand {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--brand), #0a9776);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(8, 116, 93, 0.25);
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.main-nav {
    color: var(--muted);
    flex-wrap: wrap;
    font-size: 15px;
    justify-content: flex-end;
}

.main-nav a:not(.button) {
    border-radius: 8px;
    padding: 8px 10px;
}

.main-nav a:not(.button):hover {
    background: var(--soft);
    color: var(--brand-dark);
}

.button,
button {
    background: linear-gradient(135deg, var(--brand), #0a8f72);
    border: 1px solid var(--brand);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(8, 116, 93, 0.18);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 750;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
button:hover {
    background: var(--brand-dark);
    box-shadow: 0 16px 34px rgba(8, 116, 93, 0.25);
    transform: translateY(-1px);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.76);
    color: var(--brand-dark);
}

.button-ghost:hover {
    background: var(--soft);
}

.danger-button {
    background: #fff;
    border-color: rgba(162, 45, 45, 0.24);
    box-shadow: none;
    color: var(--danger);
}

.danger-button:hover {
    background: #fff3f3;
    border-color: rgba(162, 45, 45, 0.38);
    box-shadow: 0 12px 26px rgba(162, 45, 45, 0.12);
    color: var(--danger);
}

.button-accent {
    background: linear-gradient(135deg, var(--accent), #e79a57);
    border-color: var(--accent);
    box-shadow: 0 12px 28px rgba(216, 121, 59, 0.2);
}

.button-accent:hover {
    background: #b85f2a;
    box-shadow: 0 16px 34px rgba(216, 121, 59, 0.28);
}

.hero {
    align-items: end;
    background:
        linear-gradient(115deg, var(--hero-overlay-strong, rgba(5, 63, 52, 0.78)), var(--hero-overlay-soft, rgba(5, 63, 52, 0.46)) 54%, rgba(22, 35, 32, 0.34)),
        var(--home-hero-image, url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80"));
    background-position: center;
    background-size: cover;
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    isolation: isolate;
    min-height: min(720px, calc(100vh - 76px));
    overflow: hidden;
    padding: clamp(68px, 9vw, 126px) clamp(18px, 4vw, 56px);
    position: relative;
}

.hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.13));
    content: "";
    inset: auto 0 0;
    height: 30%;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.hero-copy {
    align-self: end;
    max-width: 840px;
}

.hero h1,
.detail-hero h1,
.dashboard-head h1,
.form-intro h1 {
    line-height: 1.04;
    margin: 0 0 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 88px);
    letter-spacing: 0;
    text-wrap: balance;
}

.hero p {
    font-size: 20px;
    max-width: 680px;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.24);
}

.hero-actions {
    margin-top: 26px;
}

.eyebrow,
.meta-row,
.hint {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 10px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero-chips span {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 13px;
    backdrop-filter: blur(10px);
}

.hero-highlight {
    align-self: end;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: var(--ink);
    display: grid;
    gap: 12px;
    padding: 18px;
    backdrop-filter: blur(14px);
}

.hero-highlight div {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.14));
    border: 1px solid rgba(220, 228, 223, 0.92);
    border-radius: 8px;
    display: grid;
    gap: 2px;
    padding: 16px;
}

.hero-highlight span,
.hero-highlight small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-highlight strong {
    color: var(--brand-dark);
    font-size: 42px;
    line-height: 1;
}

.hero-highlight a {
    align-items: center;
    background: var(--brand-dark);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-weight: 850;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 14px;
}

.hero-highlight a::after {
    content: "→";
    font-size: 22px;
    line-height: 1;
}

.destination-hero {
    align-items: end;
    background:
        linear-gradient(115deg, var(--hero-overlay-strong, rgba(5, 63, 52, 0.78)), var(--hero-overlay-soft, rgba(5, 63, 52, 0.46)) 55%, rgba(216, 121, 59, 0.2)),
        var(--destination-hero-image, url("/uploads/hero-ferienhaus-see.png"));
    background-position: center;
    background-size: cover;
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    min-height: min(640px, calc(100vh - 76px));
    padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 90px);
    position: relative;
}

.destination-hero::after {
    background: linear-gradient(90deg, rgba(8, 116, 93, 0.2), rgba(216, 121, 59, 0.22), rgba(243, 197, 107, 0.16));
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.destination-hero-copy {
    background: rgba(4, 31, 26, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    max-width: 920px;
    padding: clamp(24px, 4vw, 44px);
    backdrop-filter: blur(6px);
}

.destination-hero h1 {
    font-size: clamp(44px, 7vw, 86px);
    line-height: 1.02;
    margin: 0 0 18px;
}

.destination-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    line-height: 1.55;
    max-width: 760px;
}

.destination-hero .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.destination-hero-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
    color: var(--ink);
    display: grid;
    gap: 8px;
    padding: 22px;
    backdrop-filter: blur(12px);
}

.destination-hero-card span {
    color: var(--brand-dark);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.destination-hero-card strong {
    color: var(--brand-dark);
    font-size: 22px;
}

.destination-hero-card p {
    color: var(--muted);
    margin: 0;
}

.destination-content .prose {
    max-width: 920px;
}

.search-band {
    background: transparent;
    margin-top: -38px;
    padding: 0 clamp(18px, 4vw, 56px) 30px;
    position: relative;
    z-index: 5;
}

.search-form,
.dashboard-head,
.detail-hero,
.form-page,
.detail-layout {
    display: grid;
    gap: 18px;
}

.search-form {
    align-items: end;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 228, 223, 0.86);
    border-radius: 8px;
    box-shadow: var(--shadow);
    grid-template-columns: 1fr 240px auto;
    margin: 0 auto;
    max-width: 1180px;
    padding: 18px;
}

.home-showcase {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.15fr 1fr 1fr;
    margin: 0 auto;
    max-width: 1180px;
    padding: 18px clamp(18px, 4vw, 28px) 34px;
}

.showcase-card {
    background:
        linear-gradient(180deg, rgba(5, 63, 52, 0.12), rgba(5, 63, 52, 0.74)),
        var(--showcase-image);
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    overflow: hidden;
    padding: 22px;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.showcase-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.showcase-card strong {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    margin: 8px 0;
    max-width: 420px;
}

.showcase-card small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    max-width: 430px;
}

.showcase-hotel {
    --showcase-image: url("/uploads/hero-boutique-hotel.png");
    min-height: 330px;
}

.showcase-fewo {
    --showcase-image: url("/uploads/hero-ferienhaus-see.png");
}

.showcase-pension {
    --showcase-image: url("/uploads/hero-pension-terrasse.png");
}

label {
    color: var(--muted);
    display: grid;
    font-size: 14px;
    font-weight: 750;
    gap: 7px;
}

input,
select,
textarea {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    min-height: 44px;
    min-width: 0;
    padding: 10px 12px;
    width: 100%;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(8, 116, 93, 0.72);
    box-shadow: 0 0 0 4px rgba(8, 116, 93, 0.12);
    outline: 0;
}

textarea {
    resize: vertical;
}

.content-section,
.detail-layout,
.form-page,
.dashboard-head,
.detail-hero,
.gallery {
    margin: 0 auto;
    max-width: 1180px;
    padding: 54px clamp(18px, 4vw, 28px);
}

.compact {
    padding-top: 20px;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.section-heading h2,
.prose h2,
.info-list h2,
.empty-state h2,
.empty-state h3 {
    margin: 0 0 10px;
}

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

.property-card {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card.is-recommended {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 249, 0.98)),
        #fff;
    border-color: rgba(8, 116, 93, 0.28);
    box-shadow: 0 16px 42px rgba(22, 35, 32, 0.09);
}

.property-card:hover {
    border-color: rgba(8, 116, 93, 0.28);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.property-image {
    align-items: center;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.14), rgba(216, 121, 59, 0.16)),
        #edf4ef;
    color: var(--brand-dark);
    display: flex;
    font-weight: 850;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.property-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.property-recommendation {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(22, 35, 32, 0.14);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 7px 11px;
    position: absolute;
    right: 14px;
    top: 14px;
    backdrop-filter: blur(10px);
}

.property-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.property-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.property-card p,
.form-intro p,
.empty-state p,
.prose p,
.booking-box p,
.provider-profile-panel p,
.site-footer span {
    color: var(--muted);
    margin: 0;
}

.meta-row,
.card-footer {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.card-footer {
    margin-top: auto;
}

.meta-row span {
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    padding: 5px 9px;
}

.availability-pill {
    align-items: center;
    background: rgba(8, 116, 93, 0.08);
    border: 1px solid rgba(8, 116, 93, 0.16);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
    justify-self: start;
    padding: 6px 10px;
}

.availability-pill small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.availability-available {
    background: rgba(8, 116, 93, 0.12);
}

.availability-limited {
    background: rgba(243, 197, 107, 0.22);
    border-color: rgba(216, 121, 59, 0.18);
}

.availability-booked {
    background: rgba(101, 114, 110, 0.1);
    border-color: rgba(101, 114, 110, 0.18);
    color: var(--muted);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.trust-badge {
    align-items: center;
    background: rgba(8, 116, 93, 0.08);
    border: 1px solid rgba(8, 116, 93, 0.14);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    line-height: 1.1;
    padding: 6px 9px;
}

.trust-badge::before {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 7px;
    opacity: 0.72;
    width: 7px;
}

.trust-images,
.trust-availability {
    background: rgba(243, 197, 107, 0.18);
    border-color: rgba(216, 121, 59, 0.18);
}

.trust-badges-hero {
    margin-top: 18px;
}

.trust-badges-hero .trust-badge {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.trust-badges-side {
    margin-bottom: 18px;
}

.card-footer a,
.actions a {
    color: var(--brand);
    font-weight: 800;
}

.property-detail-button {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.98), rgba(10, 143, 114, 0.98)),
        var(--brand);
    border: 1px solid rgba(8, 116, 93, 0.95);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(8, 116, 93, 0.18);
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    gap: 12px;
    justify-content: center;
    justify-self: center;
    margin-top: 4px;
    min-height: 48px;
    padding: 10px 16px;
    text-align: center;
    width: min(100%, 320px);
}

.property-detail-button:hover {
    background: var(--brand-dark);
    box-shadow: 0 16px 34px rgba(8, 116, 93, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

.property-detail-button span {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 850;
    padding: 4px 8px;
}

.empty-state {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(216, 121, 59, 0.09)),
        var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
}

.dashboard-head {
    align-items: end;
    grid-template-columns: 1fr auto;
}

.admin-dashboard-head {
    align-items: center;
    gap: 28px;
    padding-bottom: 34px;
}

.admin-dashboard-head h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    margin-bottom: 16px;
}

.admin-dashboard-head p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    max-width: 620px;
}

.admin-actions {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    justify-self: end;
    max-width: 680px;
}

.admin-actions .button {
    align-items: center;
    box-shadow: 0 10px 24px rgba(22, 35, 32, 0.06);
    font-size: 15px;
    min-height: 46px;
    padding: 9px 12px;
    text-align: center;
}

.detail-hero {
    align-items: end;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.12), rgba(216, 121, 59, 0.08)),
        linear-gradient(180deg, #ffffff, #f6faf7);
    border-bottom: 1px solid rgba(220, 228, 223, 0.9);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 340px;
    max-width: none;
    padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 90px) 74px;
    position: relative;
}

.detail-hero.has-hero-image {
    background:
        linear-gradient(90deg, var(--hero-overlay-soft, rgba(5, 63, 52, 0.46)), var(--hero-overlay-light, rgba(5, 63, 52, 0.28)) 44%, rgba(22, 35, 32, 0.16)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
        var(--property-hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
    min-height: 620px;
}

.detail-hero.has-hero-image .eyebrow,
.detail-hero.has-hero-image > div > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.9);
}

.detail-hero.has-hero-image > div {
    background: rgba(4, 31, 26, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    max-width: 940px;
    padding: clamp(22px, 4vw, 38px);
    backdrop-filter: blur(5px);
}

.detail-hero.has-hero-image h1 {
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.38);
}

.detail-hero.has-hero-image .property-facts span {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
    backdrop-filter: blur(10px);
}

.detail-hero::after {
    background: linear-gradient(90deg, rgba(8, 116, 93, 0.18), rgba(216, 121, 59, 0.2), rgba(243, 197, 107, 0.16));
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.detail-hero h1,
.dashboard-head h1,
.form-intro h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.detail-hero h1 {
    max-width: 860px;
}

.detail-hero > div > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    max-width: 720px;
}

.property-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 6px;
}

.property-facts span {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(220, 228, 223, 0.94);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(22, 35, 32, 0.06);
    color: var(--brand-dark);
    font-weight: 850;
    padding: 8px 12px;
}

.template-boutique.detail-hero.has-hero-image {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    min-height: 680px;
}

.template-boutique.detail-hero.has-hero-image > div {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.template-boutique.detail-hero.has-hero-image .eyebrow,
.template-boutique.detail-hero.has-hero-image > div > p:not(.eyebrow) {
    color: var(--muted);
    text-shadow: none;
}

.template-boutique.detail-hero.has-hero-image h1 {
    color: var(--brand-dark);
    text-shadow: none;
}

.template-boutique.detail-hero.has-hero-image .property-facts span {
    background: rgba(8, 116, 93, 0.1);
    border-color: rgba(8, 116, 93, 0.2);
    color: var(--brand-dark);
}

.external-link-confirm {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-left: 5px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(22, 35, 32, 0.14);
    color: var(--ink);
    display: grid;
    gap: 14px;
    margin-top: 16px;
    max-width: 760px;
    padding: 16px;
}

.external-link-confirm p {
    color: var(--muted);
    margin: 0;
}

.external-link-confirm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.external-link-confirm-actions .button {
    min-height: 40px;
    padding: 8px 12px;
}

.detail-hero.has-hero-image .external-link-confirm {
    background: rgba(255, 255, 255, 0.92);
}

.booking-box {
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 14px;
    min-width: 280px;
    padding: clamp(18px, 2vw, 22px);
}

.booking-box .eyebrow {
    color: var(--brand-dark);
    font-size: 15px;
    letter-spacing: 0;
}

.booking-box span {
    color: rgba(22, 35, 32, 0.78);
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.booking-price strong {
    color: var(--brand-dark);
    display: block;
    font-size: clamp(24px, 2vw, 28px);
    margin: 4px 0 12px;
}

.booking-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.microsite-body {
    background:
        linear-gradient(180deg, rgba(246, 250, 247, 0.82), #fff 42%),
        #fff;
}

.microsite-shell {
    min-height: 100vh;
}

.microsite-shell .content-section.compact {
    max-width: 1180px;
}

.microsite-hero {
    padding-top: clamp(42px, 7vw, 84px);
}

.microsite-logo {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    display: block;
    height: auto;
    margin-bottom: 18px;
    max-height: 86px;
    max-width: 190px;
    object-fit: contain;
    padding: 10px;
}

.microsite-other-properties {
    padding-top: 34px;
}

.microsite-other-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.microsite-other-card {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.12)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(22, 35, 32, 0.08);
    color: var(--ink);
    display: grid;
    grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
    min-height: 190px;
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.microsite-other-card:hover {
    border-color: rgba(8, 116, 93, 0.32);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.microsite-other-card img,
.microsite-other-placeholder {
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    width: 100%;
}

.microsite-other-placeholder {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.2), rgba(216, 121, 59, 0.2)),
        var(--soft);
    color: var(--brand-dark);
    display: flex;
    font-weight: 900;
    justify-content: center;
    padding: 18px;
    text-align: center;
}

.microsite-other-content {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.microsite-other-content > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.microsite-other-content strong {
    color: var(--brand-dark);
    font-size: 26px;
    line-height: 1.1;
}

.microsite-other-content small {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.microsite-other-content em {
    align-self: end;
    color: var(--brand);
    font-style: normal;
    font-weight: 900;
}

.booking-details span {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    padding: 7px 10px;
}

.booking-contact-list {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    padding-top: 14px;
}

.booking-contact {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    color: var(--brand-dark);
    display: grid;
    gap: 2px;
    font-weight: 850;
    padding: 11px;
}

.booking-contact-phone {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.1), rgba(255, 255, 255, 0.96));
    border-color: rgba(8, 116, 93, 0.22);
}

.booking-contact-email {
    background: linear-gradient(135deg, rgba(216, 121, 59, 0.1), rgba(255, 255, 255, 0.96));
    border-color: rgba(216, 121, 59, 0.2);
}

.booking-contact:hover {
    border-color: rgba(8, 116, 93, 0.28);
    box-shadow: 0 10px 24px rgba(22, 35, 32, 0.08);
}

.booking-contact span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.booking-contact strong {
    color: var(--brand);
    font-size: 16px;
    overflow-wrap: anywhere;
}

.booking-contact-phone strong {
    font-size: clamp(24px, 2.25vw, 30px);
    line-height: 1.08;
}

.booking-contact-email strong {
    color: var(--brand-dark);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.25fr 1fr 1fr;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.gallery img {
    aspect-ratio: 16 / 11;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(22, 35, 32, 0.12);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-item {
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: zoom-in;
    display: block;
    min-height: 0;
    padding: 0;
    width: 100%;
}

.gallery-item:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.gallery .gallery-item:first-child {
    grid-row: span 2;
}

.detail-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 340px;
    padding-top: 42px;
}

.template-boutique.detail-layout {
    max-width: 1280px;
}

.template-boutique .prose,
.template-boutique .info-list {
    border-color: rgba(216, 121, 59, 0.18);
    box-shadow: 0 20px 54px rgba(22, 35, 32, 0.1);
}

.prose,
.info-list,
.panel-form,
.table-wrap {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(22, 35, 32, 0.06);
    padding: 24px;
}

.prose {
    font-size: 17px;
}

.prose h2,
.info-list h2 {
    color: var(--brand-dark);
}

.prose p {
    color: var(--ink);
}

.info-list dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.info-list dt {
    color: var(--muted);
    font-weight: 800;
}

.info-list dd {
    margin: 0 0 10px;
}

.restaurant-box {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(216, 121, 59, 0.08));
    border: 1px solid rgba(8, 116, 93, 0.18);
    border-radius: 8px;
    margin-top: 28px;
    padding: 22px;
}

.restaurant-box .eyebrow {
    color: var(--brand);
    margin-bottom: 8px;
}

.restaurant-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.restaurant-actions span,
.file-preview {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark);
    font-weight: 900;
    padding: 12px 14px;
}

.file-preview {
    display: grid;
    gap: 8px;
    margin: 10px 0 14px;
}

.provider-logo-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    padding: 18px;
}

.provider-logo-card img {
    max-height: 110px;
    object-fit: contain;
}

.provider-profile-panel {
    align-items: start;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(22, 35, 32, 0.06);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    padding: 24px;
}

.provider-profile-panel h2 {
    color: var(--brand-dark);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    margin: 0 0 8px;
}

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

.referral-panel {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.1), rgba(243, 197, 107, 0.14)),
        #fff;
    border: 1px solid rgba(8, 116, 93, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) auto minmax(280px, 0.75fr);
    padding: 24px;
}

.referral-panel h2 {
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    margin: 0 0 10px;
}

.referral-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
}

.referral-stats div {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.referral-stats span,
.referral-link-box small {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.referral-stats strong {
    color: var(--brand-dark);
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-top: 6px;
}

.referral-link-box input {
    font-size: 15px;
}

.referral-link-box small {
    margin-top: 8px;
}

.supporter-panel {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(216, 121, 59, 0.1), rgba(243, 197, 107, 0.16)),
        #fff;
    border: 1px solid rgba(216, 121, 59, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    padding: 24px;
}

.supporter-panel h2 {
    color: var(--brand-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    margin: 0 0 10px;
}

.supporter-panel p {
    color: var(--muted);
    margin: 0;
}

.supporter-actions {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 18px;
}

.supporter-actions strong {
    color: var(--brand-dark);
    font-size: 26px;
}

.supporter-actions span {
    color: var(--muted);
    font-weight: 750;
}

.backup-automation-panel {
    align-items: start;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.12)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(22, 35, 32, 0.07);
    display: grid;
    gap: 16px;
    padding: 24px;
}

.backup-automation-panel h2 {
    color: var(--brand-dark);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    margin: 0 0 8px;
}

.backup-automation-panel p {
    color: var(--muted);
    margin: 0;
}

.backup-automation-panel code {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark);
    display: block;
    font-size: 15px;
    font-weight: 800;
    overflow-x: auto;
    padding: 14px;
    white-space: nowrap;
}

.provider-logo-preview {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 14px;
}

.provider-logo-preview img {
    background: #fff;
    border-radius: 8px;
    max-height: 90px;
    object-fit: contain;
    padding: 10px;
    width: 100%;
}

.form-page {
    grid-template-columns: 340px minmax(0, 1fr);
}

.property-editor-page {
    align-items: start;
    gap: clamp(24px, 4vw, 44px);
    grid-template-columns: minmax(300px, 420px) minmax(720px, 1fr);
    max-width: 1760px;
    padding-left: clamp(28px, 5vw, 96px);
    padding-right: clamp(28px, 5vw, 96px);
}

.property-editor-page .form-intro {
    position: sticky;
    top: 98px;
}

.property-editor-page .form-intro h1 {
    font-size: clamp(48px, 4.6vw, 86px);
    line-height: 0.98;
    overflow-wrap: break-word;
}

.property-editor-page .form-intro p {
    font-size: 19px;
    max-width: 380px;
}

.property-editor-side {
    display: grid;
    gap: 20px;
}

.property-editor-side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding: 18px;
}

.property-editor-page .form-intro > p:not(.eyebrow) {
    max-width: 380px;
}

.property-editor-side-card strong {
    color: var(--brand-dark);
    font-size: 22px;
    line-height: 1.15;
}

.property-editor-side-card span {
    color: var(--muted);
    font-weight: 800;
}

.property-editor-jump {
    display: grid;
    gap: 8px;
}

.property-editor-jump a {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark);
    font-weight: 850;
    padding: 10px 12px;
}

.property-editor-jump a:hover {
    background: var(--soft);
    border-color: rgba(8, 116, 93, 0.24);
}

.form-page.narrow {
    max-width: 860px;
}

.panel-form {
    display: grid;
    gap: 18px;
}

fieldset {
    border: 0;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

legend {
    font-size: 18px;
    font-weight: 850;
    margin-bottom: 12px;
}

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

.checkbox-line {
    align-items: center;
    display: flex;
    gap: 10px;
}

.checkbox-line input,
.image-tile input {
    width: auto;
}

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

.image-manager.single {
    grid-template-columns: minmax(0, 360px);
}

.image-tile {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.image-tile img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.image-tile span {
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 10px;
}

.form-errors,
.flash {
    border-radius: 8px;
    padding: 12px 14px;
}

.upsell-note {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(216, 121, 59, 0.1)),
        #fff;
    border: 1px solid rgba(8, 116, 93, 0.18);
    border-radius: 8px;
    display: grid;
    gap: 7px;
    padding: 18px;
}

.cost-note {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.1), rgba(243, 197, 107, 0.12)),
        #fff;
    border: 1px solid rgba(8, 116, 93, 0.2);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.cost-note strong {
    color: var(--brand-dark);
    font-size: 18px;
}

.cost-note p {
    color: var(--muted);
    margin: 0;
}

.supporter-note {
    background:
        linear-gradient(135deg, rgba(216, 121, 59, 0.12), rgba(243, 197, 107, 0.18)),
        #fff;
    border: 1px solid rgba(216, 121, 59, 0.22);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 16px;
}

.supporter-note span,
.donation-preview-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.supporter-note strong {
    color: var(--brand-dark);
    font-size: 19px;
    line-height: 1.15;
}

.supporter-note p,
.supporter-note small {
    color: var(--muted);
    margin: 0;
}

.supporter-note .button {
    justify-self: start;
    margin-top: 4px;
}

.compact-note {
    padding: 14px;
}

.input-prefix {
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 850;
}

.upsell-note strong {
    font-size: 18px;
}

.upsell-note p {
    color: var(--muted);
    margin: 0;
}

.upsell-note a {
    color: var(--brand);
    font-weight: 850;
}

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

.template-choice {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.template-choice.is-active {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.1), rgba(216, 121, 59, 0.08));
    border-color: rgba(8, 116, 93, 0.3);
}

.template-choice strong {
    color: var(--brand-dark);
    font-size: 18px;
}

.template-choice span {
    color: var(--muted);
}

.property-editor-simple {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 18px;
    max-width: none;
    padding: 0;
}

.editor-quickbar {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 18px;
    position: sticky;
    top: 88px;
    z-index: 8;
}

.editor-quickbar strong {
    color: var(--brand-dark);
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.editor-quickbar span {
    color: var(--muted);
    display: block;
    font-size: 14px;
    font-weight: 750;
}

.editor-quickbar .button {
    flex-shrink: 0;
}

.editor-note-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.editor-note-grid article {
    background: linear-gradient(135deg, rgba(243, 247, 244, 0.94), rgba(255, 247, 235, 0.7)), #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 16px;
}

.editor-note-grid span {
    align-items: center;
    background: var(--brand-dark);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.editor-note-grid strong {
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.15;
}

.editor-note-grid p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.editor-section {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin: 0;
    padding: clamp(18px, 3vw, 26px);
}

.property-editor-simple fieldset {
    display: grid;
    gap: 14px;
}

.property-editor-simple .form-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.property-editor-simple legend {
    color: var(--brand-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 950;
    line-height: 1.05;
    margin-bottom: 8px;
    padding: 0;
}

.property-editor-simple legend span,
.editor-optional summary > span {
    align-items: center;
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 950;
    height: 34px;
    justify-content: center;
    margin-right: 10px;
    min-width: 34px;
    padding: 0 10px;
    vertical-align: middle;
}

.section-help {
    color: var(--muted);
    font-size: 16px;
    font-weight: 750;
    margin: -4px 0 4px;
}

.editor-section.is-primary {
    border-color: rgba(8, 116, 93, 0.18);
}

.editor-optional {
    padding: 0;
}

.editor-optional summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 8px 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    list-style: none;
    padding: 18px 22px;
}

.editor-optional summary::-webkit-details-marker {
    display: none;
}

.editor-optional summary::after {
    color: var(--brand-dark);
    content: "+";
    font-size: 28px;
    font-weight: 900;
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
}

.editor-optional[open] summary::after {
    content: "-";
}

.editor-optional summary strong {
    color: var(--brand-dark);
    font-size: 23px;
    line-height: 1.1;
}

.editor-optional summary small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    grid-column: 2;
}

.editor-section-body {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
    padding: 20px 22px 22px;
}

.template-admin-list {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(22, 35, 32, 0.06);
    align-self: start;
    display: grid;
    gap: 10px;
    padding: 18px;
    position: sticky;
    top: 94px;
}

.template-admin-list-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.template-admin-list-head strong {
    align-items: center;
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 14px;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.template-admin-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 132px;
    padding: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.template-admin-item:hover {
    border-color: rgba(8, 116, 93, 0.28);
    box-shadow: 0 14px 34px rgba(22, 35, 32, 0.08);
    transform: translateY(-2px);
}

.template-admin-item.is-active {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.1), rgba(216, 121, 59, 0.08));
    border-color: rgba(8, 116, 93, 0.3);
}

.template-admin-preview {
    background:
        linear-gradient(135deg, rgba(5, 63, 52, 0.74), rgba(216, 121, 59, 0.3)),
        var(--soft);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr 0.65fr;
    grid-template-rows: 1fr 0.42fr;
    min-height: 108px;
    padding: 8px;
}

.template-admin-preview i {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 5px;
    display: block;
}

.template-admin-preview i:first-child {
    grid-column: 1 / -1;
}

.template-preview-boutique {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(8, 116, 93, 0.14)),
        var(--soft);
}

.template-preview-boutique i {
    background: rgba(5, 63, 52, 0.72);
}

.template-admin-copy {
    display: grid;
    gap: 5px;
}

.template-admin-copy strong {
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.15;
}

.template-admin-copy small {
    color: var(--muted);
    line-height: 1.35;
}

.template-admin-copy em {
    align-self: end;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
}

.template-editor-form {
    position: relative;
    overflow: hidden;
}

.template-editor-hero {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.12), rgba(243, 197, 107, 0.14)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.94);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) 220px;
    margin-bottom: 22px;
    padding: 20px;
}

.template-editor-hero h2 {
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin: 0 0 8px;
}

.template-editor-hero p:not(.eyebrow) {
    color: var(--muted);
    margin: 0;
    max-width: 680px;
}

.template-editor-preview {
    background:
        linear-gradient(145deg, rgba(5, 63, 52, 0.82), rgba(216, 121, 59, 0.42)),
        var(--soft);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(22, 35, 32, 0.12);
    color: #fff;
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 14px;
}

.template-editor-preview span {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 8px;
}

.template-editor-preview strong,
.template-editor-preview small {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: var(--brand-dark);
    padding: 6px 10px;
}

.template-editor-preview small {
    justify-self: start;
}

.template-css-examples {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 14px 0 18px;
}

.template-css-example {
    background: linear-gradient(180deg, #fff, rgba(243, 247, 244, 0.8));
    border: 1px solid var(--line);
    box-shadow: none;
    color: var(--ink);
    display: grid;
    gap: 5px;
    justify-items: start;
    min-height: 112px;
    padding: 14px;
    text-align: left;
}

.template-css-example:hover {
    background: var(--soft);
    box-shadow: 0 12px 28px rgba(22, 35, 32, 0.08);
    color: var(--ink);
}

.template-css-example strong {
    color: var(--brand-dark);
}

.template-css-example span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.code-textarea {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 14px;
    line-height: 1.55;
}

.form-errors,
.flash-error {
    background: #fff0f0;
    border: 1px solid #e6bbbb;
    color: var(--danger);
}

.flash-success {
    background: #eef8f2;
    border: 1px solid #b7dec7;
    color: var(--brand-dark);
}

.flash {
    margin: 18px auto 0;
    max-width: 1124px;
}

.form-errors p {
    margin: 0;
}

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

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

th {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

td span {
    color: var(--muted);
    display: block;
}

.status {
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 800;
    padding: 5px 9px;
}

.actions {
    flex-wrap: wrap;
}

.actions form {
    margin: 0;
}

.actions button {
    background: transparent;
    border: 0;
    color: var(--danger);
    min-height: 0;
    padding: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: var(--soft);
}

.site-footer div {
    display: grid;
    gap: 4px;
}

.footer-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.footer-link-button {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: inherit;
    display: inline;
    font: inherit;
    font-weight: 800;
    min-height: 0;
    padding: 0;
}

.footer-link-button:hover {
    background: transparent;
    box-shadow: none;
    color: var(--brand-dark);
    transform: none;
}

.legal-page {
    margin: 0 auto;
    max-width: 920px;
    padding: 64px clamp(18px, 4vw, 28px);
}

.legal-page h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 24px;
}

.sitemap-hero,
.support-page-hero {
    align-items: stretch;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 28px) 34px;
}

.sitemap-hero > div,
.support-page-hero > div {
    background:
        linear-gradient(135deg, rgba(249, 252, 250, 0.98), rgba(246, 240, 229, 0.62)),
        #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(28px, 5vw, 56px);
}

.sitemap-hero h1,
.support-page-hero h1 {
    font-size: clamp(46px, 8vw, 92px);
    letter-spacing: 0;
    line-height: 0.95;
    margin: 0 0 18px;
    max-width: 820px;
}

.sitemap-hero p:not(.eyebrow),
.support-page-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
    margin: 0;
    max-width: 760px;
}

.sitemap-hero aside,
.support-page-card {
    background:
        linear-gradient(150deg, rgba(4, 80, 64, 0.94), rgba(216, 121, 59, 0.72)),
        var(--brand-dark);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #fff;
    display: grid;
    gap: 14px;
    padding: clamp(24px, 4vw, 36px);
}

.sitemap-hero aside {
    align-content: end;
}

.sitemap-hero aside span {
    color: #fff;
    display: block;
    font-size: clamp(58px, 8vw, 96px);
    font-weight: 950;
    line-height: 0.9;
}

.sitemap-hero aside strong,
.support-page-card strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.25;
}

.sitemap-hero aside a {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    color: var(--brand-dark);
    font-weight: 900;
    justify-self: start;
    padding: 11px 14px;
}

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

.sitemap-card,
.support-reasons article,
.support-transparency {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.sitemap-card {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.sitemap-card h2 {
    font-size: 26px;
    line-height: 1.12;
    margin: 0 0 6px;
}

.sitemap-card a,
.sitemap-list a {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark);
    display: grid;
    gap: 4px;
    padding: 12px 14px;
}

.sitemap-card a {
    background: var(--soft);
}

.sitemap-card a:hover,
.sitemap-list a:hover {
    border-color: rgba(4, 80, 64, 0.32);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.sitemap-card small,
.sitemap-card span,
.sitemap-list span {
    color: var(--muted);
    font-weight: 750;
}

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

.sitemap-list a {
    background:
        linear-gradient(135deg, rgba(244, 248, 245, 0.86), rgba(255, 255, 255, 0.98)),
        #fff;
    min-height: 94px;
}

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

.support-page-card {
    align-content: center;
}

.support-page-card span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    padding: 10px 14px;
}

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

.support-reasons article {
    display: grid;
    gap: 12px;
    padding: 26px;
}

.support-reasons span {
    align-items: center;
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 950;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.support-reasons h2 {
    font-size: 28px;
    line-height: 1.08;
    margin: 0;
}

.support-reasons p {
    color: var(--muted);
    margin: 0;
}

.support-transparency {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    padding: clamp(24px, 4vw, 36px);
}

.support-transparency h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    margin: 0 0 12px;
}

.support-transparency p:not(.eyebrow) {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
    margin: 0;
}

.support-page-actions {
    display: grid;
    gap: 10px;
}

.support-market-panel,
.support-free-panel,
.support-sources {
    background:
        linear-gradient(135deg, rgba(246, 250, 247, 0.96), rgba(255, 247, 235, 0.7)),
        #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.support-market-panel {
    display: grid;
    gap: clamp(22px, 4vw, 42px);
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.25fr);
    padding: clamp(26px, 4vw, 42px);
}

.support-market-panel h2,
.support-free-panel h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    margin: 0 0 16px;
}

.support-market-panel p:not(.eyebrow),
.support-free-panel p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
    margin: 0;
}

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

.support-fact-grid article {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.support-fact-grid strong {
    color: var(--brand-dark);
    font-size: 20px;
    line-height: 1.15;
}

.support-fact-grid p {
    color: var(--muted);
    margin: 0;
}

.support-free-panel {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    padding: clamp(26px, 4vw, 42px);
}

.support-free-panel ul {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 20px;
}

.support-free-panel li {
    color: var(--brand-dark);
    font-weight: 900;
    line-height: 1.35;
    padding-left: 28px;
    position: relative;
}

.support-free-panel li::before {
    background: var(--accent);
    border-radius: 999px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0.45em;
    width: 10px;
}

.support-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.support-sources .eyebrow {
    flex: 0 0 100%;
    margin: 0;
}

.support-sources a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    font-weight: 850;
    padding: 9px 13px;
}

.legal-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
}

.legal-content h2 {
    font-size: 21px;
    margin: 12px 0 0;
}

.legal-content p {
    margin: 0;
}

.legal-content a {
    color: var(--brand);
    font-weight: 750;
}

.legal-stand {
    color: var(--muted);
    font-weight: 750;
}

.offers-hero {
    align-items: end;
    background:
        linear-gradient(110deg, rgba(5, 63, 52, 0.88), rgba(8, 116, 93, 0.54) 52%, rgba(216, 121, 59, 0.22)),
        url("/uploads/hero-pension-terrasse.png");
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--line);
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    min-height: 420px;
    padding: clamp(64px, 8vw, 108px) clamp(18px, 6vw, 90px);
}

.offers-hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.04;
    margin: 0 0 18px;
    max-width: 760px;
}

.offers-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    max-width: 760px;
}

.offers-hero .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.offers-summary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
    color: var(--ink);
    display: grid;
    gap: 12px;
    padding: 16px;
    backdrop-filter: blur(14px);
}

.offers-summary div {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(216, 121, 59, 0.1));
    border: 1px solid rgba(220, 228, 223, 0.92);
    border-radius: 8px;
    display: grid;
    gap: 3px;
    padding: 16px;
}

.offers-summary span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.offers-summary strong {
    color: var(--brand-dark);
    font-size: 42px;
    line-height: 1;
}

.split-heading {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.filter-pills span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
    padding: 8px 12px;
}

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

.home-highlights {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.05), rgba(243, 197, 107, 0.12)),
        #fff;
    border-bottom: 1px solid rgba(220, 228, 223, 0.8);
    border-top: 1px solid rgba(220, 228, 223, 0.8);
}

.home-news-grid {
    display: grid;
    gap: clamp(18px, 2.4vw, 30px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-news-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 246, 0.98)),
        #fff;
    border: 2px solid rgba(151, 184, 169, 0.9);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(22, 35, 32, 0.12);
    display: block;
    overflow: hidden;
    position: relative;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-news-card::before {
    background: linear-gradient(90deg, var(--brand), var(--accent));
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.home-news-card.is-offer::before {
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.home-news-card.is-news::before {
    background: linear-gradient(90deg, var(--brand), #0a9776);
}

.home-news-card:hover {
    border-color: rgba(8, 116, 93, 0.42);
    box-shadow: 0 22px 52px rgba(22, 35, 32, 0.12);
    transform: translateY(-2px);
}

.home-news-card[open] {
    border-color: rgba(8, 116, 93, 0.58);
    box-shadow: var(--shadow-soft);
}

.home-news-card summary {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.07), rgba(255, 255, 255, 0.98) 54%, rgba(243, 197, 107, 0.14)),
        #fff;
    cursor: pointer;
    display: block;
    list-style: none;
    padding: 0;
}

.home-news-card summary::-webkit-details-marker {
    display: none;
}

.home-news-card summary::marker {
    content: "";
}

.home-news-card-head {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 100%;
}

.home-news-card-image {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.14), rgba(243, 197, 107, 0.18)),
        var(--soft);
    display: block;
    min-height: 185px;
    overflow: hidden;
}

.home-news-card-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-news-card-copy {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 2.4vw, 34px) clamp(20px, 2.8vw, 38px);
}

.home-news-card-copy > strong {
    color: var(--ink);
    font-size: clamp(28px, 2.8vw, 44px);
    line-height: 1.02;
}

.home-news-card-copy > small {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.home-news-card-property {
    border-top: 1px solid rgba(220, 228, 223, 0.95);
    color: var(--brand);
    display: block;
    font-size: 15px;
    font-weight: 900;
    padding-top: 12px;
}

.home-news-card-toggle {
    align-items: center;
    align-self: end;
    background: #fff;
    border: 1px solid rgba(177, 201, 190, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(22, 35, 32, 0.08);
    color: var(--brand-dark);
    display: flex;
    font-weight: 900;
    justify-content: space-between;
    margin: 0 clamp(20px, 2.8vw, 38px) clamp(22px, 2.4vw, 34px);
    min-height: 50px;
    padding: 12px 16px;
}

.home-news-card-toggle::after {
    content: "+";
    font-size: 22px;
    line-height: 1;
}

.home-news-card[open] .home-news-card-toggle {
    background: rgba(8, 116, 93, 0.12);
}

.home-news-card[open] .home-news-card-toggle {
    font-size: 0;
}

.home-news-card[open] .home-news-card-toggle::before {
    content: "Weniger";
    font-size: 16px;
}

.home-news-card[open] .home-news-card-toggle::after {
    content: "-";
}

.home-news-card-body {
    background: #fff;
    border-top: 2px solid rgba(177, 201, 190, 0.7);
    display: grid;
    gap: 14px;
    padding: clamp(22px, 2.5vw, 34px);
}

.home-news-card-body p {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.home-news-drawer {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.home-news-drawer summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(190px, 0.55fr) minmax(0, 1fr) auto;
    list-style: none;
    padding: clamp(18px, 3vw, 28px);
}

.home-news-drawer summary::-webkit-details-marker {
    display: none;
}

.home-news-drawer summary:hover {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.04), rgba(243, 197, 107, 0.12));
}

.home-news-kicker {
    background: rgba(8, 116, 93, 0.1);
    border-radius: 999px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    text-transform: uppercase;
}

.home-news-title {
    color: var(--brand-dark);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.02;
}

.home-news-preview {
    border-left: 1px solid var(--line);
    display: grid;
    gap: 3px;
    min-width: 0;
    padding-left: 18px;
}

.home-news-preview strong {
    color: var(--ink);
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-preview small {
    color: var(--muted);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-toggle {
    align-items: center;
    background: var(--brand);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
}

.home-news-drawer[open] .home-news-toggle {
    background: var(--brand-dark);
}

.home-news-drawer[open] .home-news-toggle::before {
    content: "Schließen";
}

.home-news-drawer[open] .home-news-toggle {
    font-size: 0;
}

.home-news-drawer[open] .home-news-toggle::before {
    font-size: 16px;
}

.home-highlight-layout {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
    padding: 0 clamp(18px, 3vw, 28px) clamp(18px, 3vw, 28px);
}

.home-featured-post {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
    overflow: hidden;
}

.home-featured-image {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.14), rgba(243, 197, 107, 0.18)),
        var(--soft);
    min-height: 360px;
    position: relative;
}

.home-featured-image img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.home-featured-image::after {
    background: linear-gradient(180deg, rgba(5, 63, 52, 0.02), rgba(5, 63, 52, 0.36));
    content: "";
    inset: 0;
    position: absolute;
}

.home-featured-image span {
    align-items: center;
    color: var(--brand-dark);
    display: flex;
    font-size: 22px;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.home-featured-content {
    align-content: center;
    display: grid;
    gap: 16px;
    padding: clamp(24px, 4vw, 42px);
}

.home-featured-content h3 {
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
}

.home-featured-content p {
    color: var(--muted);
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.5;
    margin: 0;
}

.home-highlight-side {
    display: grid;
    gap: 14px;
}

.home-mini-post {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-left: 6px solid var(--brand);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(22, 35, 32, 0.06);
    display: grid;
    gap: 9px;
    padding: 20px;
}

.home-mini-post.is-offer {
    border-left-color: var(--accent);
}

.home-mini-post > span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-mini-post.is-offer > span {
    color: var(--accent);
}

.home-mini-post h3 {
    color: var(--ink);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
    margin: 0;
}

.home-mini-post p {
    color: var(--muted);
    margin: 0;
}

.home-mini-post a {
    color: var(--brand);
    font-weight: 900;
}

.offers-grid {
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.offers-grid.is-single {
    margin: 0 auto;
    max-width: 1040px;
}

.offers-list {
    display: grid;
    gap: 18px;
}

.offers-list.is-single {
    margin: 0 auto;
    max-width: 1180px;
}

.offer-list-card {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(22, 35, 32, 0.08);
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    overflow: hidden;
    position: relative;
}

.offer-list-card::before {
    background: linear-gradient(180deg, var(--brand), var(--accent), var(--gold));
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 6px;
}

.offer-list-image {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.14), rgba(243, 197, 107, 0.18)),
        var(--soft);
    min-height: 260px;
    position: relative;
}

.offer-list-image img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.offer-list-image::after {
    background: linear-gradient(180deg, rgba(5, 63, 52, 0.02), rgba(5, 63, 52, 0.32));
    content: "";
    inset: 0;
    position: absolute;
}

.offer-list-image span {
    align-items: center;
    color: var(--brand-dark);
    display: flex;
    font-size: 20px;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.offer-list-content {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
}

.offer-list-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-type {
    background: rgba(216, 121, 59, 0.12);
    border-radius: 999px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    padding: 7px 10px;
    text-transform: uppercase;
}

.offer-list-card.is-news .offer-type {
    background: rgba(8, 116, 93, 0.11);
    color: var(--brand);
}

.offer-list-meta small {
    color: var(--muted);
    font-weight: 850;
}

.offer-list-card h3 {
    color: var(--ink);
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: 0;
    line-height: 1.07;
    margin: 0;
}

.offer-lead {
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    margin: 0;
}

.offer-fulltext {
    background: rgba(243, 247, 244, 0.75);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
}

.offer-fulltext summary {
    color: var(--brand-dark);
    cursor: pointer;
    font-weight: 900;
}

.offer-fulltext p {
    color: var(--ink);
    line-height: 1.65;
    margin: 14px 0 0;
}

.offer-list-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.offer-list-actions .button {
    min-height: 42px;
    padding: 9px 13px;
}

.property-post-list {
    display: grid;
    gap: 16px;
}

.property-post-card {
    background: #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.07);
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    overflow: hidden;
}

.property-post-card:not(:has(.property-post-image)) {
    grid-template-columns: 1fr;
}

.property-post-image {
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    width: 100%;
}

.property-post-content {
    display: grid;
    gap: 13px;
    padding: clamp(20px, 3vw, 30px);
}

.property-post-content h3 {
    color: var(--ink);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    margin: 0;
}

.post-card {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.06), rgba(216, 121, 59, 0.06)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.07);
    display: grid;
    gap: 10px;
    padding: 20px;
}

.offer-card {
    background: #fff;
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.offer-card::before {
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--gold));
    content: "";
    display: block;
    grid-column: 1 / -1;
    height: 6px;
}

.offer-card > * {
    margin-left: 0;
    margin-right: 0;
}

.offer-card > :last-child {
    margin-bottom: 0;
}

.offer-card-visual {
    background:
        linear-gradient(180deg, rgba(5, 63, 52, 0.1), rgba(5, 63, 52, 0.88)),
        var(--offer-image, url("/uploads/hero-boutique-hotel.png"));
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    padding: 22px;
}

.offer-card.is-news .offer-card-visual {
    background:
        linear-gradient(180deg, rgba(5, 63, 52, 0.08), rgba(5, 63, 52, 0.82)),
        var(--offer-image, url("/uploads/hero-pension-terrasse.png"));
    background-position: center;
    background-size: cover;
}

.offer-card-visual span {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    padding: 7px 10px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.offer-card-visual strong {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    margin-top: 14px;
}

.offer-card-visual small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 800;
    margin-top: 8px;
}

.offer-card-content {
    display: grid;
    gap: 15px;
    padding: clamp(22px, 4vw, 34px);
}

.offer-card-top {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 0;
}

.post-card > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.post-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.offer-card-top span {
    background: rgba(216, 121, 59, 0.12);
    border-radius: 999px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    padding: 7px 10px;
    text-transform: uppercase;
}

.offer-card.is-news .offer-card-top span {
    background: rgba(8, 116, 93, 0.11);
    color: var(--brand);
}

.post-card h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 0;
}

.offer-card h3 {
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0;
}

.post-card p {
    color: var(--muted);
    margin: 0;
}

.post-card small {
    color: var(--muted);
    font-weight: 750;
}

.post-card a {
    color: var(--brand);
    font-weight: 850;
}

.offer-card-actions {
    align-items: center;
    border-top: 1px solid rgba(220, 228, 223, 0.9);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 4px;
    padding-top: 18px;
}

.offer-card-actions .button {
    min-height: 42px;
    padding: 9px 13px;
}

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

.post-meta {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 5px;
    margin-top: 4px;
    padding-top: 10px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-list a {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 850;
    gap: 8px;
    padding: 9px 13px;
}

.city-list span {
    background: var(--soft);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    padding: 2px 8px;
}

.admin-stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 clamp(18px, 4vw, 28px) 24px;
}

.admin-stats div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(22, 35, 32, 0.06);
    padding: 16px;
}

.admin-stats span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-stats strong {
    color: var(--brand-dark);
    display: block;
    font-size: 30px;
    line-height: 1.1;
    margin-top: 5px;
}

.admin-overview-stats {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    padding-bottom: 34px;
}

.admin-overview-stats div {
    min-height: 112px;
    padding: 16px 18px;
}

.admin-overview-stats span {
    font-size: 12px;
    line-height: 1.25;
}

.admin-overview-stats strong {
    font-size: 34px;
    margin-top: 8px;
}

.admin-provider-list {
    display: grid;
    gap: 14px;
}

.admin-provider-group {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 42px rgba(22, 35, 32, 0.07);
    overflow: hidden;
}

.admin-provider-summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(90px, 0.45fr)) minmax(140px, 0.65fr) auto;
    list-style: none;
    padding: 18px;
}

.admin-provider-summary::-webkit-details-marker {
    display: none;
}

.admin-provider-summary::after {
    color: var(--brand);
    content: "+";
    font-size: 28px;
    font-weight: 850;
    justify-self: end;
    line-height: 1;
}

.admin-provider-group[open] .admin-provider-summary::after {
    content: "−";
}

.admin-provider-name strong {
    color: var(--ink);
    display: block;
    font-size: 22px;
    line-height: 1.15;
}

.admin-provider-name small,
.admin-provider-stat small,
.admin-provider-updated {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.admin-provider-stat strong {
    color: var(--brand-dark);
    display: block;
    font-size: 25px;
    line-height: 1;
}

.admin-provider-updated {
    font-weight: 800;
}

.admin-provider-properties {
    background: linear-gradient(180deg, rgba(243, 247, 244, 0.72), rgba(255, 255, 255, 0.94));
    border-top: 1px solid var(--line);
    padding: 14px;
}

.admin-provider-properties .admin-table-wrap {
    box-shadow: none;
    padding: 12px;
}

.admin-empty-provider {
    align-items: center;
    background: linear-gradient(135deg, rgba(238, 246, 241, 0.95), rgba(255, 249, 238, 0.84));
    border: 1px solid rgba(20, 75, 62, 0.16);
    border-radius: 8px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 20px;
}

.admin-empty-provider strong {
    color: var(--brand-dark);
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.admin-empty-provider p {
    color: var(--muted);
    margin: 8px 0 0;
    max-width: 720px;
}

.admin-empty-provider-actions {
    align-items: stretch;
    display: grid;
    flex-shrink: 0;
    gap: 10px;
    grid-template-columns: 1fr;
    min-width: 190px;
}

.admin-empty-provider-actions form {
    margin: 0;
}

.admin-empty-provider-actions button,
.admin-empty-provider-actions .button {
    width: 100%;
}

.admin-table-wrap {
    padding: 20px;
}

.admin-table-wrap table {
    font-size: 15px;
    table-layout: fixed;
    width: 100%;
}

.admin-table-wrap th,
.admin-table-wrap td {
    overflow-wrap: anywhere;
    padding: 14px 10px;
    vertical-align: top;
}

.admin-table-wrap th {
    font-size: 12px;
    line-height: 1.25;
}

.admin-table-wrap td > strong {
    font-size: 16px;
    line-height: 1.25;
}

.admin-table-wrap td span {
    color: var(--muted);
    display: block;
    font-size: 14px;
    line-height: 1.35;
    margin-top: 3px;
}

.admin-table-wrap .status {
    font-size: 14px;
    padding: 6px 10px;
}

.admin-table-wrap .actions {
    align-items: flex-start;
    display: grid;
    gap: 7px;
    min-width: 0;
}

.admin-table-wrap .actions form {
    margin: 0;
    width: 100%;
}

.admin-action-link {
    align-items: center;
    background: rgba(243, 247, 244, 0.9);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: none;
    color: var(--brand-dark);
    display: flex;
    font-size: 14px;
    font-weight: 850;
    justify-content: center;
    line-height: 1.2;
    min-height: 36px;
    padding: 7px 9px;
    text-align: center;
    width: 100%;
}

button.admin-action-link {
    cursor: pointer;
    font: inherit;
}

.admin-action-link:hover {
    background: #fff;
    border-color: rgba(8, 116, 93, 0.22);
    box-shadow: 0 10px 22px rgba(22, 35, 32, 0.08);
    color: var(--brand-dark);
    transform: none;
}

.admin-action-danger {
    background: rgba(255, 245, 245, 0.94);
    border-color: rgba(162, 45, 45, 0.16);
    color: var(--danger);
}

.admin-action-danger:hover {
    background: #fff;
    border-color: rgba(162, 45, 45, 0.24);
    color: var(--danger);
}

.admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.admin-row-actions form {
    margin: 0;
}

.admin-row-actions a,
.admin-row-actions button {
    align-items: center;
    background: rgba(243, 247, 244, 0.9);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 999px;
    box-shadow: none;
    color: var(--brand-dark);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    justify-content: center;
    line-height: 1.1;
    min-height: 30px;
    padding: 6px 10px;
    white-space: nowrap;
    width: auto;
}

.admin-row-actions a:hover,
.admin-row-actions button:hover {
    background: #fff;
    border-color: rgba(8, 116, 93, 0.22);
    box-shadow: 0 8px 18px rgba(22, 35, 32, 0.08);
    color: var(--brand-dark);
    transform: none;
}

.admin-row-actions .is-danger {
    background: rgba(255, 245, 245, 0.94);
    border-color: rgba(162, 45, 45, 0.16);
    color: var(--danger);
}

.admin-row-actions .is-danger:hover {
    background: #fff;
    border-color: rgba(162, 45, 45, 0.24);
    color: var(--danger);
}

.admin-metric-stack {
    display: grid;
    gap: 5px;
}

.admin-metric-stack span {
    margin: 0;
}

.admin-metric-stack strong {
    color: var(--ink);
}

.admin-warning-pill,
.admin-seo-missing {
    background: rgba(216, 121, 59, 0.12);
    border: 1px solid rgba(216, 121, 59, 0.2);
    border-radius: 999px;
    color: #9d552c;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    margin-top: 8px;
    padding: 5px 8px;
}

.admin-seo-missing {
    border-radius: 8px;
    display: block;
    margin-top: 2px;
}

.admin-table-wrap th:nth-child(1),
.admin-table-wrap td:nth-child(1) {
    width: 31%;
}

.admin-table-wrap th:nth-child(2),
.admin-table-wrap td:nth-child(2) {
    width: 12%;
}

.admin-table-wrap th:nth-child(3),
.admin-table-wrap td:nth-child(3) {
    width: 14%;
}

.admin-table-wrap th:nth-child(4),
.admin-table-wrap td:nth-child(4) {
    width: 19%;
}

.admin-table-wrap th:nth-child(5),
.admin-table-wrap td:nth-child(5) {
    width: 14%;
}

.admin-table-wrap th:nth-child(6),
.admin-table-wrap td:nth-child(6) {
    width: 10%;
}

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

.hero-image-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.07);
    display: grid;
    gap: 12px;
    overflow: hidden;
    padding: 14px;
}

.hero-image-card img {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.hero-image-card form {
    display: grid;
    gap: 10px;
}

.destination-image-preview {
    max-width: 420px;
}

.destination-admin-page {
    gap: 28px;
    grid-template-columns: 1fr;
    max-width: 1760px;
    padding-left: clamp(22px, 5vw, 86px);
    padding-right: clamp(22px, 5vw, 86px);
}

.destination-admin-page .form-intro {
    align-items: end;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
    max-width: none;
}

.destination-admin-page .form-intro h1 {
    font-size: clamp(56px, 6vw, 94px);
    grid-column: 1;
    line-height: 0.98;
    margin-bottom: 14px;
}

.destination-admin-page .form-intro .eyebrow {
    grid-column: 1;
}

.destination-admin-page .form-intro p:not(.eyebrow) {
    align-self: end;
    color: var(--muted);
    font-size: 20px;
    grid-column: 2;
    grid-row: 1 / span 2;
    line-height: 1.45;
    max-width: 620px;
}

.destination-admin-page .admin-split-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
    align-items: start;
}

.destination-admin-list {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 228, 223, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(22, 35, 32, 0.06);
    align-self: start;
    display: grid;
    gap: 10px;
    padding: 18px;
    position: sticky;
    top: 94px;
}

.destination-admin-icon {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.13), rgba(243, 197, 107, 0.2)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 34px;
    font-weight: 900;
    justify-content: center;
    min-height: 104px;
}

.destination-help-card {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.14));
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 14px;
}

.destination-help-card strong {
    color: var(--brand-dark);
}

.destination-help-card p {
    color: var(--muted);
    margin: 0;
}

.destination-editor-form {
    overflow: hidden;
    min-width: 0;
}

.destination-editor-hero {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.12), rgba(243, 197, 107, 0.14)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.94);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    margin-bottom: 18px;
    padding: 20px;
}

.destination-editor-hero h2 {
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 8px;
}

.destination-editor-hero p:not(.eyebrow) {
    color: var(--muted);
    margin: 0;
    max-width: 700px;
}

.destination-url-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(22, 35, 32, 0.08);
    display: grid;
    gap: 6px;
    padding: 16px;
}

.destination-url-card span,
.destination-url-card small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.destination-url-card strong {
    color: var(--brand-dark);
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.destination-example-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.destination-example-card {
    background: linear-gradient(180deg, #fff, rgba(243, 247, 244, 0.82));
    border: 1px solid var(--line);
    box-shadow: none;
    color: var(--ink);
    display: grid;
    gap: 6px;
    justify-items: start;
    min-height: 132px;
    padding: 14px;
    text-align: left;
}

.destination-example-card:hover {
    background: var(--soft);
    box-shadow: 0 12px 28px rgba(22, 35, 32, 0.08);
    color: var(--ink);
}

.destination-example-card strong {
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.2;
}

.destination-example-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.destination-link-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 16px;
}

.destination-link-examples button {
    background: var(--soft);
    border-color: var(--line);
    box-shadow: none;
    color: var(--brand-dark);
    font-size: 14px;
    min-height: 38px;
    padding: 7px 10px;
}

.destination-link-examples button:hover {
    background: rgba(8, 116, 93, 0.1);
    box-shadow: none;
    color: var(--brand-dark);
}

.settings-hero {
    align-items: end;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    margin-bottom: 28px;
}

.settings-admin-page {
    gap: 28px;
    grid-template-columns: 1fr;
    max-width: 1760px;
    padding-left: clamp(22px, 5vw, 86px);
    padding-right: clamp(22px, 5vw, 86px);
}

.settings-admin-page .settings-hero {
    margin-bottom: 0;
}

.settings-hero h1 {
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1;
    margin: 0 0 14px;
}

.settings-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: 19px;
    max-width: 760px;
}

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

.settings-status-grid div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.06);
    padding: 14px;
}

.settings-status-grid span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.settings-status-grid strong {
    color: var(--brand-dark);
    display: block;
    font-size: 20px;
    line-height: 1.12;
    margin-top: 6px;
    overflow-wrap: anywhere;
}

.settings-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.settings-admin-page .settings-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.settings-main {
    display: grid;
    gap: 12px;
}

.settings-admin-page .settings-main {
    gap: 18px;
}

.settings-card,
.settings-help-card,
.settings-save-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 14px 42px rgba(22, 35, 32, 0.07);
    display: grid;
    gap: 16px;
    padding: clamp(18px, 3vw, 24px);
}

.settings-card {
    align-items: stretch;
    gap: 16px 22px;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
}

.settings-admin-page .settings-card {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
}

.settings-card-head {
    align-content: start;
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.1)),
        rgba(243, 247, 244, 0.76);
    border-right: 1px solid var(--line);
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-row: 1 / span 12;
    min-height: 100%;
    padding: 22px;
}

.settings-admin-page .settings-card-head {
    padding: 28px;
}

.settings-card > :not(.settings-card-head) {
    grid-column: 2;
    margin-right: 22px;
}

.settings-admin-page .settings-card > :not(.settings-card-head) {
    margin-right: 28px;
}

.settings-card > .settings-card-head + * {
    margin-top: 22px;
}

.settings-admin-page .settings-card > .settings-card-head + * {
    margin-top: 28px;
}

.settings-card > :last-child {
    margin-bottom: 22px;
}

.settings-admin-page .settings-card > :last-child {
    margin-bottom: 28px;
}

.settings-card-head > span {
    align-items: center;
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.settings-card h2 {
    color: var(--brand-dark);
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 4px;
}

.settings-admin-page .settings-card h2 {
    font-size: clamp(24px, 2vw, 34px);
}

.settings-card p {
    color: var(--muted);
    margin: 0;
}

.settings-admin-page .settings-card-head p {
    font-size: 17px;
    line-height: 1.45;
}

.settings-live-preview,
.settings-cookie-preview,
.donation-preview-card,
.settings-overlay-preview {
    border-radius: 8px;
    overflow: hidden;
}

.settings-live-preview {
    background:
        linear-gradient(135deg, rgba(5, 63, 52, 0.82), rgba(216, 121, 59, 0.34)),
        var(--soft);
    color: #fff;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.settings-live-preview small {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    text-transform: uppercase;
}

.settings-live-preview strong {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
}

.settings-live-preview p {
    color: rgba(255, 255, 255, 0.88);
}

.settings-live-preview div,
.settings-cookie-preview div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.settings-live-preview span,
.settings-cookie-preview span {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
    padding: 7px 10px;
}

.settings-cookie-preview {
    background: linear-gradient(180deg, #fff, rgba(243, 247, 244, 0.82));
    border: 1px solid var(--line);
    display: grid;
    gap: 7px;
    padding: 18px;
}

.settings-cookie-preview strong {
    color: var(--brand-dark);
}

.donation-preview-card {
    background:
        linear-gradient(135deg, rgba(216, 121, 59, 0.12), rgba(243, 197, 107, 0.2)),
        #fff;
    border: 1px solid rgba(216, 121, 59, 0.24);
    display: grid;
    gap: 8px;
    padding: 18px;
}

.donation-preview-card strong {
    color: var(--brand-dark);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.05;
}

.donation-preview-card p {
    color: var(--muted);
}

.donation-preview-card em {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    font-style: normal;
    font-weight: 900;
    justify-self: start;
    padding: 8px 12px;
}

.settings-overlay-preview {
    align-items: end;
    background:
        linear-gradient(135deg, rgba(255, 194, 112, 0.28), rgba(38, 80, 64, 0.12)),
        url("/uploads/hero-boutique-hotel.png");
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 180px;
    padding: 18px;
    position: relative;
}

.settings-overlay-preview::before {
    background: var(--settings-overlay-color, #053f34);
    content: "";
    inset: 0;
    opacity: var(--settings-overlay-opacity, 0.68);
    position: absolute;
}

.settings-overlay-preview > div {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    color: #fff;
    padding: 16px;
    position: relative;
    width: min(420px, 100%);
}

.settings-overlay-preview small {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    text-transform: uppercase;
}

.settings-overlay-preview strong {
    display: block;
    font-size: 25px;
    line-height: 1.05;
    margin-top: 5px;
}

.settings-side {
    align-self: start;
    display: grid;
    gap: 14px;
    position: sticky;
    top: 94px;
}

.settings-help-card strong {
    color: var(--brand-dark);
    font-size: 18px;
}

.settings-help-card a,
.settings-help-card button {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    color: var(--brand-dark);
    display: block;
    font-size: 15px;
    font-weight: 850;
    min-height: 0;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
}

.settings-help-card a:hover,
.settings-help-card button:hover {
    background: rgba(8, 116, 93, 0.1);
    box-shadow: none;
    transform: none;
}

.settings-save-card {
    position: sticky;
    top: 380px;
}

.property-tools {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 22px;
}

.property-tool-card,
.admin-insight-card a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.06);
    display: grid;
    gap: 5px;
    padding: 18px;
}

.property-tool-card span,
.admin-insight-card .eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.property-tool-card strong {
    color: var(--brand-dark);
    font-size: 22px;
}

.property-tool-card small,
.admin-insight-card span {
    color: var(--muted);
}

.inquiry-panel {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.12)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    padding: clamp(22px, 4vw, 38px);
}

.request-disclosure.inquiry-panel,
.request-disclosure.voucher-panel {
    display: block;
    overflow: hidden;
    padding: 0;
}

.request-disclosure summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    list-style: none;
    padding: clamp(20px, 3vw, 30px);
}

.request-disclosure summary::-webkit-details-marker {
    display: none;
}

.request-disclosure summary::after {
    align-items: center;
    background: var(--brand);
    border-radius: 999px;
    color: #fff;
    content: "+";
    display: inline-flex;
    flex: 0 0 42px;
    font-size: 26px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
    width: 42px;
}

.request-disclosure[open] summary::after {
    background: var(--brand-dark);
    content: "-";
}

.request-disclosure summary > span {
    display: grid;
    gap: 7px;
}

.request-disclosure summary strong {
    color: var(--brand-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
}

.request-disclosure summary small {
    color: var(--muted);
    font-weight: 800;
}

.request-disclosure-body {
    border-top: 1px solid rgba(220, 228, 223, 0.95);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    padding: 0 clamp(20px, 4vw, 38px) clamp(22px, 4vw, 38px);
}

.voucher-panel {
    background:
        linear-gradient(135deg, rgba(216, 121, 59, 0.1), rgba(243, 197, 107, 0.18)),
        #fff;
    border: 1px solid rgba(216, 121, 59, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    padding: clamp(22px, 4vw, 38px);
}

.inquiry-panel h2,
.voucher-panel h2 {
    color: var(--brand-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0 0 12px;
}

.inquiry-form {
    display: grid;
    gap: 14px;
}

.inquiry-success {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(8, 116, 93, 0.28);
    border-left: 6px solid var(--brand);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(22, 35, 32, 0.08);
    color: var(--ink);
    display: grid;
    gap: 6px;
    margin-top: 22px;
    padding: 18px;
}

.inquiry-success strong {
    color: var(--brand-dark);
    font-size: 22px;
}

.inquiry-success span {
    color: var(--muted);
    font-weight: 700;
}

.offer-filter-form {
    align-items: end;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(22, 35, 32, 0.06);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 1fr) 180px 160px auto;
    margin-bottom: 28px;
    padding: 18px;
}

.filter-pills a {
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    font-weight: 850;
    padding: 7px 11px;
}

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

.admin-insight-grid.single {
    grid-template-columns: minmax(0, 1fr);
}

.admin-insight-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
    padding: 22px;
}

.admin-insight-card h2 {
    color: var(--brand-dark);
    font-size: 26px;
    margin: 0;
}

.admin-insight-card a strong {
    color: var(--ink);
    font-size: 18px;
}

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

.admin-todo-card {
    background:
        linear-gradient(135deg, rgba(243, 247, 244, 0.94), rgba(255, 247, 235, 0.72)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.96);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 8px;
    padding: 20px;
}

.admin-todo-card:hover {
    border-color: rgba(8, 116, 93, 0.3);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.admin-todo-card span {
    align-items: center;
    background: var(--brand-dark);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 950;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.admin-todo-card strong {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.15;
}

.admin-todo-card small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.admin-inquiry-list {
    display: grid;
    gap: 16px;
}

.admin-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.admin-filter-bar a {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 850;
    gap: 8px;
    min-height: 42px;
    padding: 8px 13px;
}

.admin-filter-bar a.is-active {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.admin-filter-bar span {
    background: rgba(8, 116, 93, 0.1);
    border-radius: 999px;
    color: inherit;
    font-size: 12px;
    padding: 2px 7px;
}

.admin-inquiry-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) 180px;
    padding: clamp(18px, 3vw, 28px);
}

.admin-inquiry-card h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.06;
    margin: 10px 0;
}

.admin-inquiry-card dl {
    display: grid;
    gap: 6px;
    margin: 0;
}

.admin-inquiry-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-inquiry-card dd {
    margin: 0 0 8px;
}

.admin-inquiry-actions {
    align-content: start;
    display: grid;
    gap: 8px;
}

.admin-inquiry-actions form {
    margin: 0;
}

.admin-inquiry-actions button,
.admin-inquiry-actions .button {
    width: 100%;
}

.template-sales-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.template-sales-examples span {
    background: rgba(8, 116, 93, 0.09);
    border: 1px solid rgba(8, 116, 93, 0.16);
    border-radius: 999px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
    padding: 7px 10px;
}

.seo-admin-preview {
    background: linear-gradient(135deg, rgba(8, 116, 93, 0.08), rgba(243, 197, 107, 0.12));
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 16px;
}

.seo-admin-preview span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-admin-preview strong {
    color: var(--brand-dark);
    font-size: 42px;
    line-height: 1;
}

.seo-admin-preview ul {
    display: grid;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-admin-preview li {
    color: var(--muted);
    font-weight: 750;
}

.seo-admin-preview li::before {
    content: "○ ";
}

.seo-admin-preview li.is-ok {
    color: var(--brand-dark);
}

.seo-admin-preview li.is-ok::before {
    content: "✓ ";
}

.seo-admin-preview li small {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-left: 18px;
    margin-top: 2px;
}

.expose-page {
    margin: 0 auto;
    max-width: 1060px;
    padding: 36px 18px;
}

.expose-toolbar {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.expose-sheet {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    padding: clamp(22px, 4vw, 44px);
}

.expose-hero {
    aspect-ratio: 16 / 7;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.expose-head h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    margin: 0 0 12px;
}

.expose-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expose-facts span {
    background: var(--soft);
    border-radius: 999px;
    color: var(--brand-dark);
    font-weight: 850;
    padding: 8px 12px;
}

.expose-images {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expose-images img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.expose-contact {
    background: var(--soft);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 18px;
}

.inline-form {
    display: grid;
    gap: 8px;
    min-width: 180px;
}

.admin-post-list-wrap {
    padding: 0;
}

.admin-post-table {
    table-layout: fixed;
    width: 100%;
}

.admin-post-table td {
    vertical-align: middle;
}

.admin-post-provider-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-post-table th,
.admin-post-table td {
    padding: 14px 9px;
}

.admin-post-table th:nth-child(1),
.admin-post-table td:nth-child(1) {
    width: 90px;
}

.admin-post-table th:nth-child(2),
.admin-post-table td:nth-child(2) {
    width: 28%;
}

.admin-post-table th:nth-child(5),
.admin-post-table td:nth-child(5) {
    width: 110px;
}

.admin-post-table th:nth-child(6),
.admin-post-table td:nth-child(6) {
    width: 128px;
}

.admin-post-table th:nth-child(7),
.admin-post-table td:nth-child(7) {
    width: 160px;
}

.admin-post-title-cell {
    min-width: 0;
}

.admin-post-row-title {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 56px minmax(0, 1fr);
}

.admin-post-row-title:not(:has(img)) {
    grid-template-columns: 1fr;
}

.admin-post-row-title img {
    aspect-ratio: 1;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(22, 35, 32, 0.1);
    object-fit: cover;
    width: 56px;
}

.admin-post-row-title span,
.admin-post-modal-meta span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-post-row-title strong {
    color: var(--ink);
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.admin-post-row-title small {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.35;
    margin-top: 3px;
    max-width: 100%;
}

.admin-post-open {
    box-shadow: none;
    font-size: 14px;
    min-height: 38px;
    padding: 8px 10px;
    white-space: nowrap;
}

.admin-post-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

.admin-post-actions form {
    margin: 0;
}

.admin-post-actions button {
    font-size: 14px;
    min-height: 40px;
    padding: 8px 10px;
    width: 100%;
}

.admin-post-modal {
    align-items: center;
    background: rgba(5, 30, 25, 0.76);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 110;
}

.admin-post-modal[hidden],
.admin-post-modal-source-row,
.admin-post-modal-source {
    display: none;
}

.admin-post-modal-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
    max-height: min(860px, calc(100vh - 48px));
    max-width: min(1040px, calc(100vw - 48px));
    overflow: auto;
    padding: clamp(22px, 4vw, 42px);
    position: relative;
    width: 100%;
}

.admin-post-modal-panel .lightbox-close {
    position: sticky;
    float: right;
    right: 0;
    top: 0;
    z-index: 2;
}

.admin-post-modal-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    padding-right: 54px;
}

.admin-post-modal-meta strong {
    color: var(--ink);
    display: block;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.admin-post-modal-meta p {
    color: var(--muted);
    font-size: 20px;
    font-weight: 750;
    margin: 0;
}

.admin-post-modal-image {
    aspect-ratio: 16 / 7;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(22, 35, 32, 0.12);
    margin-bottom: 22px;
    object-fit: cover;
    width: 100%;
}

.admin-post-modal-body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 247, 240, 0.94)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-left: 6px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(22, 35, 32, 0.08);
    color: var(--ink);
    font-size: 19px;
    line-height: 1.75;
    padding: clamp(18px, 3vw, 28px);
}

.admin-post-modal-body span {
    color: var(--brand-dark);
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.admin-post-modal-body p {
    margin: 0;
}

.admin-post-modal-details {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 6px 18px;
    grid-template-columns: 150px minmax(0, 1fr);
    margin: 22px 0 0;
    padding: 16px;
}

.admin-post-modal-details dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-post-modal-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.admin-post-modal-details a {
    color: var(--brand);
    font-weight: 850;
}

body.modal-open {
    overflow: hidden;
}

.admin-post-review-list {
    display: grid;
    gap: 18px;
}

.admin-post-review {
    background:
        linear-gradient(135deg, rgba(8, 116, 93, 0.05), rgba(243, 197, 107, 0.06)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(22, 35, 32, 0.07);
    display: grid;
    gap: clamp(22px, 4vw, 42px);
    grid-template-columns: minmax(0, 1fr) 340px;
    padding: clamp(22px, 4vw, 38px);
}

.admin-post-review.no-image {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.admin-post-review-main {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
}

.admin-post-review-main.no-image {
    grid-template-columns: 1fr;
}

.admin-post-review-main > img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(22, 35, 32, 0.14);
    object-fit: cover;
    width: 100%;
}

.admin-post-content {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.admin-post-review-main strong {
    color: var(--ink);
    display: block;
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: 0;
    line-height: 1.02;
    max-width: 760px;
}

.admin-post-excerpt {
    color: var(--muted);
    font-size: 22px;
    font-weight: 750;
    line-height: 1.35;
    margin: 0;
    max-width: 720px;
}

.admin-post-body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 247, 240, 0.92)),
        #fff;
    border: 1px solid rgba(220, 228, 223, 0.95);
    border-left: 6px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(22, 35, 32, 0.08);
    color: var(--ink);
    font-size: 19px;
    line-height: 1.78;
    margin-top: 4px;
    max-width: 820px;
    padding: clamp(18px, 3vw, 28px);
    white-space: normal;
}

.admin-post-body span {
    color: var(--brand-dark);
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.admin-post-body p {
    margin: 0;
}

.admin-post-link {
    background: var(--soft);
    border-radius: 8px;
    color: var(--muted);
    margin: 0;
    overflow-wrap: anywhere;
    padding: 10px 12px;
}

.admin-post-link a,
.admin-post-review a {
    color: var(--brand);
    font-weight: 850;
}

.admin-post-review-side {
    background: linear-gradient(180deg, rgba(243, 247, 244, 0.9), #fff);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 16px;
}

.admin-post-review-side dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.admin-post-review-side dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-post-review-side dd {
    margin: 0 0 6px;
}

.admin-post-review-side dd span {
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.lightbox {
    align-items: center;
    background: rgba(5, 30, 25, 0.88);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 100;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    max-height: 88vh;
    max-width: 92vw;
    object-fit: contain;
}

.lightbox-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 32px;
    height: 46px;
    justify-content: center;
    min-height: 46px;
    padding: 0;
    position: fixed;
    right: 22px;
    top: 22px;
    width: 46px;
}

@media (max-width: 1100px) {
    .destination-admin-page .form-intro,
    .destination-admin-page .admin-split-layout,
    .settings-admin-page .settings-layout,
    .property-editor-page {
        grid-template-columns: 1fr;
    }

    .destination-admin-page .form-intro p:not(.eyebrow) {
        grid-column: 1;
        grid-row: auto;
    }

    .settings-side,
    .settings-save-card,
    .property-editor-page .form-intro {
        position: static;
    }
}

@media (min-width: 1500px) {
    .property-editor-page {
        grid-template-columns: 420px minmax(820px, 1fr);
    }

    .property-editor-page .form-intro h1 {
        font-size: 76px;
    }
}

@media (max-width: 900px) {
    .hero,
    .search-form,
    .home-showcase,
    .offers-hero,
    .destination-hero,
    .provider-profile-panel,
    .referral-panel,
    .supporter-panel,
    .sitemap-hero,
    .support-page-hero,
    .sitemap-grid,
    .support-reasons,
    .support-market-panel,
    .support-fact-grid,
    .support-free-panel,
    .support-transparency,
    .admin-todo-grid,
    .editor-note-grid,
    .home-news-grid,
    .home-highlight-layout,
    .home-featured-post,
    .property-grid,
    .post-grid,
    .admin-stats,
    .hero-image-grid,
    .detail-hero,
    .detail-layout,
    .form-page,
    .voucher-panel,
    .dashboard-head {
        grid-template-columns: 1fr;
    }

    .sitemap-list,
    .compact-list {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 58px;
        padding-top: 72px;
    }

    .home-showcase {
        grid-template-columns: 1fr;
    }

    .home-news-card-copy > strong {
        font-size: 26px;
    }

    .home-news-drawer summary {
        grid-template-columns: 1fr;
    }

    .home-news-preview {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 12px;
    }

    .home-news-toggle {
        justify-self: start;
    }

    .home-featured-image {
        min-height: 260px;
    }

    .offers-hero {
        min-height: auto;
    }

    .destination-hero {
        min-height: auto;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-pills {
        justify-content: flex-start;
    }

    .offer-card,
    .offer-list-card,
    .property-post-card {
        grid-template-columns: 1fr;
    }

    .property-post-image {
        max-height: 280px;
    }

    .offer-list-image {
        min-height: 240px;
    }

    .offer-card-visual {
        min-height: 220px;
    }

    .showcase-hotel {
        min-height: 260px;
    }

    .booking-box {
        min-width: 0;
    }

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

    .dashboard-head {
        align-items: start;
    }

    .admin-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: stretch;
        max-width: none;
    }

    .dashboard-head .hero-actions {
        justify-content: flex-start;
    }

    .detail-hero {
        min-height: auto;
        padding-bottom: 48px;
    }

    .template-boutique.detail-hero.has-hero-image {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 760px;
    }

    .admin-table-wrap table {
        min-width: 760px;
    }

    .admin-post-table {
        min-width: 980px;
    }

    .admin-provider-summary {
        grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(90px, 0.45fr));
    }

    .admin-post-review,
    .admin-post-review-main,
    .property-tools,
    .inquiry-panel,
    .request-disclosure-body,
    .offer-filter-form,
    .admin-insight-grid,
    .admin-inquiry-card {
        grid-template-columns: 1fr;
    }

    .admin-post-review-main > img {
        max-height: 320px;
    }
}

@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .expose-toolbar {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .expose-page {
        max-width: none;
        padding: 0;
    }

    .expose-sheet {
        border: 0;
        box-shadow: none;
        padding: 0;
    }
}

@media (max-width: 620px) {
    .site-header,
    .site-footer,
    .cookie-banner,
    .brand,
    .main-nav,
    .footer-nav,
    .hero-actions,
    .detail-actions,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-header {
        position: static;
        padding: 14px 16px;
    }

    .main-nav {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .main-nav a,
    .main-nav a:not(.button) {
        align-items: center;
        background: var(--soft);
        display: flex;
        justify-content: center;
        min-height: 42px;
        padding: 8px;
        text-align: center;
    }

    .admin-dashboard-head h1 {
        font-size: 42px;
    }

    .admin-actions {
        grid-template-columns: 1fr;
    }

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

    .settings-hero,
    .settings-layout {
        grid-template-columns: 1fr;
    }

    .settings-side {
        position: static;
    }

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

    .settings-admin-page .settings-card {
        grid-template-columns: 1fr;
    }

    .settings-card-head {
        border-bottom: 1px solid var(--line);
        border-right: 0;
        grid-row: auto;
    }

    .settings-card > :not(.settings-card-head) {
        grid-column: 1;
        margin-left: 18px;
        margin-right: 18px;
    }

    .settings-admin-page .settings-card > :not(.settings-card-head) {
        grid-column: 1;
        margin-left: 18px;
        margin-right: 18px;
    }

    .admin-provider-summary {
        align-items: start;
        grid-template-columns: 1fr auto;
    }

    .admin-provider-stat,
    .admin-provider-updated {
        display: none;
    }

    .admin-empty-provider {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    button {
        width: 100%;
    }

    .footer-link-button {
        width: auto;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .admin-post-actions,
    .admin-post-modal-details {
        grid-template-columns: 1fr;
    }

    .admin-post-modal {
        padding: 12px;
    }

    .admin-post-modal-panel {
        max-height: calc(100vh - 24px);
        max-width: calc(100vw - 24px);
    }

    .admin-post-modal-image {
        aspect-ratio: 16 / 10;
    }

    .form-grid,
    .image-manager,
    .gallery,
    .editor-note-grid,
    .template-choice-grid,
    .template-css-examples,
    .microsite-other-card,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .template-admin-list {
        position: static;
    }

    .destination-admin-list {
        position: static;
    }

    .template-admin-item {
        grid-template-columns: 1fr;
    }

    .template-editor-hero,
    .destination-editor-hero,
    .destination-example-grid {
        grid-template-columns: 1fr;
    }

    .microsite-other-card img,
    .microsite-other-placeholder {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

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

@media (max-width: 520px) {
    .hero,
    .offers-hero,
    .destination-hero,
    .detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h1,
    .offers-hero h1,
    .destination-hero h1 {
        font-size: 42px;
    }

    .detail-hero h1,
    .dashboard-head h1,
    .form-intro h1,
    .legal-page h1 {
        font-size: 34px;
    }

    .hero p,
    .offers-hero p:not(.eyebrow),
    .detail-hero > div > p:not(.eyebrow) {
        font-size: 17px;
    }

    .content-section,
    .detail-layout,
    .form-page,
    .dashboard-head,
    .gallery,
    .legal-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-band {
        margin-top: -24px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-form,
    .panel-form,
    .table-wrap,
    .prose,
    .info-list,
    .provider-profile-panel,
    .referral-panel,
    .supporter-panel,
    .support-page-hero > div,
    .support-page-card,
    .sitemap-hero > div,
    .sitemap-hero aside,
    .sitemap-card,
    .support-reasons article,
    .support-market-panel,
    .support-fact-grid article,
    .support-free-panel,
    .support-transparency,
    .booking-box,
    .voucher-panel,
    .legal-content,
    .empty-state {
        padding: 18px;
    }

    .sitemap-hero,
    .support-page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sitemap-list,
    .compact-list {
        grid-template-columns: 1fr;
    }

    .request-disclosure.inquiry-panel,
    .request-disclosure.voucher-panel {
        padding: 0;
    }

    .hero-highlight,
    .offers-summary {
        padding: 14px;
    }

    .hero-highlight strong,
    .offers-summary strong {
        font-size: 34px;
    }

    .hero-chips,
    .property-facts,
    .filter-pills,
    .city-list {
        gap: 8px;
    }

    .showcase-card,
    .offer-card-visual {
        min-height: 220px;
        padding: 18px;
    }

    .offer-card-content,
    .offer-list-content {
        padding: 20px;
    }

    .offer-list-card h3,
    .property-post-content h3,
    .offer-card h3,
    .post-card h3 {
        font-size: 24px;
    }

    .booking-contact-phone strong {
        font-size: 26px;
    }

    .site-footer {
        padding: 22px 16px;
    }

    .cookie-banner {
        bottom: 10px;
        max-width: calc(100vw - 20px);
        padding: 14px;
    }

    .admin-overview-stats div {
        min-height: 96px;
        padding: 14px;
    }

    .admin-overview-stats strong {
        font-size: 28px;
    }
}

@media (max-width: 380px) {
    .brand {
        font-size: 17px;
    }

    .main-nav {
        grid-template-columns: 1fr;
    }

    .admin-overview-stats {
        grid-template-columns: 1fr;
    }

    .settings-status-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .offers-hero h1 {
        font-size: 36px;
    }

    .booking-contact-phone strong {
        font-size: 23px;
    }
}
