@font-face {
    font-family: "Allura";
    src: url("../fonts/allura-regular.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    --ink: #17211d;
    --muted: #64716c;
    --paper: #fffdf8;
    --surface: #ffffff;
    --soft: #eef6f2;
    --sand: #f8efe1;
    --cream: #fff8ed;
    --sky: #e7f5f7;
    --line: #d9e2dc;
    --sea: #0f766e;
    --sea-dark: #0b4f4a;
    --reed: #6f8d72;
    --coral: #bd6a4d;
    --gold: #c8963e;
    --shadow: 0 22px 62px rgba(23, 33, 29, 0.11);
    --radius: 22px;
    --max: 1220px;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
    --font-script: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(231, 245, 247, 0.75), transparent 32rem),
        linear-gradient(180deg, var(--paper) 0, #fbfaf5 100%);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    line-height: 1.08;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h1 {
    font-size: 3.9rem;
}

h2 {
    font-size: 2.55rem;
}

h3 {
    font-size: 1.38rem;
}

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

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 200;
    width: auto;
    height: auto;
    clip: auto;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 2px solid var(--sea);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid rgba(217, 226, 220, 0.9);
    box-shadow: 0 8px 28px rgba(23, 33, 29, 0.05);
    backdrop-filter: blur(14px);
}

.topbar {
    width: min(var(--max), calc(100% - 40px));
    min-height: 94px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 760;
}

.brand {
    flex: 0 0 auto;
}

.brand-logo {
    width: 238px;
    max-width: min(238px, 60vw);
    height: auto;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: var(--sea);
    border-radius: 50%;
    font-weight: 800;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 520;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.main-nav a,
.admin-nav a {
    padding: 0.58rem 0.66rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
}

.main-nav a:hover,
.main-nav a.is-active,
.admin-nav a:hover {
    color: var(--ink);
    background: rgba(238, 246, 242, 0.9);
}

.main-nav a.nav-booking-button {
    margin-left: .35rem;
    padding: .72rem 1.05rem;
    color: #fff;
    background: var(--sea);
    box-shadow: 0 10px 24px rgba(15, 118, 110, .18);
}

.main-nav a.nav-booking-button:hover,
.main-nav a.nav-booking-button.is-active {
    color: #fff;
    background: var(--sea-dark);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.has-submenu > .nav-link::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-top: -0.18rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.75;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    z-index: 20;
    display: grid;
    min-width: 284px;
    gap: 0.25rem;
    padding: 0.7rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0.4rem);
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(217, 226, 220, 0.95);
    border-radius: 20px;
    box-shadow: 0 22px 48px rgba(23, 33, 29, 0.14);
    backdrop-filter: blur(16px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.nav-submenu-small {
    min-width: 238px;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-submenu a {
    display: grid;
    gap: 0.1rem;
    padding: 0.62rem 0.75rem;
    border-radius: 14px;
    color: var(--ink);
}

.nav-submenu a:hover {
    background: var(--soft);
}

.nav-submenu span {
    font-weight: 760;
}

.nav-submenu small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 560;
}

.header-cta,
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 760;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.header-cta,
.button-primary {
    color: #fff;
    background: var(--sea);
}

.header-cta:hover,
.button-primary:hover {
    background: var(--sea-dark);
}

.button-secondary {
    color: var(--sea-dark);
    background: var(--surface);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: var(--sea);
}

.button-row,
.button-stack,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button-stack {
    flex-direction: column;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 560px;
    height: 660px;
    max-height: calc(100vh - 96px);
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: var(--ink);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.82) 39%, rgba(255, 253, 248, 0.22) 70%, rgba(255, 253, 248, 0.04)),
        linear-gradient(180deg, rgba(255, 253, 248, 0.05), rgba(23, 33, 29, 0.2));
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--sky);
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1);
    transition: opacity 900ms ease, transform 7800ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.035);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide figcaption {
    position: absolute;
    right: max(20px, calc((100% - var(--max)) / 2));
    bottom: 1.25rem;
    z-index: 2;
    padding: 0.45rem 0.72rem;
    color: #fff;
    background: rgba(23, 33, 29, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 720;
    backdrop-filter: blur(10px);
}

.hero-dots {
    position: absolute;
    right: max(20px, calc((100% - var(--max)) / 2));
    bottom: 4.05rem;
    z-index: 3;
    display: flex;
    gap: 0.42rem;
}

.hero-dot {
    width: 0.7rem;
    height: 0.7rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 1.9rem;
    border-radius: 999px;
    background: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 4.6rem 0 6rem;
}

.hero-content h1 {
    max-width: 690px;
    margin-bottom: 0.85rem;
    font-size: 4.25rem;
}

.hero-content p {
    max-width: 600px;
    font-size: 1.08rem;
}

.hero-support {
    max-width: 620px;
}

.script-note {
    margin-bottom: 0.35rem;
    color: var(--gold);
    font-family: var(--font-script);
    font-size: 1.75rem;
    line-height: 1.15;
}

.hero .script-note {
    max-width: 640px;
    color: #9b6f2f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.image-hero {
    position: relative;
    min-height: 460px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.image-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(9, 32, 30, 0.76), rgba(9, 32, 30, 0.36) 58%, rgba(9, 32, 30, 0.06));
}

.image-hero img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-hero-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 4rem;
}

.image-hero-content p {
    max-width: 680px;
    font-size: 1.12rem;
}

.eyebrow {
    color: var(--coral);
    margin-bottom: 0.72rem;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.hero .eyebrow {
    color: var(--sea-dark);
}

.image-hero .eyebrow {
    color: #ffd7c9;
}

.hero .button-secondary {
    color: var(--sea-dark);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(15, 118, 110, 0.28);
}

.section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 5rem 0;
}

.intro-band,
.booking-strip {
    width: 100%;
    max-width: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 248, 237, 0.95), transparent 24rem),
        var(--soft);
}

.intro-band {
    padding: 5rem 0;
}

.intro-band .section-grid {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.quick-availability {
    position: relative;
    z-index: 4;
    width: min(var(--max), calc(100% - 40px));
    margin: -4rem auto 0;
}

.availability-panel {
    padding-top: 0;
}

.booking-search {
    display: grid;
    grid-template-columns: minmax(176px, 0.72fr) minmax(260px, 1.25fr) repeat(4, minmax(118px, 0.64fr)) minmax(180px, 0.82fr);
    gap: 0.9rem;
    align-items: end;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.booking-search-copy {
    align-self: center;
}

.booking-search-copy h2 {
    margin-bottom: 0;
    font-size: 1.58rem;
}

.booking-search-copy p:last-child {
    margin-bottom: 0;
}

.booking-search label {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 0.86rem;
}

.booking-search .field-wide {
    min-width: 0;
}

.booking-search .button {
    min-height: 48px;
    white-space: nowrap;
}

.booking-search-wide {
    grid-template-columns: minmax(210px, 0.85fr) minmax(260px, 1.25fr) repeat(4, minmax(118px, 0.64fr)) minmax(180px, 0.82fr);
}

.booking-search-inline {
    grid-template-columns: minmax(270px, 1.25fr) repeat(4, minmax(118px, 0.68fr)) minmax(164px, 0.78fr);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(23, 33, 29, 0.06);
}

.section-grid,
.detail-layout,
.contact-layout,
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 3rem;
    align-items: start;
}

.local-teaser,
.area-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.local-teaser img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.local-teaser > div::before,
.area-story > div:first-child::before {
    content: "Haus Passat";
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(200, 150, 62, 0.9);
    font-family: var(--font-script);
    font-size: 1.48rem;
    line-height: 1.1;
}

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

.section-heading a,
.text-link,
.text-button {
    color: var(--sea-dark);
    font-weight: 760;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.highlight-item,
.aside-box,
.contact-card,
.form-card,
.calendar-card,
.admin-panel,
.admin-card,
.inquiry-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
}

.highlight-item {
    padding: 1rem;
    font-weight: 700;
    border-radius: 18px;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.apartment-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.apartment-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 18px 42px rgba(23, 33, 29, 0.09);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.apartment-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: 0 24px 58px rgba(23, 33, 29, 0.12);
}

.card-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--line);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.apartment-card:hover .card-image img {
    transform: scale(1.035);
}

.card-content {
    padding: 1.45rem;
}

.lead-text {
    color: var(--sea-dark);
    font-weight: 760;
}

.price-badge {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.45rem 0.65rem;
    color: var(--sea-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 800;
}

.teaser-list {
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.teaser-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--ink);
    font-weight: 650;
}

.teaser-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.48rem;
    height: 0.48rem;
    background: var(--reed);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(111, 141, 114, 0.15);
}

.card-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.card-title-row span {
    color: var(--sea-dark);
    font-size: 0.92rem;
    font-weight: 780;
    white-space: nowrap;
}

.facts-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.4rem 0;
}

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

.facts-list div {
    padding: 0.9rem;
    background: var(--soft);
    border-radius: var(--radius);
}

.facts-list dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
}

.facts-list dd {
    margin: 0;
    font-weight: 760;
}

.booking-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3.2rem max(20px, calc((100% - var(--max)) / 2));
}

.comfort-band {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2.4rem;
    align-items: start;
    padding: 4rem;
    background:
        radial-gradient(circle at 88% 18%, rgba(231, 245, 247, 0.82), transparent 20rem),
        linear-gradient(135deg, var(--cream), var(--soft));
    border-radius: var(--radius);
}

.comfort-grid,
.idea-grid,
.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.comfort-grid article,
.idea-grid article,
.booking-info-grid article {
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
}

.comfort-grid h3,
.idea-grid h3,
.booking-info-grid h3 {
    font-size: 1.22rem;
}

.page-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 5rem 0 3rem;
}

.compact-hero {
    max-width: 820px;
    margin-left: max(20px, calc((100% - var(--max)) / 2));
}

.detail-hero {
    position: relative;
    min-height: 420px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 33, 30, 0.82), rgba(10, 33, 30, 0.12));
}

.detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 3rem;
}

.detail-main,
.detail-aside {
    min-width: 0;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: minmax(140px, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-gallery .gallery-button {
    aspect-ratio: auto;
    min-height: 150px;
}

.detail-gallery .gallery-button.is-featured {
    grid-row: span 2;
}

.detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-aside {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 1rem;
}

.aside-box,
.contact-card,
.form-card,
.calendar-card,
.admin-panel,
.inquiry-card {
    padding: 1.4rem;
}

.content-block {
    margin-top: 3rem;
}

.note-block {
    padding: 1.4rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.amenity-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.amenity-group {
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
}

.amenity-group h3 {
    font-size: 1.05rem;
}

.amenity-group ul {
    display: grid;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.amenity-group li {
    position: relative;
    padding-left: 1.1rem;
}

.amenity-group li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.42rem;
    height: 0.42rem;
    background: var(--sea);
    border-radius: 50%;
}

.area-callout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem;
    background: var(--sky);
    border-radius: var(--radius);
}

.area-callout img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.amenity-grid li {
    padding: 0.7rem 0.8rem;
    background: var(--soft);
    border-radius: var(--radius);
    font-weight: 650;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-button {
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    background: var(--line);
    cursor: zoom-in;
}

.gallery-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-dialog {
    width: min(1060px, calc(100% - 32px));
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
}

.lightbox-dialog::backdrop {
    background: rgba(8, 17, 15, 0.82);
}

.lightbox-dialog img {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    font-size: 1.7rem;
    cursor: pointer;
}

.table-wrap,
.admin-table-wrap {
    overflow-x: auto;
}

.price-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--line);
}

.price-table th,
.price-table td,
.admin-table th,
.admin-table td {
    padding: 0.9rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.price-table th,
.admin-table th {
    color: var(--muted);
    background: var(--soft);
    font-size: 0.88rem;
}

.price-date-note {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .28rem;
    align-items: baseline;
    margin: .2rem 0 1rem;
    padding: .65rem .82rem;
    color: #31524a;
    background: rgba(237, 246, 241, .9);
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 14px;
    font-size: .94rem;
    font-weight: 650;
}

.price-date-note strong {
    color: var(--sea-dark);
}

.price-table tbody tr {
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.price-table tbody tr.is-selected {
    position: relative;
    background: rgba(255, 245, 229, .96);
    box-shadow: inset 5px 0 0 var(--gold);
}

.price-table tbody tr.is-selected td {
    color: #0f2d29;
    font-weight: 780;
}

.small-text {
    color: var(--muted);
    font-size: 0.9rem;
}

.calendar-list {
    display: grid;
    gap: 1.25rem;
}

.calendar-card-header,
.booking-panel-header,
.admin-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calendar-image {
    width: 100%;
    min-height: 120px;
    object-fit: contain;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.booking-widget .calendar-image,
.availability-preview .calendar-image {
    margin: 0.8rem 0 0.5rem;
}

.date-request-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.date-request-form label {
    margin-bottom: 0;
}

.date-request-form .button {
    width: 100%;
    min-width: 13.5rem;
    white-space: nowrap;
}

.availability-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.block-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.availability-preview,
.booking-actions-panel {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.booking-actions-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 1.25rem;
    background: var(--soft);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: var(--radius);
}

.booking-actions-panel h3 {
    margin-bottom: 0.55rem;
}

.booking-actions-panel p:last-child {
    margin-bottom: 0;
}

.booking-actions-panel > .small-text {
    flex: 1 0 100%;
}

.booking-info-grid {
    margin-top: 1.4rem;
}

.booking-panel .booking-info-grid article {
    padding: 1rem 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
}

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

.booking-selector {
    display: grid;
    gap: 0.75rem;
}

.booking-selector a {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.booking-selector a.is-active {
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.booking-selector img {
    width: 82px;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
}

.booking-selector small {
    display: block;
    color: var(--muted);
}

.booking-panel {
    min-width: 0;
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.booking-summary {
    display: grid;
    grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.booking-summary > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.booking-flow-note {
    margin-bottom: 1.2rem;
    padding: 1rem 1.1rem;
    background: #edf6f1;
    border: 1px solid rgba(15, 118, 110, .16);
    border-radius: var(--radius);
}

.booking-flow-note h3 {
    margin-bottom: .45rem;
    font-size: 1.35rem;
}

.booking-flow-note p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.booking-context-panel {
    display: grid;
    grid-template-columns: minmax(190px, .54fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 1.2rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(237, 246, 241, .95), rgba(255, 253, 248, .98));
    border: 1px solid rgba(15, 118, 110, .15);
    border-radius: var(--radius);
}

.booking-context-image {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
}

.booking-context-panel h3 {
    margin-bottom: .7rem;
    font-size: 1.45rem;
}

.booking-context-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    margin: 1rem 0;
}

.booking-context-list div {
    padding: .82rem;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(217, 226, 220, .8);
    border-radius: 14px;
}

.booking-context-list dt {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 780;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.booking-context-list dd {
    margin: .2rem 0 0;
    color: var(--ink);
    font-weight: 760;
}

.secra-frame {
    width: 100%;
    min-height: 940px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.secra-frame-booking {
    display: block;
    min-height: 980px;
}

.secra-embed-card {
    scroll-margin-top: 112px;
    margin-top: 1.4rem;
    padding: 1.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(23, 33, 29, 0.07);
}

.secra-embed-card .availability-heading {
    margin-bottom: 0.95rem;
}

.secra-embed-card .availability-heading p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
}

.secra-embed-card small {
    color: var(--muted);
    font-weight: 760;
}

.embed-placeholder {
    padding: 2rem;
    background: var(--soft);
    border-radius: var(--radius);
}

.booking-fallback {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.booking-fallback h4 {
    margin-bottom: 0.45rem;
}

.booking-fallback p {
    margin-bottom: 0;
    color: var(--muted);
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-columns article {
    padding: 1.4rem 0;
    border-top: 3px solid var(--reed);
}

.location-photo-grid {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    grid-template-rows: repeat(2, minmax(150px, 1fr));
    gap: 0.75rem;
}

.location-photo-grid img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(23, 33, 29, 0.08);
}

.location-photo-grid img:first-child {
    grid-row: 1 / 3;
}

.weather-ideas {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: start;
    padding: 3rem;
    background: var(--soft);
    border-radius: var(--radius);
}

.discover-region {
    display: grid;
    gap: 1.45rem;
}

.discover-region .section-heading {
    margin-bottom: 0.2rem;
}

.discover-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
}

.discover-grid article {
    padding-top: 1.25rem;
    border-top: 3px solid var(--reed);
}

.discover-grid h3,
.leisure-options h3 {
    font-size: 1.32rem;
}

.leisure-options {
    display: grid;
    grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.55rem;
    background: rgba(238, 246, 242, 0.78);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.leisure-options ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.leisure-options li {
    position: relative;
    padding-left: 1.1rem;
    font-weight: 650;
}

.leisure-options li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    background: var(--sea);
    border-radius: 50%;
}

.discover-closing {
    max-width: 760px;
    color: var(--sea-dark);
    font-weight: 760;
}

@media (max-width: 900px) {
    .discover-grid,
    .leisure-options,
    .leisure-options ul {
        grid-template-columns: 1fr;
    }
}

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

.related-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
}

.related-card:hover {
    border-color: var(--sea);
}

.related-card img {
    width: 112px;
    height: 82px;
    object-fit: cover;
    border-radius: 6px;
}

.related-card small {
    display: block;
    color: var(--muted);
    margin-top: 0.15rem;
}

.area-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.area-list li {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
}

.tip-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: var(--soft);
    border-radius: var(--radius);
}

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

.tip-card {
    position: relative;
    min-height: 100%;
    padding: 1.25rem;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(23, 33, 29, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tip-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.36);
    box-shadow: 0 18px 42px rgba(23, 33, 29, 0.1);
}

.tip-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.tip-card-head .eyebrow {
    margin-bottom: 0;
}

.tip-icon {
    flex: 0 0 58px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: var(--soft);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.tip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tip-card h2 {
    margin-right: 0;
    font-size: 1.42rem;
}

.location-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: var(--soft);
    border-radius: var(--radius);
}

.contact-layout {
    grid-template-columns: 360px minmax(0, 1fr);
}

.form-grid {
    display: grid;
    gap: 1rem;
}

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

label {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.78rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
}

select {
    padding-right: 2.2rem;
    text-overflow: ellipsis;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 118, 110, 0.18);
    border-color: var(--sea);
}

.check-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
}

.check-row input {
    width: auto;
    margin-top: 0.28rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.notice {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--soft);
}

.notice-success {
    border-color: rgba(15, 118, 110, 0.3);
    background: rgba(15, 118, 110, 0.1);
}

.notice-error {
    border-color: rgba(216, 105, 76, 0.4);
    background: rgba(216, 105, 76, 0.12);
}

.legal-text {
    max-width: 850px;
}

.legal-text h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
}

.site-footer {
    color: #edf8f4;
    background: #17211d;
}

.footer-inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-contact {
    display: grid;
    gap: 0.2rem;
}

.footer-nav {
    display: grid;
    gap: 0.45rem;
}

.footer-nav a,
.footer-contact a {
    color: #bfe5dc;
}

.admin-body,
.login-body {
    background: #f3f7f4;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.login-panel {
    width: min(460px, 100%);
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem max(20px, calc((100% - var(--max)) / 2));
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.admin-main {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 2.5rem 0 5rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-card {
    padding: 1.25rem;
}

.admin-card strong {
    display: block;
    font-size: 1.6rem;
}

.admin-card span {
    color: var(--muted);
}

.admin-editor-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
}

.admin-sidebar {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.admin-sidebar a {
    padding: 0.75rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 700;
}

.admin-sidebar a.is-active {
    border-color: var(--sea);
    color: var(--sea-dark);
}

.inline-form {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.7fr 1.3fr auto;
    gap: 0.8rem;
    align-items: end;
}

.inline-form label {
    margin-bottom: 0;
}

.inquiry-list {
    display: grid;
    gap: 1rem;
}

@media (max-width: 1100px) {
    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .main-nav.is-open {
        position: absolute;
        top: 94px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0.2rem;
        padding: 0.75rem;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open .nav-item {
        display: grid;
    }

    .main-nav.is-open .nav-link {
        width: 100%;
    }

    .main-nav.is-open .nav-submenu {
        position: static;
        min-width: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        padding: 0.15rem 0 0.35rem 0.8rem;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .main-nav.is-open .nav-submenu a {
        padding: 0.45rem 0.7rem;
        background: rgba(238, 246, 242, 0.62);
    }

    .apartment-grid,
    .apartment-grid.large,
    .feature-columns,
    .tip-grid,
    .comfort-band,
    .comfort-grid,
    .idea-grid,
    .booking-info-grid,
    .detail-gallery,
    .amenity-groups,
    .area-callout,
    .weather-ideas,
    .related-grid,
    .section-grid,
    .local-teaser,
    .area-story,
    .detail-layout,
    .contact-layout,
    .booking-layout,
    .footer-inner,
    .admin-editor-layout {
        grid-template-columns: 1fr;
    }

    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-search-copy,
    .booking-search .button {
        grid-column: 1 / -1;
    }

    .hero {
        height: auto;
        max-height: none;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero::after {
        background: linear-gradient(90deg, rgba(255, 253, 248, 0.97), rgba(255, 253, 248, 0.86) 55%, rgba(255, 253, 248, 0.3));
    }

    .detail-gallery .gallery-button.is-featured {
        grid-row: auto;
    }

    .detail-aside {
        position: static;
    }

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

    .booking-summary {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .inline-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .topbar {
        width: calc(100% - 28px);
    }

    .brand-logo {
        width: 198px;
        max-width: 60vw;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.8) 66%, rgba(255, 253, 248, 0.32)),
            linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.68));
    }

    .hero-slide figcaption {
        display: none;
    }

    .hero-dots {
        right: auto;
        left: 16px;
        bottom: 1rem;
    }

    .hero-content {
        width: calc(100% - 32px);
        padding: 2.5rem 0;
    }

    .quick-availability {
        width: calc(100% - 32px);
        margin-top: 1rem;
    }

    .image-hero {
        min-height: 520px;
    }

    .image-hero-content {
        width: calc(100% - 32px);
        padding-bottom: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.85rem;
    }

    .script-note {
        font-size: 1.35rem;
    }

    .hero-support {
        display: none;
    }

    .image-hero-content p {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .section,
    .page-hero,
    .admin-main {
        width: calc(100% - 32px);
        padding: 3rem 0;
    }

    .compact-hero {
        margin-left: 16px;
    }

    .highlight-list,
    .facts-list,
    .facts-list.compact,
    .amenity-grid,
    .gallery-grid,
    .form-grid.two,
    .booking-selector,
    .booking-search,
    .booking-search-wide,
    .booking-search-inline,
    .location-photo-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .booking-strip,
    .calendar-card-header,
    .booking-panel-header,
    .availability-heading,
    .admin-heading,
    .location-band,
    .tip-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-strip {
        width: 100%;
        padding: 2.5rem 16px;
    }

    .tip-strip {
        padding: 2rem;
    }

    .comfort-band,
    .weather-ideas {
        padding: 2rem;
    }

    .location-photo-grid img:first-child {
        grid-row: auto;
    }

    .booking-selector a {
        grid-template-columns: 72px minmax(0, 1fr);
    }
}

/* =========================================================
   Visual refresh 2026-09: calmer maritime look, clearer cards
   ========================================================= */
:root {
    --ink: #14211d;
    --muted: #66736e;
    --paper: #fbfaf6;
    --soft: #edf4f0;
    --cream: #f8f3e8;
    --sky: #e9f2f1;
    --line: #d7dfda;
    --sea: #147d74;
    --sea-dark: #0b514c;
    --coral: #b9694c;
    --gold: #a87632;
    --shadow: 0 22px 60px rgba(20, 33, 29, .10);
    --radius: 18px;
    --max: 1280px;
}

body {
    background: var(--paper);
}

.site-header {
    background: rgba(251, 250, 246, .94);
    box-shadow: 0 6px 24px rgba(20, 33, 29, .045);
}

.topbar {
    min-height: 86px;
}

.brand-logo {
    width: 220px;
    max-width: min(220px, 58vw);
}

.main-nav {
    gap: .06rem;
}

.main-nav a {
    padding: .55rem .6rem;
    font-size: .87rem;
}

.header-cta {
    margin-left: .35rem;
    padding-inline: 1.15rem;
}

.hero {
    min-height: 610px;
    height: 650px;
    max-height: none;
    background: #eee9de;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(251,250,246,.99) 0%, rgba(251,250,246,.97) 31%, rgba(251,250,246,.83) 46%, rgba(251,250,246,.26) 68%, rgba(251,250,246,.03) 100%),
        linear-gradient(180deg, rgba(20,33,29,.03), rgba(20,33,29,.14));
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -50px 80px rgba(20,33,29,.07);
}

.hero-content {
    padding: 3.8rem 0 7.5rem;
}

.hero-content h1 {
    max-width: 650px;
    margin-bottom: 1rem;
    font-size: clamp(3.6rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.035em;
}

.hero-content > p:not(.script-note):not(.eyebrow) {
    max-width: 585px;
    color: #30403a;
    line-height: 1.7;
}

.hero .script-note {
    margin-bottom: .6rem;
    color: #956a2f;
    font-size: 1.55rem;
}

.hero .eyebrow {
    margin-bottom: .8rem;
    letter-spacing: .11em;
}

.hero .button-row {
    margin-top: 1.35rem;
}

.hero-dots {
    bottom: 2rem;
}

.hero-slide figcaption {
    bottom: 1.5rem;
}

.quick-availability {
    width: min(1240px, calc(100% - 48px));
    margin-top: -3.25rem;
}

.booking-search,
.booking-search-wide {
    grid-template-columns: minmax(220px, 1.35fr) repeat(2, minmax(145px, .9fr)) minmax(100px, .52fr) minmax(100px, .52fr) minmax(180px, .9fr);
    gap: .8rem;
    padding: 1.35rem 1.45rem 1.45rem;
    background: rgba(255,255,255,.96);
    border-color: rgba(210,221,215,.92);
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(20,33,29,.11);
}

.booking-search-copy {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: .9rem;
    padding-bottom: .15rem;
    border-bottom: 1px solid #edf0ee;
}

.booking-search-copy .eyebrow {
    flex: 0 0 auto;
    margin: 0;
}

.booking-search-copy h2 {
    margin: 0;
    font-size: 1.45rem;
}

.booking-search-copy > p:last-child:not(.eyebrow) {
    margin: 0 0 0 auto;
    color: var(--muted);
    font-size: .88rem;
}

.booking-search label {
    display: grid;
    gap: .38rem;
    font-size: .78rem;
    font-weight: 760;
}

.booking-search input,
.booking-search select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: .72rem .82rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid #d4ddd8;
    border-radius: 12px;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.booking-search input:focus,
.booking-search select:focus {
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(20,125,116,.10);
}

.booking-search .button {
    min-height: 48px;
    border-radius: 12px;
}

.section {
    padding: 5.5rem 0;
}

.intro-band {
    position: relative;
    margin-top: 0;
    padding: 6.4rem 0 5.8rem;
    background: linear-gradient(135deg, #f8f5ec 0%, #edf4f0 58%, #e8f1ef 100%);
    overflow: hidden;
}

.intro-band::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -260px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(20,125,116,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(20,125,116,.025), 0 0 0 140px rgba(20,125,116,.018);
    pointer-events: none;
}

.intro-band .section-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 4.5rem;
}

.intro-band h2 {
    max-width: 720px;
    font-size: clamp(2.6rem, 4vw, 3.5rem);
}

.intro-band .section-grid > div:first-child > p:not(.eyebrow) {
    max-width: 760px;
    color: #34443e;
    line-height: 1.75;
}

.highlight-list {
    grid-template-columns: 1fr;
    gap: 0;
    align-self: center;
    padding: 1.15rem 1.3rem;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.84);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(20,33,29,.055);
    backdrop-filter: blur(12px);
}

.highlight-item {
    position: relative;
    padding: 1rem .2rem 1rem 2.15rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: .96rem;
}

.highlight-item + .highlight-item {
    border-top: 1px solid rgba(20,33,29,.09);
}

.highlight-item::before {
    content: "✓";
    position: absolute;
    left: .15rem;
    top: .95rem;
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    color: #fff;
    background: var(--sea);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 900;
}

.apartment-showcase {
    width: min(1320px, calc(100% - 40px));
}

.apartment-grid,
.apartment-grid.large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.apartment-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border-radius: 17px;
    box-shadow: 0 14px 38px rgba(20,33,29,.075);
}

.card-image {
    aspect-ratio: 1.25 / 1;
}

.card-content {
    display: flex;
    min-height: 100%;
    flex: 1;
    flex-direction: column;
    padding: 1.15rem 1.1rem 1.2rem;
}

.card-content .eyebrow {
    margin-bottom: .48rem;
    font-size: .68rem;
}

.card-content h2,
.card-content h3 {
    margin-bottom: .65rem;
    font-size: 1.42rem;
    line-height: 1.08;
}

.card-content > p:not(.eyebrow):not(.lead-text) {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.card-content .lead-text {
    margin-bottom: .7rem;
    font-size: .9rem;
}

.price-badge {
    right: .7rem;
    bottom: .7rem;
    border-radius: 999px;
    font-size: .78rem;
}

.teaser-list {
    gap: .38rem;
    margin: .85rem 0 .95rem;
}

.teaser-list li {
    padding-left: 1.35rem;
    font-size: .84rem;
    font-weight: 650;
    line-height: 1.4;
}

.teaser-list li::before,
.amenity-group li::before {
    content: "✓";
    top: .02rem;
    display: inline-grid;
    width: 1rem;
    height: 1rem;
    place-items: center;
    color: var(--sea);
    background: transparent;
    border: 1.5px solid rgba(20,125,116,.42);
    border-radius: 50%;
    box-shadow: none;
    font-size: .62rem;
    font-weight: 900;
}

.facts-list.compact {
    margin: auto 0 1rem;
    gap: .45rem;
}

.facts-list.compact div {
    padding: .65rem .7rem;
    border-radius: 11px;
}

.facts-list.compact dt {
    font-size: .67rem;
}

.facts-list.compact dd {
    font-size: .86rem;
}

.apartment-card .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
}

.apartment-card .button {
    min-height: 41px;
    padding: .62rem .72rem;
    font-size: .84rem;
}

.comfort-band {
    border-radius: 22px;
}

/* Detail pages: stronger hierarchy and easier scanning */
.detail-hero {
    min-height: 470px;
}

.detail-hero::after {
    background: linear-gradient(0deg, rgba(8,31,28,.82), rgba(8,31,28,.08) 70%);
}

.detail-hero-content {
    padding-bottom: 2.8rem;
}

.detail-hero-content h1 {
    margin-bottom: .55rem;
    font-size: clamp(3rem, 5vw, 4.6rem);
}

.detail-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3.2rem;
}

.detail-gallery {
    grid-template-columns: 1.45fr .9fr .9fr;
    gap: .65rem;
    margin-bottom: 1.2rem;
}

.detail-gallery .gallery-button {
    border-radius: 13px;
}

.detail-facts {
    gap: .55rem;
    margin: 1.2rem 0 1rem;
}

.detail-facts div {
    padding: .8rem .9rem;
    border: 1px solid #e0e7e3;
    border-radius: 12px;
    background: #f7faf8;
}

.detail-jumpnav {
    position: sticky;
    top: 94px;
    z-index: 8;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 1.1rem 0 2.5rem;
    padding: .65rem;
    background: rgba(251,250,246,.94);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 9px 28px rgba(20,33,29,.06);
    backdrop-filter: blur(12px);
}

.detail-jumpnav a {
    padding: .5rem .75rem;
    color: var(--sea-dark);
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 760;
}

.detail-jumpnav a:hover {
    background: var(--soft);
}

.content-block {
    scroll-margin-top: 165px;
    margin-top: 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
}

.content-block:first-of-type {
    border-top: 0;
}

.content-block h2 {
    font-size: 2rem;
}

.note-block {
    margin: .25rem 0 2.5rem;
    padding: 1.45rem 1.6rem;
    border: 0;
    border-left: 4px solid var(--sea);
    border-radius: 0 14px 14px 0;
}

.amenity-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.amenity-group {
    padding: 1.15rem 1.2rem;
    border-radius: 13px;
    box-shadow: none;
}

.amenity-group h3 {
    margin-bottom: .8rem;
}

.amenity-group li {
    padding-left: 1.45rem;
    color: #34443e;
    font-size: .9rem;
}

.price-table {
    border-radius: 13px;
    overflow: hidden;
}

.price-table th {
    color: var(--sea-dark);
    background: #edf4f0;
}

.aside-box {
    border-radius: 15px;
    box-shadow: 0 14px 38px rgba(20,33,29,.07);
}

.booking-widget {
    border-top: 4px solid var(--sea);
}

.booking-widget .calendar-image {
    border-radius: 10px;
}

.date-request-form input,
.form-card input,
.form-card select,
.form-card textarea,
.contact-card input,
.contact-card textarea {
    border-radius: 10px;
}

/* Footer: no visible CMS link, cleaner structure and creator credit */
.site-footer {
    color: #eaf3ef;
    background: #14221e;
}

.footer-inner {
    grid-template-columns: 1.25fr 1fr .8fr .65fr;
    gap: 3rem;
    padding: 3.8rem 0 2.6rem;
}

.footer-logo {
    width: 210px;
    opacity: .98;
}

.footer-inner > div:first-child p {
    max-width: 290px;
    margin-top: .8rem;
    color: #b8c8c1;
}

.footer-contact {
    gap: .32rem;
    color: #d8e5df;
}

.footer-nav {
    gap: .5rem;
}

.footer-nav strong {
    margin-bottom: .35rem;
    color: #fff;
    font-size: .83rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.footer-nav a,
.footer-contact a {
    color: #b8dcd3;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-made a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 1.15rem 0 1.35rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #93a9a1;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .78rem;
}

.footer-made a {
    color: #bfded6;
}

.footer-heart {
    color: #cf7760;
}

@media (max-width: 1180px) and (min-width: 1101px) {
    .topbar {
        width: calc(100% - 28px);
    }
    .brand-logo {
        width: 190px;
    }
    .main-nav a {
        padding-inline: .45rem;
        font-size: .82rem;
    }
    .header-cta {
        padding-inline: .85rem;
        font-size: .86rem;
    }
    .apartment-grid,
    .apartment-grid.large {
        gap: .75rem;
    }
}

@media (max-width: 1100px) {
    .apartment-grid,
    .apartment-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-search-copy {
        display: block;
    }

    .booking-search-copy .eyebrow {
        margin-bottom: .35rem;
    }

    .booking-search-copy > p:last-child:not(.eyebrow) {
        margin-top: .35rem;
    }

    .intro-band .section-grid,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .highlight-list {
        max-width: 720px;
    }

    .detail-jumpnav {
        position: static;
    }

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

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 2rem;
    }
}

@media (max-width: 680px) {
    .topbar {
        min-height: 76px;
    }

    .brand-logo {
        width: 180px;
    }

    .main-nav.is-open {
        top: 76px;
    }

    .hero {
        min-height: 610px;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(251,250,246,.96) 0%, rgba(251,250,246,.9) 52%, rgba(251,250,246,.44) 82%, rgba(251,250,246,.18) 100%),
            linear-gradient(90deg, rgba(251,250,246,.91), rgba(251,250,246,.28));
    }

    .hero-content {
        padding: 2.7rem 0 6.2rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .quick-availability {
        width: calc(100% - 24px);
        margin-top: 12px;
    }

    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: 1fr;
        gap: .7rem;
        padding: 1.05rem;
        border-radius: 16px;
    }

    .booking-search-copy {
        padding-bottom: .75rem;
    }

    .booking-search .button {
        width: 100%;
    }

    .intro-band {
        padding: 4.2rem 0;
    }

    .intro-band .section-grid {
        width: calc(100% - 32px);
        gap: 2.2rem;
    }

    .intro-band h2 {
        font-size: 2.15rem;
    }

    .apartment-grid,
    .apartment-grid.large {
        grid-template-columns: 1fr;
    }

    .card-image {
        aspect-ratio: 4 / 3;
    }

    .detail-hero {
        min-height: 410px;
    }

    .detail-jumpnav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: .5rem;
        scrollbar-width: none;
    }

    .detail-jumpnav a {
        flex: 0 0 auto;
    }

    .detail-facts,
    .amenity-groups,
    .detail-aside,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .content-block h2 {
        font-size: 1.65rem;
    }

    .footer-inner {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        width: calc(100% - 32px);
        flex-direction: column;
    }
}

/* =========================================================
   Eleganter Seelust-inspirierter Feinschliff
   ========================================================= */
:root {
    --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-script: "Allura", "Segoe Script", "Brush Script MT", cursive;
    --ink: #12211d;
    --muted: #5e6f68;
    --paper: #fffdf8;
    --surface: #ffffff;
    --soft: #edf6f1;
    --cream: #fbf4e7;
    --line: #d9e4de;
    --sea: #0f7d73;
    --sea-dark: #0b544d;
    --coral: #b96348;
    --gold: #a87632;
    --radius: 26px;
    --shadow: 0 24px 70px rgba(18, 33, 29, .105);
}

body {
    background:
        radial-gradient(circle at 8% 0, rgba(237, 246, 241, .9), transparent 28rem),
        linear-gradient(180deg, #fffdf8 0, #fbfaf4 100%);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -.025em;
}

.keep-together {
    white-space: nowrap;
}

.brand-logo,
.footer-logo {
    display: none;
}

.brand,
.footer-brand {
    gap: .7rem;
    text-decoration: none;
}

.brand-signet {
    flex: 0 0 52px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
}

.brand-signet svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-signet-sand {
    fill: #fff5e5;
    stroke: #dce7e2;
    stroke-width: 1.7;
}

.brand-signet-line,
.brand-signet-soft,
.brand-signet-wave {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-signet-line {
    stroke: #0f7d73;
    stroke-width: 3.15;
}

.brand-signet-soft {
    stroke: #236681;
    stroke-width: 2.05;
    opacity: .58;
}

.brand-signet-wave {
    stroke: var(--gold);
    stroke-width: 3.05;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-name {
    color: #236681;
    font-family: var(--font-script);
    font-size: 2.55rem;
    font-weight: 400;
    line-height: .78;
    white-space: nowrap;
}

.brand-place {
    margin-top: .38rem;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.site-header {
    background: rgba(255, 253, 248, .92);
    border-bottom-color: rgba(217, 228, 222, .76);
    box-shadow: 0 8px 30px rgba(18, 33, 29, .045);
}

.topbar {
    min-height: 98px;
}

.main-nav a {
    font-size: .9rem;
}

.nav-submenu {
    border-radius: 24px;
}

.header-cta,
.button {
    border-radius: 999px;
}

.hero {
    min-height: 640px;
    height: 690px;
    background: #efe9dd;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(255,253,248,1) 0%, rgba(255,253,248,.98) 29%, rgba(255,253,248,.82) 45%, rgba(255,253,248,.24) 69%, rgba(255,253,248,.03) 100%),
        linear-gradient(180deg, rgba(18,33,29,.02), rgba(18,33,29,.14));
}

.hero-content {
    padding: 4.6rem 0 8.8rem;
}

.script-note {
    color: var(--gold);
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.05;
}

.hero .script-note {
    margin-bottom: .4rem;
    color: #9b6d2e;
    font-size: 2.25rem;
}

.section-script {
    margin-bottom: .2rem;
    font-size: 1.95rem;
}

.hero-content h1 {
    max-width: 660px;
    margin-bottom: 1rem;
    font-size: 4.35rem;
    line-height: .95;
}

.hero-content > p:not(.script-note):not(.eyebrow) {
    max-width: 575px;
    color: #374941;
    font-size: 1.08rem;
    line-height: 1.75;
}

.quick-availability {
    width: min(1180px, calc(100% - 56px));
    margin-top: -4.2rem;
}

.booking-search,
.booking-search-wide {
    grid-template-columns: minmax(250px, 1.32fr) minmax(160px, .86fr) minmax(160px, .86fr) minmax(110px, .55fr) minmax(110px, .55fr) minmax(190px, .82fr);
    padding: 1.55rem 1.7rem 1.65rem;
    background: rgba(255, 255, 255, .94);
    border-radius: 28px;
    box-shadow: 0 22px 68px rgba(18, 33, 29, .11);
}

.booking-search-inline {
    grid-template-columns: minmax(270px, 1.25fr) repeat(4, minmax(122px, .68fr)) minmax(186px, .78fr);
    padding: 1.5rem;
    border-radius: 28px;
}

.booking-search-copy h2 {
    font-size: 1.72rem;
}

.booking-search label {
    color: #17251f;
}

.booking-search input,
.booking-search select {
    min-height: 56px;
    border-radius: 18px;
}

input[type="date"] {
    cursor: pointer;
}

.section {
    padding: 6.4rem 0;
}

.intro-band {
    padding: 7rem 0 6.4rem;
    background:
        radial-gradient(circle at 82% 0, rgba(231, 245, 247, .7), transparent 28rem),
        linear-gradient(135deg, #fbf5e8 0%, #f1f7f3 57%, #eaf4f1 100%);
}

.intro-band h2,
.comfort-band h2,
.section-heading h2 {
    font-size: 3.05rem;
    line-height: .98;
}

.apartment-grid,
.apartment-grid.large {
    align-items: start;
}

.apartment-card {
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(18,33,29,.075);
}

.card-content {
    min-height: auto;
    padding: 1.3rem 1.25rem 1.35rem;
}

.facts-list.compact {
    margin: 1rem 0 1.05rem;
}

.apartment-card .card-actions {
    margin-top: .45rem;
}

.comfort-band {
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 12%, rgba(233, 245, 244, .9), transparent 24rem),
        linear-gradient(135deg, #fbf3e6, #eff7f2);
}

.comfort-grid article,
.idea-grid article,
.booking-info-grid article,
.tip-card,
.aside-box,
.booking-panel,
.secra-embed-card {
    border-radius: 24px;
}

.booking-actions-panel {
    background:
        radial-gradient(circle at 90% 0, rgba(255,255,255,.78), transparent 18rem),
        var(--soft);
    border-radius: 24px;
}

.secra-embed-card {
    padding: 1.45rem;
}

.secra-script-shell {
    min-height: 520px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.secra-frame {
    min-height: 940px;
    border-radius: 20px;
}

.secra-frame-booking {
    min-height: 980px;
}

.footer-brand {
    align-items: center;
}

.footer-brand .brand-name {
    color: #fff4df;
}

.footer-brand .brand-place {
    color: #aacbc2;
}

.footer-brand .brand-signet-sand {
    fill: rgba(255, 243, 223, .1);
    stroke: rgba(255, 255, 255, .18);
}

.footer-brand .brand-signet-line {
    stroke: #d8f1ec;
}

.footer-brand .brand-signet-soft {
    stroke: #8fc7bc;
    opacity: .72;
}

.footer-brand .brand-signet-wave {
    stroke: #efd49b;
}

@media (max-width: 1180px) and (min-width: 1101px) {
    .brand-signet {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .brand-name {
        font-size: 2.2rem;
    }

    .brand-place {
        letter-spacing: .22em;
    }
}

@media (max-width: 1100px) {
    .topbar {
        min-height: 88px;
    }

    .main-nav.is-open {
        top: 88px;
    }

    .hero-content h1 {
        font-size: 3.45rem;
    }

    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .brand-signet {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-name {
        font-size: 1.95rem;
    }

    .brand-place {
        font-size: .54rem;
        letter-spacing: .2em;
    }

    .main-nav.is-open {
        top: 76px;
    }

    .hero {
        min-height: 630px;
    }

    .hero-content h1 {
        font-size: 2.85rem;
    }

    .hero .script-note {
        font-size: 1.75rem;
    }

    .intro-band h2,
    .comfort-band h2,
    .section-heading h2 {
        font-size: 2.18rem;
    }
}

/* Screenshot-Feinschliff: ruhiger, kompakter, ohne überlaufende Formulare */
.booking-search-inline {
    grid-template-columns: minmax(250px, 1.25fr) repeat(4, minmax(118px, .75fr));
}

.booking-search-inline .button {
    grid-column: 1 / -1;
    justify-self: end;
    min-width: 190px;
}

.booking-panel,
.aside-box {
    overflow: hidden;
}

.weather-ideas {
    min-height: 0;
    padding: 3.1rem 3.4rem;
    align-items: center;
    gap: 2.4rem;
}

.weather-ideas h2 {
    max-width: 430px;
}

.location-band,
.booking-strip {
    width: min(var(--max), calc(100% - 40px));
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 3.1rem 3.4rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at 84% 12%, rgba(255,255,255,.6), transparent 22rem),
        linear-gradient(135deg, #fbf4e7 0%, #eef8f4 100%);
}

.location-band:last-of-type {
    margin-bottom: 4.5rem;
}

.booking-strip {
    margin-top: 2rem;
    margin-bottom: 5rem;
    gap: 2rem;
}

.booking-strip h2,
.location-band h2 {
    font-size: clamp(2.15rem, 4vw, 3.15rem);
    line-height: 1;
}

.booking-partner-note {
    margin-top: .9rem;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .booking-search-inline .button {
        justify-self: stretch;
    }

    .weather-ideas,
    .location-band,
    .booking-strip {
        padding: 2.45rem;
    }
}

@media (max-width: 680px) {
    .weather-ideas,
    .location-band,
    .booking-strip {
        width: min(var(--max), calc(100% - 28px));
        padding: 2rem 1.35rem;
        border-radius: 24px;
    }

    .booking-search-inline {
        grid-template-columns: 1fr;
    }

    .booking-search-inline .button {
        grid-column: auto;
    }
}

/* Feinschliff nach Screenshot-Runde: ruhiger, luftiger, ohne sichtbare Bruchstellen */
.hero-slide figcaption {
    right: max(28px, calc((100% - var(--max)) / 2));
    bottom: 8.55rem;
    z-index: 3;
}

.hero-dots {
    right: max(28px, calc((100% - var(--max)) / 2));
    bottom: 10.75rem;
    z-index: 4;
}

.quick-availability {
    width: min(1160px, calc(100% - 72px));
    margin-top: -3.2rem;
}

.booking-search,
.booking-search-wide {
    grid-template-columns: minmax(260px, 1.45fr) minmax(150px, .85fr) minmax(150px, .85fr) minmax(112px, .58fr) minmax(112px, .58fr) minmax(220px, .9fr);
}

.booking-search .button {
    min-width: 212px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    line-height: 1.1;
    white-space: nowrap;
}

.booking-search-inline {
    grid-template-columns: minmax(290px, 1.35fr) repeat(4, minmax(126px, .7fr)) minmax(220px, .82fr);
}

.booking-panel .booking-search-inline {
    grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(126px, .85fr));
}

.booking-search-inline .button {
    grid-column: auto;
    align-self: end;
    justify-self: stretch;
}

.booking-panel {
    padding: clamp(1.25rem, 2.2vw, 2rem);
}

.booking-summary {
    margin-bottom: .35rem;
}

.booking-actions-panel {
    margin-top: 1.2rem;
}

.secra-embed-card {
    margin-top: 1.2rem;
}

.secra-script-shell-booking {
    min-height: 760px;
}

.secra-frame-booking {
    min-height: 980px;
}

.detail-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: start;
}

.detail-gallery .gallery-button,
.detail-gallery .gallery-button.is-featured {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.detail-gallery .gallery-button img {
    height: 100%;
    object-fit: cover;
}

.detail-hero .eyebrow,
.image-hero .eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: .42rem .68rem;
    color: #fff4ea;
    background: rgba(8, 31, 28, .46);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .22);
    backdrop-filter: blur(8px);
}

.comfort-band {
    width: min(var(--max), calc(100% - 56px));
    overflow: hidden;
    padding: clamp(3.1rem, 4.8vw, 4.8rem);
}

.comfort-band .script-note {
    max-width: 100%;
    white-space: normal;
}

.area-story {
    grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
    gap: clamp(2.2rem, 5vw, 4.6rem);
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    align-items: center;
}

.area-story > div:first-child {
    max-width: 560px;
}

.location-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
}

.location-photo-grid img,
.location-photo-grid img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
}

.weather-ideas,
.location-band,
.booking-strip {
    max-width: calc(100% - 40px);
}

@media (max-width: 1260px) {
    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-search-copy {
        grid-column: 1 / -1;
    }

    .booking-search .button,
    .booking-search-inline .button {
        justify-self: start;
    }

    .hero-slide figcaption {
        display: none;
    }

    .hero-dots {
        bottom: 9.85rem;
    }
}

@media (max-width: 960px) {
    .quick-availability,
    .comfort-band {
        width: min(var(--max), calc(100% - 36px));
    }

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

    .area-story {
        grid-template-columns: 1fr;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .area-story > div:first-child {
        max-width: 720px;
    }

    .location-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .hero-dots {
        right: 20px;
        bottom: 8.25rem;
    }

    .quick-availability {
        width: min(var(--max), calc(100% - 28px));
        margin-top: -2.45rem;
    }

    .booking-search,
    .booking-search-wide,
    .booking-search-inline {
        grid-template-columns: 1fr;
    }

    .booking-search .button,
    .booking-search-inline .button {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .detail-gallery,
    .location-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Header contact and static hero description */
.header-contact {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-left: auto;
}

.header-contact a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: .45rem;
    padding: .48rem .68rem;
    color: #236681;
    background: rgba(255, 255, 255, .64);
    border: 1px solid rgba(217, 226, 220, .92);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.header-contact a:hover {
    color: var(--sea-dark);
    border-color: rgba(15, 125, 115, .32);
    background: rgba(238, 246, 242, .9);
}

.header-contact-icon {
    display: grid;
    width: 1.85rem;
    height: 1.85rem;
    place-items: center;
    color: var(--sea);
    background: rgba(237, 246, 241, .96);
    border-radius: 50%;
}

.header-contact-icon svg {
    width: 1.02rem;
    height: 1.02rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.main-nav {
    margin-left: 0;
}

.main-nav a.nav-booking-button {
    margin-left: .35rem;
    padding: .72rem 1.05rem;
    color: #fff;
    background: var(--sea);
    box-shadow: 0 10px 24px rgba(15, 118, 110, .18);
}

.main-nav a.nav-booking-button:hover,
.main-nav a.nav-booking-button.is-active {
    color: #fff;
    background: var(--sea-dark);
}

.hero-aside {
    position: absolute;
    right: max(28px, calc((100% - var(--max)) / 2));
    bottom: clamp(11.2rem, 13vh, 13rem);
    z-index: 4;
    display: grid;
    width: min(430px, calc(100% - 56px));
    justify-items: end;
    gap: .85rem;
    color: #fff;
    text-align: right;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.hero .hero-slide figcaption {
    right: auto;
    left: max(28px, calc((100% - var(--max)) / 2));
    bottom: 1.35rem;
}

.hero-aside .hero-dots {
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
    justify-content: flex-end;
}

.hero-description {
    display: grid;
    max-width: 100%;
    gap: .38rem;
}

.hero-description p {
    max-width: none;
    margin: 0;
    color: inherit;
    font-size: 1.01rem;
    font-weight: 650;
    line-height: 1.55;
}

.hero-description .hero-support {
    color: rgba(255, 255, 255, .92);
    font-size: .94rem;
    font-weight: 540;
}

.hero-dot {
    transition: width 280ms cubic-bezier(.2, .8, .2, 1), background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-dot.is-active {
    width: 2.1rem;
}

.hero-dot.is-activating {
    animation: hero-dot-activate 360ms cubic-bezier(.2, .8, .2, 1);
}

@keyframes hero-dot-activate {
    0% {
        width: .7rem;
        transform: scale(1);
    }
    70% {
        width: 2.32rem;
        transform: scale(1.04);
    }
    100% {
        width: 2.1rem;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-dot,
    .hero-dot.is-activating {
        animation: none;
        transition: none;
    }
}

@media (max-width: 1260px) and (min-width: 1101px) {
    .header-contact a {
        padding: .48rem;
    }

    .header-contact a span:not(.header-contact-icon) {
        display: none;
    }

    .hero-aside {
        bottom: 11.4rem;
    }
}

@media (max-width: 1100px) {
    .header-contact {
        display: none;
    }
}

@media (max-width: 760px) {
    .hero-aside {
        right: 20px;
        bottom: 11.2rem;
        width: min(360px, calc(100% - 40px));
    }

    .hero-description p {
        font-size: .94rem;
        line-height: 1.45;
    }

    .hero-description .hero-support {
        display: none;
    }
}

@media (max-width: 760px) {
    .area-story {
        overflow: hidden;
    }

    .location-photo-grid {
        display: flex;
        grid-template-columns: none;
        gap: .85rem;
        width: 100%;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: .1rem .1rem .8rem;
        scroll-padding-inline: .1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .location-photo-grid img,
    .location-photo-grid img:first-child {
        flex: 0 0 min(82vw, 360px);
        width: min(82vw, 360px);
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .location-photo-grid::-webkit-scrollbar {
        height: 4px;
    }

    .location-photo-grid::-webkit-scrollbar-thumb {
        background: rgba(15, 118, 110, .32);
        border-radius: 999px;
    }
}

@media (max-width: 760px) {
    .booking-context-panel,
    .booking-context-list {
        grid-template-columns: 1fr;
    }

    .booking-context-image {
        min-height: 190px;
        aspect-ratio: 4 / 3;
    }

    .secra-frame,
    .secra-frame-booking {
        min-height: 1080px;
    }
}

body.booking-modal-open {
    overflow: hidden;
}

.booking-launch-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.55rem 1.7rem;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 22px 68px rgba(18, 33, 29, .11);
    backdrop-filter: blur(18px);
}

.booking-launch-panel-wide {
    grid-template-columns: minmax(0, 1fr) auto;
}

.booking-launch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .8rem;
}

.booking-launch-actions .button {
    white-space: nowrap;
}

.booking-modal[hidden],
.booking-modal-loader[hidden],
.booking-modal-confirm[hidden] {
    display: none;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: clamp(.75rem, 2vw, 1.7rem);
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 35, 31, .56);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity 220ms ease;
}

.booking-modal-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(1180px, 100%);
    height: min(92vh, 980px);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(216, 229, 223, .95);
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(4, 18, 15, .28);
    opacity: 0;
    transform: translateY(18px) scale(.985);
    transition: opacity 220ms ease, transform 220ms ease;
}

.booking-modal.is-open .booking-modal-backdrop,
.booking-modal.is-open .booking-modal-dialog {
    opacity: 1;
}

.booking-modal.is-open .booking-modal-dialog {
    transform: translateY(0) scale(1);
}

.booking-modal-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.25rem 1rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 0 0, rgba(237, 246, 241, .9), transparent 18rem),
        #fff;
}

.booking-modal-heading h2 {
    margin: .15rem 0 .25rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.02;
}

.booking-modal-heading p:last-child {
    max-width: 46rem;
    margin: 0;
}

.booking-modal-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.booking-modal-select-label {
    display: grid;
    gap: .35rem;
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.booking-modal-select-label select {
    min-width: min(280px, 48vw);
    min-height: 44px;
    padding: .55rem 2.2rem .55rem .8rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: .98rem;
    font-weight: 760;
    text-transform: none;
    letter-spacing: 0;
}

.booking-modal.is-choosing .booking-modal-select-label {
    display: none;
}

.booking-modal-close {
    display: grid;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.booking-modal-close:hover {
    color: #fff;
    background: var(--sea);
    border-color: var(--sea);
}

.booking-modal-start {
    min-height: 0;
    overflow: auto;
    padding: clamp(1.1rem, 3vw, 2rem);
    background:
        radial-gradient(circle at 12% 0, rgba(237, 246, 241, .96), transparent 22rem),
        #fff;
}

.booking-modal-start-copy {
    max-width: 680px;
    margin-bottom: 1.3rem;
}

.booking-modal-start-copy h3 {
    margin: .1rem 0 .45rem;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.05;
}

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

.booking-choice-card {
    display: grid;
    grid-template-columns: minmax(110px, .38fr) minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    width: 100%;
    min-height: 132px;
    padding: .85rem;
    color: var(--ink);
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 36px rgba(18, 33, 29, .075);
    cursor: pointer;
}

.booking-choice-card:hover,
.booking-choice-card:focus-visible {
    border-color: rgba(15, 118, 110, .38);
    box-shadow: 0 18px 44px rgba(15, 118, 110, .14);
    outline: none;
    transform: translateY(-1px);
}

.booking-choice-card img {
    width: 100%;
    height: 100%;
    min-height: 104px;
    object-fit: cover;
    border-radius: 16px;
}

.booking-choice-card span {
    display: grid;
    gap: .25rem;
}

.booking-choice-card strong {
    font-size: 1.16rem;
    line-height: 1.15;
}

.booking-choice-card small {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.35;
}

.booking-choice-card em {
    align-self: center;
    padding: .68rem .95rem;
    color: #fff;
    background: var(--sea);
    border-radius: 999px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.booking-modal-frame-wrap {
    position: relative;
    min-height: 0;
    background: #fff;
}

.booking-modal-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    background: #fff;
}

.booking-modal-frame-wrap.is-loading iframe {
    visibility: hidden;
}

.booking-modal-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .65rem;
    padding: 2rem;
    color: var(--ink);
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(237, 246, 241, .94), transparent 20rem),
        #fff;
}

.booking-modal-loader > strong {
    font-size: 1.25rem;
}

.booking-modal-loader > span {
    color: var(--muted);
}

.booking-modal-loader-graphic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 3.2rem);
    gap: .9rem;
    margin-bottom: .45rem;
}

.booking-modal-loader-graphic::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    left: 1.5rem;
    height: 2px;
    background: #d8e5df;
    transform: translateY(-50%);
}

.booking-modal-loader-graphic span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    background: #f6fbf8;
    border: 2px solid #d8e5df;
    border-radius: 16px;
}

.booking-loader-icon svg {
    width: 2.05rem;
    height: 2.05rem;
    fill: none;
    stroke: var(--sea);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.booking-loader-sun svg {
    animation: booking-sun-glow 1.8s ease-in-out infinite;
}

.booking-loader-wave svg {
    animation: booking-wave-drift 1.8s ease-in-out infinite;
}

.booking-loader-bag svg {
    animation: booking-modal-step 1.8s ease-in-out infinite;
}

.booking-modal-confirm {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(16, 35, 31, .34);
    backdrop-filter: blur(3px);
}

.booking-modal-confirm-box {
    width: min(420px, 100%);
    padding: 1.4rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(16, 35, 31, .24);
}

.booking-modal-confirm-box h3 {
    margin: 0 0 .55rem;
    font-size: 1.55rem;
    line-height: 1.1;
}

.booking-modal-confirm-box p {
    margin: 0 0 1.05rem;
}

.booking-modal-confirm-box .button-row {
    justify-content: center;
    margin-top: .85rem;
}

@keyframes booking-modal-step {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes booking-sun-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: .84;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes booking-wave-drift {
    0%,
    100% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-modal-backdrop,
    .booking-modal-dialog,
    .booking-loader-icon svg {
        animation: none;
        transition: none;
    }
}

@media (max-width: 860px) {
    .booking-launch-panel,
    .booking-launch-panel-wide {
        grid-template-columns: 1fr;
    }

    .booking-launch-actions {
        justify-content: flex-start;
    }

    .booking-modal {
        padding: .65rem;
    }

    .booking-modal-dialog {
        height: calc(100dvh - 1.3rem);
        border-radius: 20px;
    }

    .booking-modal-header {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .booking-modal-actions {
        align-items: end;
        justify-content: space-between;
    }

    .booking-modal-select-label {
        flex: 1 1 auto;
    }

    .booking-modal-select-label select {
        width: 100%;
        min-width: 0;
    }

    .booking-modal.is-choosing .booking-modal-header {
        position: relative;
    }

    .booking-modal.is-choosing .booking-modal-heading {
        padding-right: 3.35rem;
    }

    .booking-modal.is-choosing .booking-modal-actions {
        position: absolute;
        top: .9rem;
        right: .9rem;
        display: block;
    }

    .booking-choice-grid {
        grid-template-columns: 1fr;
    }

    .booking-choice-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .booking-choice-card em {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 520px) {
    .booking-launch-actions,
    .booking-launch-actions .button {
        width: 100%;
    }

    .booking-modal-heading h2 {
        font-size: 1.5rem;
    }

    .booking-modal-heading p:last-child {
        font-size: .95rem;
    }

    .booking-choice-card {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: .75rem;
        min-height: 112px;
        padding: .72rem;
    }

    .booking-choice-card img {
        min-height: 82px;
    }

    .booking-choice-card em {
        width: 100%;
        text-align: center;
    }
}
