:root {
    --bg: #fbf8f2;
    --bg-soft: #ffffff;
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: rgba(255, 255, 255, 0.96);
    --text: #173140;
    --muted: #607783;
    --accent: #17658b;
    --accent-soft: #4a92b5;
    --warm: #ce7f5a;
    --warm-soft: #f1d8bd;
    --line: rgba(24, 37, 49, 0.1);
    --success: #2e7d5c;
    --shadow: 0 24px 60px rgba(17, 36, 53, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shell-width: 1240px;
    --font-body: "Noto Sans", "Avenir Next", "Segoe UI", sans-serif;
    --font-heading: "Noto Serif Display", Georgia, serif;
    --hero-title-size: clamp(3.5rem, 7vw, 6rem);
    --section-title-size: clamp(2.4rem, 4vw, 3.6rem);
    --panel-title-size: clamp(2rem, 3vw, 2.8rem);
    --brand-size: 2rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(74, 146, 181, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(206, 127, 90, 0.1), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #f9f5ee 100%);
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(90deg, rgba(13, 82, 117, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(13, 82, 117, 0.05) 1px, transparent 1px);
    background-size: 140px 140px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-shell {
    width: min(calc(100% - 32px), var(--shell-width));
    margin: 0 auto;
    padding: 22px 0 64px;
}

.header-frame {
    position: relative;
    padding-inline: 112px;
    margin-bottom: 30px;
}

.topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
        ". brand language"
        "nav nav nav";
    align-items: start;
    gap: 14px;
    margin-top: 0;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(16, 34, 49, 0.06);
    position: sticky;
    top: 18px;
    z-index: 8;
}

.page-main {
    display: grid;
    gap: 30px;
}

.page-main .section {
    margin-top: 0;
}

.header-column {
    position: absolute;
    top: 8px;
    width: 108px;
    height: 196px;
    pointer-events: none;
    z-index: 4;
    transform: scale(0.76);
    transform-origin: top center;
}

.header-column-cap,
.header-column-shaft,
.header-column-base,
.header-column-crack {
    position: absolute;
}

.header-column-cap {
    top: 0;
    left: 0;
    width: 108px;
    height: 50px;
    border-radius: 18px 18px 12px 12px;
    border: 1px solid rgba(126, 140, 145, 0.36);
    background:
        radial-gradient(circle at 18px 14px, rgba(255, 255, 255, 0.95) 0 4px, rgba(180, 175, 162, 0.86) 4px 9px, rgba(255, 255, 255, 0) 9px),
        radial-gradient(circle at 90px 14px, rgba(255, 255, 255, 0.95) 0 4px, rgba(180, 175, 162, 0.86) 4px 9px, rgba(255, 255, 255, 0) 9px),
        radial-gradient(circle at 16px 14px, rgba(255, 255, 255, 0) 0 11px, rgba(180, 175, 162, 0.78) 11px 16px, rgba(255, 255, 255, 0) 16px),
        radial-gradient(circle at 92px 14px, rgba(255, 255, 255, 0) 0 11px, rgba(180, 175, 162, 0.78) 11px 16px, rgba(255, 255, 255, 0) 16px),
        radial-gradient(circle at 50% 34px, rgba(201, 187, 169, 0.55) 0 11px, rgba(255, 255, 255, 0) 11px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 233, 224, 0.98));
    box-shadow:
        inset 0 -6px 0 rgba(187, 181, 168, 0.4),
        0 8px 14px rgba(23, 49, 64, 0.06);
}

.header-column-cap::before,
.header-column-cap::after {
    content: "";
    position: absolute;
    top: 2px;
    width: 30px;
    height: 24px;
    border-radius: 50%;
    border: 5px solid rgba(188, 182, 170, 0.86);
    border-bottom-color: transparent;
    background: transparent;
}

.header-column-cap::before {
    left: -8px;
    border-right-color: transparent;
    transform: rotate(-12deg);
}

.header-column-cap::after {
    right: -8px;
    border-left-color: transparent;
    transform: rotate(12deg);
}

.header-column-shaft {
    top: 46px;
    left: 28px;
    width: 52px;
    height: 104px;
    border-radius: 18px 18px 12px 12px;
    border: 1px solid rgba(140, 151, 154, 0.34);
    background:
        linear-gradient(102deg, rgba(196, 188, 176, 0) 0 14%, rgba(180, 203, 214, 0.46) 26%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 239, 235, 0.96) 50%, rgba(231, 228, 220, 0.92) 100%);
    box-shadow:
        inset 10px 0 0 rgba(255, 255, 255, 0.56),
        inset -10px 0 0 rgba(198, 198, 190, 0.26),
        0 10px 18px rgba(23, 49, 64, 0.05);
}

.header-column-shaft::before {
    content: "";
    position: absolute;
    inset: 6px 6px 6px 6px;
    border-radius: 14px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(209, 211, 208, 0.22) 0 3px,
            rgba(255, 255, 255, 0.7) 3px 10px,
            rgba(196, 198, 196, 0.16) 10px 13px
        );
    opacity: 0.95;
}

.header-column-shaft::after {
    content: "";
    position: absolute;
    inset: -8px -6px auto -6px;
    height: 12px;
    border-radius: 12px;
    border: 1px solid rgba(145, 156, 159, 0.26);
    background: linear-gradient(180deg, rgba(247, 243, 237, 0.98), rgba(228, 222, 214, 0.94));
}

.header-column-base {
    bottom: 0;
    left: 14px;
    width: 80px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(141, 148, 151, 0.36);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(225, 220, 211, 0.98));
    box-shadow: 0 12px 16px rgba(23, 49, 64, 0.06);
}

.header-column-base::before,
.header-column-base::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(141, 148, 151, 0.28);
    background: linear-gradient(180deg, rgba(248, 245, 239, 0.98), rgba(228, 223, 214, 0.96));
}

.header-column-base::before {
    top: -10px;
    width: 66px;
    height: 12px;
    border-radius: 6px;
}

.header-column-base::after {
    bottom: -8px;
    width: 92px;
    height: 10px;
    border-radius: 6px;
}

.header-column-crack {
    top: 52px;
    left: 47px;
    width: 2px;
    height: 88px;
    background:
        linear-gradient(
            180deg,
            transparent 0,
            rgba(151, 132, 120, 0.1) 10%,
            rgba(151, 132, 120, 0.5) 32%,
            rgba(151, 132, 120, 0.22) 52%,
            rgba(151, 132, 120, 0.58) 72%,
            transparent 100%
        );
    transform: rotate(11deg);
    box-shadow:
        6px 18px 0 -1px rgba(151, 132, 120, 0.3),
        -4px 46px 0 -1px rgba(151, 132, 120, 0.22);
}

.header-column-left {
    left: 0;
}

.header-column-right {
    right: 0;
}

.brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: max-content;
    align-items: center;
    justify-self: center;
    text-align: center;
}

.brand-mark {
    font-family: var(--font-heading);
    font-size: var(--brand-size);
    line-height: 1;
    letter-spacing: 0.03em;
}

.brand-sub {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    padding-top: 4px;
    font-size: 0.92rem;
    color: var(--muted);
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.main-nav a.is-active {
    background: rgba(23, 101, 139, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(23, 101, 139, 0.08);
    color: var(--accent);
}

.language-switcher {
    grid-area: language;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(13, 82, 117, 0.08);
}

.lang-button {
    border: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.lang-button.active {
    background: var(--accent);
    color: white;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 28px;
    padding: 34px;
    border-radius: calc(var(--radius-xl) + 8px);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 242, 0.96)),
        linear-gradient(180deg, rgba(74, 146, 181, 0.08), rgba(206, 127, 90, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -30px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(74, 146, 181, 0.12), transparent 68%),
        radial-gradient(circle at 30% 35%, rgba(206, 127, 90, 0.12), transparent 40%);
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.calendar-kicker,
.contact-label,
.media-label {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.hero-panel h2 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.hero h1 {
    max-width: 11ch;
    font-size: var(--hero-title-size);
}

.hero-lead,
.panel-text,
.section-intro,
.welcome-text,
.media-card p,
.contact-card p,
.side-card p,
.summary-text,
.rating-hint,
.gate-message,
.status-text {
    color: var(--muted);
    line-height: 1.7;
}

.hero-lead {
    max-width: 56ch;
    margin: 18px 0 0;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-button,
.secondary-button,
.calendar-nav,
.text-link,
.rating-button {
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: white;
    box-shadow: 0 16px 30px rgba(13, 82, 117, 0.2);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(13, 82, 117, 0.14);
    color: var(--text);
}

.primary-button:hover,
.secondary-button:hover,
.calendar-nav:hover,
.text-link:hover,
.rating-button:hover {
    transform: translateY(-2px);
}

.primary-button:disabled,
.calendar-nav:disabled,
.rating-button:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.stat-card,
.card {
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 40px rgba(15, 34, 49, 0.08);
}

.stat-card {
    padding: 18px;
}

.stat-card strong {
    display: block;
    font-size: 1.3rem;
}

.stat-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-panel {
    padding: 26px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.95)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 18px,
            rgba(23, 101, 139, 0.04) 18px,
            rgba(23, 101, 139, 0.04) 20px
        );
    border: 1px solid rgba(13, 82, 117, 0.1);
}

.hero-panel h2 {
    font-size: var(--panel-title-size);
    margin-bottom: 12px;
}

.hero-member-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.member-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(13, 82, 117, 0.08);
    color: var(--text);
    font-size: 0.92rem;
}

.member-pill strong {
    display: block;
    font-size: 0.95rem;
}

.member-pill span {
    color: var(--muted);
    font-size: 0.84rem;
}

.hero-meta {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.hero-meta .meta-label {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-meta a {
    color: var(--accent);
    font-weight: 700;
}

.hero-meta p {
    margin: 0;
    font-weight: 700;
}

.section {
    margin-top: 30px;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 34px rgba(17, 36, 53, 0.06);
}

.section-heading {
    display: grid;
    gap: 8px;
}

.section-heading h2 {
    font-size: var(--section-title-size);
}

.section-intro {
    max-width: 62ch;
    margin: 0;
}

.welcome-text {
    max-width: 78ch;
    margin: 12px 0 0;
    font-size: 1.04rem;
}

.members-grid,
.media-grid,
.contact-grid {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

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

.member-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
}

.member-card::before {
    content: "";
    position: absolute;
    inset: auto -50px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 111, 79, 0.12), transparent 70%);
}

.member-role {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.member-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.member-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.media-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
}

.media-card {
    min-height: 260px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.94));
    border: 1px solid rgba(13, 82, 117, 0.08);
    box-shadow: 0 14px 34px rgba(19, 35, 49, 0.08);
}

.media-feature {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(228, 242, 248, 0.98), rgba(246, 250, 252, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
    color: var(--text);
    border: 1px solid rgba(74, 146, 181, 0.14);
}

.media-feature::after {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 127, 90, 0.16), transparent 72%);
}

.media-feature p,
.media-feature h3 {
    position: relative;
    z-index: 1;
}

.media-feature .media-label {
    color: var(--accent);
}

.media-feature p {
    color: var(--muted);
}

.media-card h3,
.side-card h3,
.contact-card h3,
.review-form-card h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.media-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 40%, transparent 41%),
        linear-gradient(135deg, rgba(200, 111, 79, 0.92), rgba(255, 227, 192, 0.42));
    position: relative;
}

.media-icon::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 23px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid rgba(13, 82, 117, 0.82);
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.media-tile {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(13, 82, 117, 0.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 245, 238, 0.94));
    box-shadow: 0 14px 34px rgba(19, 35, 49, 0.08);
    text-align: left;
    cursor: zoom-in;
}

.media-tile-frame {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: #10212d;
}

.media-tile img,
.media-tile video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-tile video {
    pointer-events: none;
}

.media-tile.is-video .media-tile-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 22, 0.04), rgba(8, 16, 22, 0.28));
}

.media-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin-left: -36px;
    margin-top: -36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 28px rgba(10, 19, 29, 0.2);
}

.media-play-badge::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--accent);
}

.media-tile-meta {
    display: grid;
    gap: 6px;
}

.media-tile-meta strong {
    font-size: 1.1rem;
    line-height: 1.35;
}

.media-open-hint {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.media-lightbox[hidden] {
    display: none;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 22px;
}

.media-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 18, 24, 0.78);
}

.media-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 80px rgba(11, 23, 31, 0.3);
}

.media-lightbox-close {
    margin-left: auto;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(13, 82, 117, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-weight: 700;
}

.media-lightbox-stage {
    display: grid;
    place-items: center;
    min-height: min(70vh, 560px);
    max-height: calc(100vh - 140px);
    overflow: hidden;
    border-radius: 20px;
    background: #0d1821;
}

.media-lightbox-image,
.media-lightbox-video {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
}

.media-lightbox-video {
    width: 100%;
    background: #0d1821;
}

.media-lightbox-caption {
    margin: 14px 4px 2px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.booking-layout,
.reviews-layout {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.booking-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.booking-card,
.review-form-card,
.summary-card,
.side-card,
.contact-card {
    padding: 24px;
}

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

.compact-grid {
    margin-bottom: 8px;
}

.field {
    display: grid;
    gap: 8px;
}

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

.field span {
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(24, 37, 49, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    padding: 14px 16px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(13, 82, 117, 0.48);
    box-shadow: 0 0 0 4px rgba(13, 82, 117, 0.08);
    background: white;
}

.gate-message,
.status-text {
    min-height: 28px;
    margin: 12px 0 0;
}

.status-text.is-success,
.gate-message.is-ready {
    color: var(--success);
}

.status-text.is-error,
.gate-message.is-warning {
    color: var(--warm);
}

.calendar-shell {
    margin: 16px 0 18px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(13, 82, 117, 0.1);
}

.calendar-shell.is-locked {
    opacity: 0.72;
}

.calendar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.calendar-header h3 {
    margin: 0;
    font-size: 1.35rem;
}

.calendar-actions {
    display: inline-flex;
    gap: 8px;
}

.calendar-nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(13, 82, 117, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--accent);
    font-size: 1.1rem;
}

.weekday-row,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.weekday-row {
    margin-bottom: 8px;
}

.weekday-cell {
    padding: 6px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calendar-day {
    position: relative;
    min-height: 66px;
    padding: 12px 8px;
    border: 1px solid rgba(24, 37, 49, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    text-align: center;
    font-weight: 700;
}

.calendar-day.is-outside {
    color: rgba(91, 105, 113, 0.45);
    background: rgba(255, 255, 255, 0.54);
}

.calendar-day.is-today {
    border-color: rgba(200, 111, 79, 0.5);
}

.calendar-day.is-selected {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: white;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(13, 82, 117, 0.25);
}

.calendar-day.has-bookings::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 7px;
    height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: var(--warm);
}

.calendar-day:disabled {
    cursor: not-allowed;
}

.full-width {
    width: 100%;
    margin-top: 4px;
}

.booking-side {
    display: grid;
    gap: 18px;
}

.info-list {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.request-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.request-item {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(13, 82, 117, 0.09);
}

.request-item strong,
.review-card strong {
    display: block;
    font-size: 1rem;
}

.request-meta,
.review-meta {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 0.9rem;
}

.reviews-layout {
    grid-template-columns: minmax(260px, 0.5fr) minmax(0, 0.8fr) minmax(0, 1fr);
    align-items: start;
}

.summary-card {
    text-align: center;
}

.summary-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin: 14px 0 10px;
    color: var(--accent);
}

.rating-picker {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.rating-button {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(24, 37, 49, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: rgba(23, 49, 64, 0.24);
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 700;
}

.rating-button.active {
    background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.98));
    color: var(--warm);
    border-color: rgba(206, 127, 90, 0.22);
    box-shadow: 0 12px 22px rgba(206, 127, 90, 0.12);
}

.stars-display {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(23, 49, 64, 0.18);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.stars-display .filled {
    color: var(--warm);
}

.summary-stars {
    justify-content: center;
    margin-bottom: 10px;
}

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

.review-card {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 82, 117, 0.08);
    box-shadow: 0 14px 30px rgba(17, 36, 53, 0.06);
}

.review-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.empty-state {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.62);
    border: 1px dashed rgba(13, 82, 117, 0.18);
    color: var(--muted);
}

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

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--accent);
    font-weight: 700;
}

.site-footer {
    margin-top: 22px;
    padding: 18px 12px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.94rem;
}

@media (max-width: 1080px) {
    .header-frame {
        padding-inline: 0;
    }

    .topbar {
        border-radius: 28px;
    }

    .header-column {
        display: none;
    }

    .hero,
    .booking-layout,
    .reviews-layout,
    .media-grid,
    .members-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--shell-width));
        padding-top: 14px;
    }

    .topbar,
    .hero,
    .section {
        padding: 20px;
    }

    .topbar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .brand {
        align-items: flex-start;
        text-align: left;
        min-width: 0;
        justify-self: auto;
    }

    .language-switcher {
        align-self: flex-start;
        margin-left: 0;
    }

    .main-nav {
        width: 100%;
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-top: 0;
    }

    .main-nav a {
        text-align: center;
        padding: 12px 10px;
    }

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

    .media-lightbox {
        padding: 12px;
    }

    .media-lightbox-dialog {
        width: min(100%, calc(100vw - 20px));
        padding: 14px;
        border-radius: 20px;
    }

    .media-lightbox-stage {
        min-height: 44vh;
    }

    .hero-stats,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .weekday-cell {
        font-size: 0.72rem;
    }

    .calendar-day {
        min-height: 58px;
    }

    .rating-picker {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .main-nav {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 18px;
    }

    .calendar-shell {
        padding: 14px;
    }

    .calendar-grid,
    .weekday-row {
        gap: 6px;
    }

    .calendar-day {
        min-height: 54px;
        padding: 10px 4px;
        font-size: 0.92rem;
    }

    .rating-button {
        width: 48px;
        height: 48px;
    }

    .media-tile {
        padding: 14px;
    }

    .media-play-badge {
        width: 60px;
        height: 60px;
        margin-left: -30px;
        margin-top: -30px;
    }

    .media-play-badge::after {
        left: 24px;
        top: 18px;
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 18px;
    }
}
