@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
    src: url('/assets/fonts/jetbrainsmono-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
    src: url('/assets/fonts/jetbrainsmono-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
    --ink-1: #14181b;
    --ink-2: #2d3540;
    --ink-3: #5a6573;
    --ink-4: #8a93a0;
    --surface-1: #ffffff;
    --surface-2: #f6f7f8;
    --surface-3: #eef1f2;
    --line-1: #e6e8eb;
    --line-2: #eef0f2;
    --accent: #1f6f7a;
    --accent-soft: #e2efef;
    --accent-ink: #134048;
    --whatsapp: #25d366;
    --good: #1f7a43;
    --good-soft: #e4f1e9;
    --warn-soft: #fbf2dc;
    --warn: #5a3e08;
    --bad: #8a2626;
    --bad-soft: #f7e4e4;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --pill: 999px;
    --shadow-card:
        0 1px 2px rgba(20, 24, 27, 0.05), 0 8px 28px rgba(20, 24, 27, 0.08);
    --shadow-booking:
        0 1px 2px rgba(20, 24, 27, 0.05), 0 16px 40px rgba(20, 24, 27, 0.18),
        0 32px 80px rgba(20, 24, 27, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-1);
    background: var(--surface-1);
    font-family:
        Manrope,
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

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

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.narrow {
    width: min(800px, calc(100% - 48px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 24px;
    height: 66px;
    padding: 0 24px;
    background: var(--surface-1);
    border-bottom: 1px solid var(--line-1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: var(--accent);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand small {
    margin-top: 2px;
    color: var(--ink-3);
    font-size: 11px;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 31px;
}

.site-nav a,
.wa-link,
.mobile-nav a {
    text-decoration: none;
}

.site-nav a {
    color: var(--ink-1);
    font-size: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switch {
    display: inline-flex;
    gap: 3px;
    padding: 3px;
    border: 1px solid var(--line-1);
    border-radius: var(--pill);
    background: var(--surface-2);
}

.language-switch a {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 30px;
    padding: 0 9px;
    border-radius: var(--pill);
    color: var(--ink-3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.language-switch a:hover {
    color: var(--ink-1);
    background: var(--surface-1);
}

.language-switch a.active {
    color: #fff;
    background: var(--ink-1);
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-1);
    font-size: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-ink);
}

.btn-whatsapp {
    color: #04361b;
    background: var(--whatsapp);
}

.btn-sm {
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink-1);
    font-size: 13px;
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: var(--ink-1);
}

.hero-photo,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-photo {
    object-fit: cover;
    object-position: center 48%;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(20, 24, 27, 0.72) 0%,
            rgba(20, 24, 27, 0.48) 34%,
            rgba(20, 24, 27, 0.18) 68%,
            rgba(20, 24, 27, 0.1) 100%
        ),
        linear-gradient(180deg, rgba(20, 24, 27, 0.08), rgba(20, 24, 27, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    color: #fff;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 22px;
    padding: 0 18px;
    border-radius: var(--pill);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 19px;
    line-height: 1.45;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 700;
}

.hero-chips li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
}

.booking-wrap {
    position: relative;
    z-index: 3;
    min-height: 96px;
    margin-top: -90px;
}

.booking-widget {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 1.08fr 1.08fr 1.08fr auto auto;
    gap: 10px;
    align-items: end;
    width: min(1152px, calc(100% - 32px));
    min-height: 184px;
    margin: 0 auto;
    padding: 28px 20px 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-booking);
}

.booking-title {
    position: absolute;
    left: 20px;
    top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
}

.calendar-icon {
    width: 16px;
    height: 16px;
    border: 1.8px solid var(--ink-2);
    border-radius: 3px;
}

.night-pill {
    position: absolute;
    right: 14px;
    top: 22px;
    padding: 8px 13px;
    border-radius: var(--pill);
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
}

.booking-widget label {
    display: grid;
    gap: 8px;
    margin-top: 44px;
}

label span,
.booking-widget label > span {
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink-1);
}

textarea {
    min-height: auto;
    padding-top: 12px;
    resize: vertical;
}

.stepper {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    height: 48px;
    overflow: hidden;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-sm);
    background: #fff;
}

.stepper button,
.stepper input {
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.stepper button {
    color: var(--ink-3);
    cursor: pointer;
}

.booking-submit,
.booking-wa {
    min-width: 166px;
    margin-bottom: 0;
    white-space: nowrap;
}

.trust-row {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 1px;
    color: var(--ink-3);
    font-size: 13px;
}

.trust-row span::before {
    content: "○";
    margin-right: 7px;
    color: var(--accent);
}

.section {
    padding: 80px 0;
}

.section-tight {
    padding: 42px 0 40px;
}

.surface {
    background: var(--surface-2);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.benefit-grid article {
    min-height: 126px;
    padding: 18px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-lg);
    background: #fff;
}

.benefit-grid h3,
.offer-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.012em;
}

.benefit-grid p,
.section-copy,
.section-head > p:not(.eyebrow),
.offer-card li,
.price-note,
details p,
.contact-lines,
.footer-grid p {
    color: var(--ink-3);
}

.section-head {
    max-width: 680px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--accent-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.offer-card {
    overflow: hidden;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.offer-card > img {
    width: 100%;
    height: 214px;
    object-fit: cover;
}

.offer-mosaic {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 4px;
    height: 220px;
    overflow: hidden;
    background: var(--line-1);
}

.offer-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-mosaic .main {
    grid-row: span 2;
}

.offer-body {
    padding: 24px;
}

.meta {
    margin-bottom: 8px;
    color: var(--accent-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.offer-card ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 18px 0 22px;
    list-style: none;
}

.offer-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
}

.offer-body > p:not(.meta) {
    color: var(--ink-3);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--line-1);
    border-radius: var(--pill);
    background: var(--surface-2);
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 700;
}

.offer-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--accent-ink);
    font-weight: 800;
    text-decoration-color: rgba(31, 111, 122, 0.35);
}

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

.offer-foot span {
    font-weight: 800;
}

.offer-foot a {
    color: var(--accent-ink);
    font-weight: 800;
    text-decoration-color: rgba(31, 111, 122, 0.35);
}

.price-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

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

.price-table th,
.price-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-1);
    text-align: left;
    vertical-align: middle;
}

.price-table th {
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-table td strong,
.price-table td span {
    display: block;
}

.price-table td span {
    color: var(--ink-3);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.inquiry-row td {
    background: var(--accent-soft);
    color: var(--accent-ink);
}

.price-note {
    margin: 14px 0 0;
    font-size: 13px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.gallery-grid .span-2 {
    grid-column: span 2;
}

.gallery-tour {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.gallery-tour-tabs {
    display: grid;
    gap: 10px;
}

.gallery-tour-tab {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--ink-1);
    cursor: pointer;
    text-align: left;
}

.gallery-tour-tab[aria-selected="true"] {
    border-color: rgba(31, 111, 122, 0.45);
    background: var(--accent-soft);
}

.gallery-tour-tab strong,
.gallery-tour-tab span {
    display: block;
}

.gallery-tour-tab span {
    margin-top: 4px;
    color: var(--ink-3);
    font-size: 13px;
}

.gallery-tour-stage {
    display: none;
    position: relative;
}

.gallery-tour-stage.active {
    display: block;
}

.gallery-tour-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    inset: 50% 10px auto;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-50%);
}

.gallery-arrow {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-1);
    cursor: pointer;
    font-size: 20px;
    font-weight: 850;
    pointer-events: auto;
    box-shadow: var(--shadow-card);
}

.gallery-arrow:disabled {
    cursor: default;
    opacity: 0.38;
}

.gallery-tour-viewport {
    overflow: hidden;
}

.gallery-tour-track {
    display: grid;
    grid-auto-columns: calc((100% - 30px) / 4);
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 180px);
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-tour-track::-webkit-scrollbar {
    display: none;
}

.gallery-tour-stage figure {
    position: relative;
    scroll-snap-align: start;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--line-1);
}

.gallery-tour-stage figure:first-child {
    grid-column: auto;
    grid-row: auto;
}

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

.location-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.distance-grid div {
    padding: 14px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-md);
    background: #fff;
}

.distance-grid strong,
.distance-grid span {
    display: block;
}

.distance-grid span {
    margin-top: 4px;
    color: var(--ink-3);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
}

.map-embed {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-lg);
    background: #fff;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
}

.map-embed figcaption {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
}

.map-embed figcaption strong {
    color: var(--accent-ink);
    font-size: 18px;
}

.map-embed figcaption span {
    color: var(--ink-3);
    font-size: 14px;
}

.map-embed figcaption a {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
}

.process {
    background: var(--ink-1);
    color: #fff;
}

.process .eyebrow {
    color: #bfe5e2;
}

.process .section-head > p,
.process-grid p {
    color: rgba(255, 255, 255, 0.68);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.process-grid article {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
    display: block;
    margin-bottom: 28px;
    color: #bfe5e2;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
}

details {
    border-top: 1px solid var(--line-1);
    padding: 18px 0;
}

details:last-child {
    border-bottom: 1px solid var(--line-1);
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin: 12px 0 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
    align-items: start;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    font-weight: 700;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.checkbox {
    grid-template-columns: 18px 1fr !important;
    align-items: start;
    color: var(--ink-3);
}

.checkbox input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--accent);
}

.form-status {
    min-height: 20px;
    margin: 0;
    color: var(--good);
    font-weight: 800;
}

.site-footer {
    padding: 56px 0 40px;
    background: var(--ink-1);
    color: #d8dadd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr auto;
    gap: 32px;
}

.footer-grid strong,
.footer-grid span,
.footer-grid a {
    display: block;
}

.footer-grid span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-grid a {
    color: #fff;
    text-decoration: none;
}

.footer-grid nav {
    display: grid;
    gap: 10px;
}

.wa-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: var(--pill);
    background: var(--whatsapp);
    box-shadow:
        0 8px 22px rgba(37, 211, 102, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.08);
    color: #04361b;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: auto 1fr auto auto;
    }

    .site-nav,
    .header-cta,
    .wa-link {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border: 1px solid var(--line-1);
        border-radius: var(--radius-sm);
        background: #fff;
    }

    .menu-toggle span {
        display: block;
        width: 16px;
        height: 2px;
        background: var(--ink-1);
    }

    .mobile-nav.open {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        z-index: 45;
        display: grid;
        gap: 1px;
        padding: 12px 16px 16px;
        background: #fff;
        border-bottom: 1px solid var(--line-1);
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
    }

    .booking-widget {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-submit,
    .booking-wa {
        grid-column: span 2;
    }

    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .container,
    .narrow {
        width: calc(100% - 32px);
    }

    .site-header {
        grid-template-columns: auto 1fr auto auto;
        height: 61px;
        padding: 0 16px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .brand small {
        display: none;
    }

    .header-actions {
        justify-self: end;
        gap: 10px;
    }

    .language-switch {
        transform: scale(0.92);
        transform-origin: right center;
    }

    .hero {
        height: 276px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .hero-photo {
        object-position: center;
    }

    .hero-content {
        width: 100%;
        padding: 72px 20px 0;
    }

    .location-pill {
        min-height: 0;
        margin-bottom: 8px;
        padding: 0;
        background: transparent;
        font-size: 11px;
    }

    h1 {
        max-width: 360px;
        margin-bottom: 8px;
        font-size: 26px;
        line-height: 1.08;
    }

    .hero-lead {
        max-width: 310px;
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.42;
    }

    .hero-chips {
        display: none;
    }

    .booking-wrap {
        margin-top: 16px;
    }

    .booking-widget {
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 32px);
        min-height: auto;
        padding: 24px 16px 16px;
    }

    .booking-title {
        position: static;
        grid-column: 1 / -1;
    }

    .night-pill {
        top: 17px;
        right: 16px;
        background: #f7e8de;
        color: #6d2f0f;
    }

    .booking-widget label {
        margin-top: 0;
    }

    .booking-widget label:nth-of-type(3),
    .booking-widget label:nth-of-type(4),
    .booking-submit,
    .booking-wa,
    .trust-row {
        grid-column: 1 / -1;
    }

    .booking-submit,
    .booking-wa {
        width: 100%;
    }

    .trust-row {
        gap: 14px;
    }

    .section {
        padding: 56px 0;
    }

    .section-tight {
        padding: 28px 0 32px;
    }

    .benefit-grid,
    .offer-grid,
    .process-grid,
    .location-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .section-head h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table tr,
    .price-table th,
    .price-table td {
        display: block;
    }

    .price-table thead {
        display: none;
    }

    .price-table tr {
        padding: 14px;
        border-bottom: 1px solid var(--line-1);
    }

    .price-table td {
        padding: 8px 0;
        border: 0;
    }

    .inquiry-row td {
        background: transparent;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-grid .span-2 {
        grid-column: auto;
    }

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

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

    .gallery-tour-track {
        grid-auto-columns: calc((100% - 10px) / 2);
        grid-template-rows: repeat(2, 220px);
    }

    .gallery-tour-stage figure:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .distance-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full {
        grid-column: auto;
    }
}

@media (max-width: 540px) {
    .site-header {
        width: 100%;
        grid-template-columns: auto auto auto;
        justify-content: space-between;
        gap: 6px;
    }

    .brand {
        gap: 9px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .header-actions {
        gap: 6px;
    }

    .language-switch a {
        min-width: 27px;
        height: 28px;
        padding: 0 7px;
        font-size: 11px;
    }

    .header-actions::after {
        content: "Verfügbarkeit";
        color: var(--ink-1);
        font-size: 13px;
        white-space: nowrap;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
    }

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

    .booking-widget {
        overflow: hidden;
    }

    .night-pill {
        max-width: 76px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Live pricing chip (Preise section) */
.price-vat-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--pill);
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.01em;
}

/* Live availability result (booking widget) */
.booking-result:not([hidden]) {
    width: min(1152px, calc(100% - 32px));
    margin: 14px auto 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 16px;
    row-gap: 12px;
    padding: 16px 20px;
    border: 1px solid var(--line-1);
    border-radius: var(--radius-md);
    background: var(--surface-1);
    box-shadow: var(--shadow-card);
}

.booking-result--available:not([hidden]) {
    align-items: start;
}

.booking-result-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    background: var(--surface-3);
    color: var(--ink-3);
}

.booking-result--available .booking-result-icon {
    background: var(--good-soft);
    color: var(--good);
}

.booking-result--info .booking-result-icon {
    background: var(--warn-soft);
    color: var(--warn);
}

.booking-result--unavailable .booking-result-icon,
.booking-result--error .booking-result-icon {
    background: var(--bad-soft);
    color: var(--bad);
}

.booking-result-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.booking-result-headline {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink-1);
}

.booking-result-total {
    margin: 0;
    font-family: "JetBrains Mono", ui-monospace, monospace;
}

.booking-result-total strong {
    font-size: 26px;
    color: var(--accent-ink);
}

.booking-result-nights {
    margin: 0;
    color: var(--ink-3);
    font-size: 13px;
}

.booking-result-breakdown {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.booking-result-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line-2);
    font-size: 14px;
    color: var(--ink-2);
}

.booking-result-breakdown li span:last-child {
    font-family: "JetBrains Mono", ui-monospace, monospace;
}

.booking-result-disclaimer,
.booking-result-message {
    margin: 0;
    color: var(--ink-3);
    font-size: 13px;
    line-height: 1.5;
}

.booking-result-errors {
    margin: 0;
    padding-left: 18px;
    color: var(--warn);
    font-size: 13px;
}

.booking-result-cta {
    justify-self: end;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .booking-result:not([hidden]) {
        grid-template-columns: auto 1fr;
    }

    .booking-result-cta {
        grid-column: 1 / -1;
        justify-self: stretch;
    }
}

/* ============================================================
   Animated expand / collapse
   ============================================================ */

/* <details> accordions (FAQ) are animated in JS (site.js) so the
   open/close height transition works across all browsers — Safari
   and Firefox do not support interpolate-size / ::details-content.
   site.js adds .js-details-anim while a panel animates; we clip the
   overflow only then so the height tween reads cleanly. */
.js-details-anim {
    overflow: hidden;
}

/* Mobile nav dropdown reveal */
.mobile-nav.open {
    transform-origin: top;
    animation: nav-reveal 0.2s ease;
}

@keyframes nav-reveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav.open {
        animation: none;
    }
}
