:root {
    --red-950: #45090f;
    --red-900: #5f0d16;
    --red-800: #7d1621;
    --red-700: #991b27;
    --red-600: #b72231;
    --red-500: #d73b49;
    --blush: #fff4f5;
    --cream: #fffaf7;
    --white: #ffffff;
    --ink: #221417;
    --muted: #6c4a50;
    --line: rgba(124, 22, 33, 0.14);
    --gold: #d8aa61;
    --green-700: #2f8f4d;
    --green-100: #e9f8ee;
    --gray-500: #b6adb0;
    --gray-100: #f0eaec;
    --shadow-xl: 0 30px 80px rgba(69, 9, 15, 0.16);
    --shadow-lg: 0 18px 44px rgba(88, 12, 20, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(215, 59, 73, 0.22), transparent 25rem),
        radial-gradient(circle at top right, rgba(216, 170, 97, 0.16), transparent 22rem),
        linear-gradient(180deg, #fffdfc 0%, #fff4f3 45%, #fffaf7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 35%),
        repeating-linear-gradient(
            90deg,
            rgba(183, 34, 49, 0.025) 0,
            rgba(183, 34, 49, 0.025) 1px,
            transparent 1px,
            transparent 90px
        );
    opacity: 0.65;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 4vw;
    background: rgba(255, 250, 247, 0.88);
    backdrop-filter: blur(18px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 52px;
    height: 52px;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 22, 33, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(95, 13, 22, 0.08);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--red-900);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark:hover .brand-logo {
    transform: translateY(-1px);
}

.brand-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.45rem;
    box-shadow: 0 14px 26px rgba(95, 13, 22, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand-kicker,
.eyebrow {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--red-600);
    font-weight: 700;
}

.brand-mark h1 {
    margin: 0;
    font-size: 1.28rem;
    font-family: Georgia, "Times New Roman", serif;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-nav a {
    position: relative;
    font-weight: 700;
    color: var(--red-900);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.38rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), var(--red-500));
    transition: transform 180ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(124, 22, 33, 0.12);
}

.language-switch a {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--red-800);
}

.language-switch a.is-active {
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    color: var(--white);
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(124, 22, 33, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: var(--red-800);
    box-shadow: 0 10px 22px rgba(95, 13, 22, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    color: var(--white);
    box-shadow: 0 16px 28px rgba(95, 13, 22, 0.16);
}

.social-links svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links svg path,
.social-links svg rect,
.social-links svg circle {
    vector-effect: non-scaling-stroke;
}

.social-links .social-dot {
    fill: currentColor;
    stroke: none;
}

main {
    padding: 0 4vw 4rem;
}

.showcase {
    position: relative;
    min-height: calc(100vh - 90px);
    margin-bottom: 1.8rem;
    border-radius: 0 0 38px 38px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(69, 9, 15, 0.18) 0%, rgba(69, 9, 15, 0.58) 68%, rgba(69, 9, 15, 0.78) 100%),
        linear-gradient(90deg, rgba(69, 9, 15, 0.5), transparent 45%);
    pointer-events: none;
}

.showcase-slides {
    position: absolute;
    inset: 0;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 700ms ease;
}

.showcase-slide.is-active {
    opacity: 1;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.showcase-caption {
    position: absolute;
    left: 4vw;
    right: 4vw;
    bottom: 6rem;
    z-index: 1;
    max-width: 44rem;
    color: var(--white);
}

.showcase-caption .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.showcase-caption h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: 0.98;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.showcase-indicators {
    position: absolute;
    left: 4vw;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    gap: 0.65rem;
}

.showcase-indicators span {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 180ms ease, transform 180ms ease;
}

.showcase-indicators span.is-active {
    background: var(--white);
    transform: scaleX(1.08);
}

.showcase-scroll {
    position: absolute;
    right: 4vw;
    bottom: 2rem;
    z-index: 2;
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 700;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.78fr);
    gap: 1.4rem;
    align-items: stretch;
    margin-bottom: 1.8rem;
}

.hero-copy,
.hero-panel,
.content-section,
.gallery-card,
.booking-form-card,
.contact-card,
.info-card,
.theme-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.hero-copy::before,
.booking-form-card::before,
.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(215, 59, 73, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 32%);
}

.hero-copy {
    padding: 2.7rem;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 245, 0.98));
}

.hero-copy h2 {
    margin: 0 0 1rem;
    max-width: 12ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.98;
    color: var(--red-950);
}

.hero-text {
    max-width: 52rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.98rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    color: var(--white);
    box-shadow: 0 16px 30px rgba(95, 13, 22, 0.24);
}

.button.ghost {
    background: rgba(255, 255, 255, 0.92);
    color: var(--red-900);
    border: 1px solid rgba(124, 22, 33, 0.12);
}

.hero-panel {
    padding: 2rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
        linear-gradient(180deg, var(--red-800), var(--red-950));
    color: var(--white);
    min-height: 100%;
}

.hero-panel::after {
    content: "";
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.hero-panel-title {
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel ul {
    margin: 0 0 1.4rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.hero-panel-time {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.content-section {
    padding: 2.1rem;
    border-radius: 34px;
    margin-bottom: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98));
}

.content-section h3 {
    margin: 0 0 1rem;
    max-width: 16ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--red-950);
}

.content-section p {
    color: var(--muted);
    line-height: 1.78;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.3rem;
}

.info-card,
.booking-form-card {
    border-radius: 30px;
    padding: 1.6rem;
    background: linear-gradient(180deg, #fffefe, #fff6f6);
}

.complex-image-card {
    align-self: start;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.complex-image-card img {
    width: 100%;
    height: auto;
}

.info-card ul,
.booking-notes {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

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

.theme-card,
.contact-card {
    border-radius: 26px;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 243, 0.98));
}

.theme-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-500), var(--gold));
}

.theme-card h4,
.contact-card h4 {
    margin: 0 0 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    color: var(--red-900);
}

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

.booking-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 1.25rem;
}

.booking-copy {
    padding-right: 0.5rem;
}

.booking-cta-card {
    margin-top: 1.3rem;
    padding: 1.1rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(124, 22, 33, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 245, 0.96));
}

.booking-cta-card p {
    margin: 0 0 0.9rem;
}

.booking-contact-button {
    width: auto;
}

.message {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.message.success {
    background: #e8f6ee;
    color: #134d33;
    border: 2px solid rgba(19, 77, 51, 0.16);
}

.message.error {
    background: #fde8ea;
    color: #831f2c;
}

.message.info {
    background: #fff6d9;
    color: #856404;
    border: 2px solid rgba(133, 100, 4, 0.18);
}

.privacy-modal {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 1.2rem;
    width: min(100% - 2rem, 980px);
    display: block;
    padding: 0;
    background: transparent;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 24px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.privacy-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.privacy-modal-card {
    width: 100%;
    padding: 1.35rem 1.5rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 246, 0.98));
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(88, 12, 20, 0.2);
}

.privacy-modal-card h2 {
    margin: 0 0 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--red-950);
}

.privacy-modal-card p {
    margin: 0 0 0.6rem;
    color: var(--muted);
    line-height: 1.6;
}

.privacy-modal .privacy-accept {
    margin-top: 0.55rem;
}

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

.booking-form label {
    display: grid;
    gap: 0.45rem;
    align-content: start;
    align-self: start;
}

.booking-form span {
    font-weight: 700;
    color: var(--red-900);
}

.booking-form input,
.booking-form select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.92rem 0.98rem;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(124, 22, 33, 0.16);
    background: #fffefe;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red-500);
    box-shadow: 0 0 0 4px rgba(215, 59, 73, 0.12);
}

.booking-form select {
    height: auto;
    max-height: 54px;
    line-height: 1.2;
}

.consent-row {
    margin-top: 0.2rem;
}

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(124, 22, 33, 0.14);
    background: rgba(255, 255, 255, 0.9);
}

.consent-box input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 0.18rem;
    accent-color: var(--red-700);
}

.consent-box span {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
}

.booking-calendar {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(124, 22, 33, 0.12);
    border-radius: 20px;
    background: #fffdfd;
}

.booking-calendar-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.calendar-nav {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
}

.calendar-month-label {
    text-align: center;
    font-weight: 800;
    color: var(--red-900);
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
}

.calendar-day {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    font: inherit;
    font-weight: 700;
}

.calendar-day.is-bookable {
    background: var(--green-100);
    color: var(--green-700);
    cursor: pointer;
}

.calendar-day.is-disabled,
.calendar-day.is-outside {
    background: var(--gray-100);
    color: var(--gray-500);
}

.calendar-day.is-selected {
    outline: 3px solid var(--red-500);
    outline-offset: -3px;
}

.calendar-day.is-today {
    box-shadow: inset 0 0 0 2px rgba(69, 9, 15, 0.2);
}

.calendar-selection {
    margin: 0;
    font-size: 0.92rem;
    color: var(--red-900);
    font-weight: 700;
}

.calendar-hint {
    display: block;
    margin-top: 0.55rem;
    color: var(--muted);
}

.booking-payment-note {
    display: none;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(183, 34, 49, 0.16);
    background: rgba(255, 244, 231, 0.96);
    color: var(--red-900);
    font-weight: 700;
    line-height: 1.6;
}

.booking-payment-note.is-visible {
    display: block;
}

.full-width {
    grid-column: 1 / -1;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.form-submit-area {
    display: grid;
    justify-items: end;
    gap: 0.7rem;
}

.form-hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.form-feedback {
    width: min(100%, 420px);
    margin: 0;
    box-shadow: 0 12px 24px rgba(95, 13, 22, 0.08);
}

.form-feedback.is-visible,
.message.success.form-feedback {
    animation: bookingPulse 1.1s ease;
}

.booking-submit-button:disabled {
    opacity: 0.78;
    cursor: wait;
    transform: none;
}

.booking-submit-button.is-loading {
    position: relative;
    padding-left: 3.1rem;
}

.booking-submit-button.is-loading::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    animation: bookingSpin 0.85s linear infinite;
}

.booking-pending-feedback {
    text-align: left;
}

@keyframes bookingPulse {
    0% {
        transform: scale(0.98);
        opacity: 0.7;
    }
    60% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bookingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.contact-section-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 1.2rem;
    align-items: start;
}

.contact-form-card {
    border-radius: 30px;
    padding: 1.6rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffefe, #fff6f6);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h4 {
    margin: 0 0 0.7rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    color: var(--red-950);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form span {
    font-weight: 700;
    color: var(--red-900);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

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

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.7rem 4vw 2.7rem;
    color: var(--muted);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
}

.footer-brand p {
    margin: 0;
}

.footer-logo {
    width: 92px;
    height: auto;
    object-fit: contain;
}

.site-footer a {
    font-weight: 700;
    color: var(--red-800);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.news-card-public {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 245, 0.98));
    box-shadow: var(--shadow-lg);
}

.news-card-public img {
    width: 220px;
    max-width: 220px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 1.2rem 0 1.2rem 1.2rem;
    border-radius: 20px;
}

.news-card-body {
    display: grid;
    gap: 0.85rem;
    padding: 1.35rem;
    align-content: center;
}

.news-card-body .button {
    justify-self: start;
    width: auto;
    min-width: 0;
}

.news-card-body h4 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--red-950);
}

.news-card-body p {
    margin: 0;
}

.internal-page-main {
    padding: 0 4vw 4rem;
}

.internal-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 1.3rem;
    align-items: stretch;
    margin: 2rem 0 1.5rem;
}

.internal-page-copy,
.internal-page-media {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.98));
    box-shadow: var(--shadow-lg);
}

.internal-page-copy {
    padding: 2.2rem;
}

.internal-page-copy h2 {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: var(--red-950);
}

.internal-page-copy p,
.internal-rich-text p {
    color: var(--muted);
    line-height: 1.85;
}

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

.internal-rich-text {
    display: grid;
    gap: 0.35rem;
}

.internal-area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 1100px) {
    .hero,
    .split,
    .booking-section,
    .contact-section-layout,
    .internal-page-hero {
        grid-template-columns: 1fr;
    }

    .theme-grid,
    .contact-grid,
    .news-grid,
    .internal-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .site-header,
    .site-footer,
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        position: static;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .header-tools {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .header-tools.is-open {
        display: flex;
    }

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

    .social-links-header,
    .social-links-footer,
    .footer-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .booking-form,
    .contact-form,
    .theme-grid,
    .contact-grid,
    .internal-area-grid {
        grid-template-columns: 1fr;
    }

    .news-card-public {
        grid-template-columns: 1fr;
    }

    .news-card-public img {
        margin: 1.2rem auto 0;
    }

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

    .form-submit-area {
        width: 100%;
        justify-items: stretch;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    main {
        padding: 0 1rem 3rem;
    }

    .hero-copy,
    .content-section,
    .hero-panel,
    .booking-form-card,
    .info-card {
        padding: 1.5rem;
    }

    .showcase {
        min-height: 78vh;
        border-radius: 0 0 28px 28px;
    }

    .showcase-caption {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 5.4rem;
    }

    .showcase-indicators {
        left: 1.2rem;
        bottom: 1.4rem;
    }

    .showcase-scroll {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 3rem;
        text-align: center;
    }

    .privacy-modal {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
        transform: translate(0, 24px);
    }

    .privacy-modal.is-visible {
        transform: translate(0, 0);
    }

    .hero-copy h2,
    .content-section h3 {
        max-width: none;
    }
}
