:root {
    --white: #fffdf9;
    --paper: #f7f2e9;
    --sand: #e6d5bd;
    --wood: #9a714f;
    --ink: #252525;
    --muted: #6d6a64;
    --line: #ddd4c6;
    --blue: #173047;
    --green: #31523d;
    --shadow: 0 22px 70px rgba(28, 24, 20, 0.12);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 clamp(20px, 4vw, 54px) 14px;
    color: var(--white);
    transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.language-switch {
    position: absolute;
    top: 6px;
    right: clamp(18px, 2vw, 30px);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 249, 0.94);
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
    padding-top: 0;
    padding-bottom: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 246px;
    min-width: 246px;
    text-decoration: none;
}

.brand-logo {
    width: 100%;
    height: auto;
    transition: opacity 180ms ease;
}

.brand-logo-dark {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
    opacity: 1;
}

.site-header.legal-header {
    position: relative;
    background: rgba(255, 253, 249, 0.96);
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.site-header.legal-header .brand-logo-light {
    opacity: 0;
}

.site-header.legal-header .brand-logo-dark {
    opacity: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
}

.main-nav a,
.menu-toggle {
    text-decoration: none;
}

.menu-toggle {
    display: none;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font: 700 13px/1 Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
}

.nav-book {
    border: 2px solid #173047;
    padding: 9px 18px;
    font-weight: 800;
    background: #173047;
    color: var(--white);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    border: 0;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.site-header.is-scrolled .nav-book,
.site-header.legal-header .nav-book {
    background: #173047;
    border-color: #173047;
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--blue);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 20, 24, 0.62), rgba(13, 20, 24, 0.2) 46%, rgba(13, 20, 24, 0.05));
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 40px));
    margin: 0 0 clamp(56px, 10vh, 110px) clamp(20px, 6vw, 86px);
    color: var(--white);
}

.holding-content {
    width: min(780px, calc(100% - 40px));
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 18px;
    font-size: clamp(58px, 9vw, 122px);
    line-height: 0.95;
    font-weight: 400;
}

.holding-content h1 {
    font-size: clamp(48px, 7vw, 96px);
}

h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 0;
}

h3 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-content p:not(.eyebrow) {
    max-width: 560px;
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.35;
}

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

.hero-booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: stretch;
    width: min(650px, 100%);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 249, 0.42);
    background: rgba(255, 253, 249, 0.12);
    color: var(--white);
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.hero-booking-panel span {
    display: grid;
    gap: 4px;
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 253, 249, 0.28);
}

.hero-booking-panel small {
    color: rgba(255, 253, 249, 0.72);
    font: 700 11px/1.2 Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.hero-booking-panel strong {
    color: var(--white);
    font: 400 20px/1.15 Georgia, "Times New Roman", serif;
}

.hero-booking-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    border-right: 0 !important;
    background: var(--blue);
    color: var(--white);
    font: 700 14px/1.2 Arial, Helvetica, sans-serif !important;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid var(--blue);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.button.primary {
    background: var(--blue);
    color: var(--white);
}

.button.ghost {
    border-color: rgba(255, 253, 249, 0.72);
    color: var(--white);
}

.holding-page .main-nav {
    font-size: 14px;
}

.section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(74px, 10vw, 130px) 0;
    scroll-margin-top: 220px;
}

.intro-grid,
.split,
.booking-section,
.signup-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: start;
}

.intro-grid p,
.split p,
.booking-copy p,
.signup-copy p {
    font-size: 20px;
    color: var(--muted);
}

.holding-status {
    padding-bottom: 0;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(34px, 6vw, 72px);
    background: rgba(255, 253, 249, 0.2);
    border: 1px solid rgba(255, 253, 249, 0.22);
    box-shadow: var(--shadow);
}

.quick-info div {
    display: grid;
    gap: 4px;
    padding: clamp(18px, 3vw, 26px);
    background: var(--blue);
}

.quick-info span {
    color: rgba(255, 253, 249, 0.72);
    font: 700 12px/1.2 Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.quick-info strong {
    color: var(--white);
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 400;
}

.rooms-section {
    padding-top: clamp(34px, 6vw, 72px);
}

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

.reopen-grid article {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.reopen-grid span {
    display: block;
    margin-bottom: 22px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--wood);
}

.signup-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(74px, 10vw, 130px) 0;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 38px;
}

.room-common {
    max-width: 760px;
    margin: -18px 0 34px;
    color: var(--muted);
    font-size: 20px;
}

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

.room-card,
.experience-grid article,
.steps article {
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.72);
    padding: clamp(22px, 3vw, 34px);
}

.room-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    overflow: hidden;
    padding: 0;
}

.room-card > :not(.room-card-image) {
    margin-left: clamp(22px, 3vw, 34px);
    margin-right: clamp(22px, 3vw, 34px);
}

.room-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    margin-bottom: clamp(22px, 3vw, 30px);
    object-fit: cover;
}

.room-meta,
.note {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 13px;
}

.room-description {
    color: var(--muted);
}

.room-card ul {
    padding-left: 18px;
    margin: auto 0 26px;
    color: var(--muted);
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.room-footer a {
    color: var(--blue);
    font-weight: 700;
}

.image-band {
    height: min(74vh, 760px);
    overflow: hidden;
}

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

.experiences,
.arrival {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100vw - var(--max)) / 2));
    padding-right: max(20px, calc((100vw - var(--max)) / 2));
    background: var(--paper);
}

.arrival {
    background: #fff8ed;
}

.experiences {
    padding-bottom: clamp(36px, 5vw, 64px);
}

.arrival {
    padding-top: clamp(36px, 5vw, 64px);
}

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

.experience-grid article,
.steps article {
    background: var(--white);
}

.experience-card-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--blue);
    font: 700 14px Arial, Helvetica, sans-serif;
}

.steps span {
    display: block;
    margin-bottom: 22px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--wood);
}

.booking-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(74px, 10vw, 130px) 0;
}

.booking-form {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 42px);
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    font: 16px Arial, Helvetica, sans-serif;
    padding: 13px 12px;
    border-radius: 0;
}

.checkbox-label {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
    color: var(--ink);
    line-height: 1.45;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

textarea {
    resize: vertical;
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.form-message ul {
    margin-bottom: 0;
}

.form-message.success {
    background: #edf4ee;
    border: 1px solid #bfd3c3;
}

.form-message.error {
    background: #fff1ed;
    border: 1px solid #e9b5a4;
}

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

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

.faq summary {
    cursor: pointer;
    font-size: 22px;
}

.faq details p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 48px clamp(20px, 4vw, 54px);
    background: var(--blue);
    color: var(--white);
}

.footer-company {
    max-width: 360px;
}

.footer-company p {
    color: rgba(255, 253, 249, 0.78);
}

.booking-page {
    background: var(--paper);
}

.booking-page-main {
    padding: 96px 0 90px;
}

.booking-hero {
    position: relative;
    min-height: 64vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    margin-bottom: clamp(42px, 7vw, 84px);
    background: var(--blue);
}

.booking-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 20, 20, 0.68), rgba(16, 20, 20, 0.26) 48%, rgba(16, 20, 20, 0.04));
}

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

.booking-hero-content {
    position: relative;
    z-index: 2;
    width: min(790px, calc(100% - 40px));
    margin: 0 auto clamp(44px, 8vh, 78px);
    color: var(--white);
}

.booking-hero-content h1 {
    font-size: clamp(44px, 6vw, 78px);
    margin-bottom: 18px;
}

.booking-hero-content p:not(.section-kicker) {
    max-width: 720px;
    color: rgba(255, 253, 249, 0.86);
    font-size: 20px;
}

.booking-engine {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.booking-live-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(74px, 10vw, 130px) 0;
    scroll-margin-top: 220px;
}

.booking-live-copy {
    max-width: 780px;
    margin-bottom: 34px;
}

.booking-live-copy p:not(.section-kicker) {
    color: var(--muted);
    font-size: 20px;
}

.booking-help-note {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 253, 249, 0.72);
}

.booking-help-note h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.booking-help-note p {
    margin: 0;
}

.booking-help-note p + p {
    margin-top: 10px;
}

.booking-live-widget {
    width: 100%;
}

.sirvoy-widget {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.86);
    box-shadow: var(--shadow);
    padding: clamp(14px, 3vw, 34px);
}

.sirvoy-widget > * {
    max-width: 100%;
}

.sirvoy-widget iframe {
    width: 100% !important;
    max-width: 100% !important;
}

.booking-search {
    display: grid;
    grid-template-columns: 1fr 1fr minmax(130px, 0.55fr) auto;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-search label {
    display: grid;
    gap: 5px;
    min-height: 64px;
    padding: 10px 18px;
    border-right: 1px solid var(--line);
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.booking-search span {
    color: var(--muted);
    font-size: 12px;
}

.booking-search input,
.booking-search select {
    width: 100%;
    min-height: 30px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    outline: 0;
    cursor: pointer;
}

.booking-search label.has-value input {
    color: var(--blue);
    font-weight: 700;
}

.booking-search label.is-next-step {
    background: #f3f7f2;
    box-shadow: inset 0 -3px 0 #8fa681;
}

.date-field-hint {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.booking-search button,
.booking-room-action a {
    border: 0;
    background: var(--blue);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.booking-search button {
    min-width: 170px;
    padding: 0 22px;
}

.booking-results {
    margin-top: clamp(48px, 7vw, 84px);
}

.booking-results-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.booking-room-list {
    display: grid;
    gap: 12px;
}

.booking-room-card {
    border: 1px solid var(--line);
    background: var(--white);
}

.booking-room-card[open] {
    box-shadow: 0 18px 44px rgba(26, 41, 51, 0.08);
}

.booking-room-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: clamp(18px, 3vw, 26px);
    list-style: none;
    cursor: pointer;
}

.booking-room-summary::-webkit-details-marker {
    display: none;
}

.booking-room-summary-main,
.booking-room-summary-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-room-summary-main {
    min-width: 0;
    flex-wrap: wrap;
}

.booking-room-summary-side {
    justify-content: end;
    white-space: nowrap;
}

.booking-room-title {
    font: 400 clamp(26px, 3vw, 38px)/1.05 Georgia, "Times New Roman", serif;
}

.booking-room-meta {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.booking-room-summary strong {
    font-size: 20px;
    font-weight: 400;
}

.booking-price {
    display: grid;
    gap: 3px;
    justify-items: end;
    font-family: Arial, Helvetica, sans-serif;
}

.booking-price strong {
    font-family: Georgia, "Times New Roman", serif;
}

.booking-price small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
}

.room-toggle-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid var(--line);
    color: var(--ink);
    font: 700 13px Arial, Helvetica, sans-serif;
}

.booking-room-card[open] .room-toggle-text {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.booking-room-details {
    padding: 0 clamp(18px, 3vw, 26px) 6px;
}

.booking-room-card p {
    max-width: 650px;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.booking-room-card dl {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 18px 0 0;
    font-family: Arial, Helvetica, sans-serif;
}

.booking-room-card dt {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.booking-room-card dd {
    margin: 0;
}

.booking-room-action {
    display: grid;
    gap: 14px;
    justify-items: end;
}

.booking-room-action strong {
    font-size: 22px;
    font-weight: 400;
}

.booking-room-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
}

.booking-request-form {
    display: grid;
    gap: 16px;
    margin: 12px clamp(18px, 3vw, 26px) clamp(18px, 3vw, 26px);
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

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

.booking-request-heading h4 {
    margin: 0;
    font: 400 28px/1.1 Georgia, "Times New Roman", serif;
}

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

.booking-request-grid label:nth-child(4) {
    grid-column: 1 / -1;
}

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

.booking-request-form button {
    justify-self: start;
    min-height: 50px;
    border: 0;
    background: var(--blue);
    color: var(--white);
    padding: 0 24px;
    font: 700 15px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.payment-methods legend {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    color: var(--muted);
    font: 700 12px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.payment-methods label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px;
    align-items: start;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
}

.payment-methods input {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    accent-color: var(--blue);
}

.payment-methods strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.payment-methods span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.35;
}

.payment-methods em {
    display: block;
    margin-top: 6px;
    color: #9a6b2e;
    font-style: normal;
    font-size: 12px;
}

.payment-methods label:has(input:checked) {
    border-color: var(--blue);
    background: #f0f5f7;
}

.payment-methods-panel {
    max-width: 620px;
    margin: 0 0 18px;
}

.booking-terms {
    max-width: 780px;
}

.booking-terms a {
    color: var(--blue);
    font-weight: 700;
}

.booking-receipt {
    margin: 0 0 26px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid #bfd3c3;
    background: #edf4ee;
}

.booking-receipt h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 48px);
}

.booking-receipt p {
    max-width: 760px;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.booking-receipt strong {
    display: block;
    margin: 10px 0 14px;
    font-size: 28px;
    font-weight: 400;
}

.booking-receipt .button {
    margin-top: 8px;
}

.payment-main {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 170px 0 90px;
}

.payment-panel {
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.payment-panel h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
}

.payment-panel p {
    max-width: 720px;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.payment-summary {
    margin: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.payment-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.payment-summary div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.payment-summary div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.payment-summary dt {
    color: var(--muted);
    font: 700 12px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.payment-summary dd {
    margin: 6px 0 0;
    font-size: 21px;
}

.payment-button {
    margin-bottom: 16px;
}

.payment-waiting {
    margin-top: 28px;
    padding: 22px;
    background: var(--paper);
}

.payment-waiting h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 42px);
}

.booking-note {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.checkout-terms {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.checkout-terms a {
    color: var(--blue);
    font-weight: 700;
}

.legal-page {
    background: var(--white);
}

.legal-main {
    padding-top: 150px;
}

.legal-hero,
.legal-content {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.legal-hero {
    padding: 42px 0 34px;
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 6vw, 78px);
}

.legal-hero p:not(.section-kicker) {
    max-width: 680px;
    color: var(--muted);
    font-size: 21px;
}

.legal-content {
    padding: 28px 0 clamp(76px, 10vw, 120px);
}

.legal-content article {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 64px);
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.site-footer p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.platform-page {
    background: var(--paper);
}

.platform-main {
    padding: clamp(150px, 16vw, 210px) 0 90px;
}

.platform-hero,
.platform-alert,
.platform-grid,
.platform-roadmap,
.platform-sirvoy {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.platform-hero {
    display: grid;
    gap: 18px;
    padding: 36px 0 clamp(58px, 8vw, 96px);
}

.platform-hero h1 {
    max-width: 980px;
    margin-bottom: 0;
    font-size: clamp(48px, 7vw, 104px);
}

.platform-hero p:not(.section-kicker) {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.42;
}

.platform-alert {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
    gap: clamp(26px, 6vw, 74px);
    align-items: start;
    margin-bottom: clamp(52px, 8vw, 92px);
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid #bfd3c3;
    background: #edf4ee;
}

.platform-alert h2 {
    font-size: clamp(30px, 4vw, 52px);
}

.platform-alert p:not(.section-kicker) {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: clamp(64px, 10vw, 118px);
}

.platform-grid article {
    min-height: 260px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.74);
}

.platform-grid span {
    display: block;
    margin-bottom: 32px;
    color: var(--wood);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.platform-grid p,
.platform-roadmap p,
.platform-sirvoy p {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.platform-roadmap {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.72fr);
    gap: clamp(30px, 7vw, 88px);
    align-items: start;
    margin-bottom: clamp(64px, 10vw, 118px);
}

.platform-roadmap-copy p:not(.section-kicker) {
    font-size: 19px;
}

.platform-roadmap ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: phase;
}

.platform-roadmap li {
    counter-increment: phase;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.platform-roadmap li::before {
    content: counter(phase, decimal-leading-zero);
    color: var(--wood);
}

.platform-roadmap strong {
    color: var(--ink);
}

.platform-sirvoy {
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.platform-sirvoy h2 {
    margin-bottom: 28px;
}

.platform-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.platform-checklist p {
    margin: 0;
    padding: 18px;
    background: var(--white);
}

.sort-sol-page {
    background: var(--white);
}

.sort-sol-hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--blue);
}

.sort-sol-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 16, 18, 0.72), rgba(12, 16, 18, 0.28) 48%, rgba(12, 16, 18, 0.1));
}

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

.oysters-hero img {
    object-position: center 38%;
}

.sort-sol-hero-copy {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100% - 40px));
    margin: 0 0 clamp(44px, 8vh, 82px) max(20px, calc((100vw - var(--max)) / 2));
    color: var(--white);
}

.sort-sol-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(54px, 8vw, 110px);
}

.sort-sol-hero-copy p:not(.section-kicker) {
    max-width: 660px;
    color: rgba(255, 253, 249, 0.88);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.35;
}

.sort-sol-intro {
    padding-bottom: clamp(42px, 6vw, 78px);
}

.sort-sol-image-row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1px;
    background: var(--line);
}

.sort-sol-image-row img {
    width: 100%;
    height: clamp(260px, 32vw, 440px);
    object-fit: cover;
}

.oysters-image-row {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.oysters-grill-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: center;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto clamp(54px, 7vw, 86px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    background: #eef1eb;
}

.oysters-grill-section h2 {
    max-width: 540px;
    font-size: clamp(34px, 3.3vw, 56px);
    line-height: 1.06;
}

.oysters-grill-section p:not(.section-kicker) {
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.45;
}

.oysters-grill-section img {
    width: 100%;
    height: min(380px, 32vw);
    object-fit: cover;
}

.tour-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.tour-filter label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.9);
    cursor: pointer;
}

.tour-filter input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.tour-type-pill {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #dfeadd;
    color: var(--green);
    font: 700 13px Arial, Helvetica, sans-serif;
}

.sort-sol-info {
    padding-top: clamp(42px, 6vw, 78px);
    padding-bottom: clamp(36px, 5vw, 64px);
}

.ticket-band {
    background: #f6f1e8;
}

.ticket-section {
    padding-top: clamp(34px, 5vw, 58px);
}

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

.sort-sol-booking-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.sort-sol-calendar-wrap {
    display: grid;
    gap: 18px;
}

.sort-sol-calendar-controls {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: rgba(255, 253, 249, 0.92);
}

.sort-sol-calendar-controls span {
    color: var(--muted);
    font: 400 20px Arial, Helvetica, sans-serif;
    text-align: center;
}

.sort-sol-calendar-controls button {
    min-height: 48px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 400 34px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.sort-sol-calendar-controls button:disabled {
    color: rgba(119, 113, 106, 0.25);
    cursor: default;
}

.sort-sol-calendar {
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.92);
    box-shadow: 0 18px 44px rgba(28, 24, 20, 0.05);
}

.sort-sol-calendar[hidden],
.sort-sol-tour-card[hidden] {
    display: none !important;
}

.sort-sol-calendar h3 {
    margin: 0;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font: 400 20px Arial, Helvetica, sans-serif;
    text-align: center;
}

.sort-sol-calendar-weekdays,
.sort-sol-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 14px 18px;
}

.sort-sol-calendar-weekdays {
    padding-bottom: 4px;
    color: #3f8d32;
    font: 700 13px Arial, Helvetica, sans-serif;
    text-align: center;
}

.sort-sol-calendar-days {
    padding-top: 4px;
}

.sort-sol-calendar-days a,
.sort-sol-calendar-days span {
    display: grid;
    place-items: center;
    min-height: 42px;
    color: var(--muted);
    font: 400 18px Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.sort-sol-calendar-days .muted-day {
    color: rgba(119, 113, 106, 0.28);
}

.sort-sol-calendar-days .tour-day {
    border-radius: 999px;
    background: #e7e7e5;
    color: var(--ink);
    transition: background 160ms ease, color 160ms ease;
}

.sort-sol-calendar-days .tour-day.is-active,
.sort-sol-calendar-days .tour-day:hover {
    background: #3f8d32;
    color: var(--white);
}

.ticket-card,
.ticket-empty {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.86);
    box-shadow: 0 18px 44px rgba(28, 24, 20, 0.06);
}

.ticket-empty {
    grid-template-columns: 1fr;
}

.ticket-card h3,
.ticket-empty h3 {
    font-size: clamp(30px, 4vw, 48px);
}

.ticket-card .tour-date-line {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: #f6f1e8;
    color: var(--ink);
    font: 700 17px Arial, Helvetica, sans-serif;
}

.ticket-card p,
.ticket-empty p {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
}

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

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

.direct-guest-discount {
    padding: 14px 0 2px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.direct-guest-discount summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
}

.direct-guest-discount p {
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.direct-guest-discount label + label {
    margin-top: 10px;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.ticket-price strong {
    color: var(--ink);
    font-size: 30px;
    font-weight: 400;
}

.ticket-price span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.ticket-availability {
    margin-top: 18px;
    color: var(--ink) !important;
    font-weight: 700;
}

.ticket-type-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.ticket-type-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.ticket-type-row strong,
.ticket-type-row span,
.ticket-type-row small {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
}

.ticket-type-row strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.3;
}

.ticket-type-row span {
    margin-top: 8px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
}

.ticket-type-row small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
}

.ticket-stepper {
    display: grid;
    grid-template-columns: 42px 48px 42px;
    gap: 8px;
    align-items: center;
}

.ticket-stepper input {
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 700 22px Arial, Helvetica, sans-serif;
    text-align: center;
    appearance: textfield;
}

.ticket-stepper input::-webkit-outer-spin-button,
.ticket-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.ticket-qty-button {
    min-height: 42px !important;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    background: var(--white) !important;
    color: var(--ink) !important;
    font: 700 22px Arial, Helvetica, sans-serif !important;
}

.ticket-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

.ticket-total span {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
}

.ticket-total strong {
    font-size: 28px;
    font-weight: 700;
}

.ticket-form button {
    min-height: 54px;
    border: 0;
    background: var(--blue);
    color: var(--white);
    font: 700 15px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.ticket-form button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 900px) {
    .site-header {
        position: fixed;
        align-items: center;
        gap: 14px;
        padding: 0 18px 10px;
    }

    .language-switch {
        top: 4px;
        right: 18px;
        gap: 2px;
    }

    .lang-link {
        width: 32px;
        height: 26px;
        font-size: 23px;
    }

    .main-nav {
        position: relative;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0;
        padding-top: 16px;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 42px;
        margin-right: 21px;
        padding: 0;
        background: rgba(255, 253, 249, 0.1);
        color: var(--white);
        backdrop-filter: blur(10px);
    }

    .site-header.is-scrolled .menu-toggle,
    .site-header.legal-header .menu-toggle {
        background: transparent;
        color: var(--ink);
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        background: currentColor;
    }

    .nav-links {
        display: none;
    }

    .main-nav.is-open .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: grid;
        width: min(250px, calc(100vw - 36px));
        gap: 0;
        border: 1px solid rgba(255, 253, 249, 0.35);
        background: rgba(23, 48, 71, 0.88);
        color: var(--white);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
        backdrop-filter: blur(14px);
    }

    .main-nav.is-open .nav-links a {
        display: block;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(255, 253, 249, 0.22);
    }

    .main-nav.is-open .nav-links a:last-child {
        border-bottom: 0;
    }

    .main-nav.is-open .nav-links .nav-book {
        border: 0;
        margin-top: 0;
        background: #173047;
        color: var(--white);
        text-align: center;
    }

    .hero {
        min-height: 88vh;
    }

    .section {
        scroll-margin-top: 120px;
    }

    .booking-live-section {
        scroll-margin-top: 120px;
    }

    .hero img {
        object-position: center bottom;
    }

    .hero-content {
        width: min(620px, calc(100% - 36px));
        margin-left: 18px;
        margin-bottom: 42px;
    }

    .hero-booking-panel {
        grid-template-columns: 1fr;
        width: min(100%, 320px);
    }

    .hero-booking-panel span {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 253, 249, 0.22);
    }

    .hero-booking-button {
        min-height: 50px;
        border-bottom: 0 !important;
    }

    .intro-grid,
    .split,
    .booking-section,
    .signup-section,
    .quick-info,
    .room-grid,
    .experience-grid,
    .steps,
    .reopen-grid {
        grid-template-columns: 1fr;
    }

    .room-card {
        min-height: 0;
    }

    .image-band {
        height: 52vh;
    }

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

    .booking-search,
    .booking-room-card,
    .booking-room-summary,
    .booking-request-grid,
    .payment-methods,
    .payment-summary dl,
    .legal-content article,
    .platform-alert,
    .platform-grid,
    .platform-roadmap,
    .platform-checklist,
    .sort-sol-image-row,
    .sort-sol-booking-grid,
    .oysters-grill-section,
    .ticket-card {
        grid-template-columns: 1fr;
    }

    .sort-sol-calendar-wrap {
        position: static;
    }

    .sort-sol-hero {
        min-height: 76vh;
    }

    .sort-sol-hero-copy {
        margin-left: 20px;
    }

    .sort-sol-image-row img {
        height: 280px;
    }

    .oysters-grill-section img {
        height: 280px;
    }

    .ticket-type-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ticket-stepper {
        justify-content: start;
    }

    .payment-summary div:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .payment-summary div:last-child {
        border-bottom: 0;
    }

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

    .booking-search label {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .booking-search button {
        min-height: 58px;
    }

    .booking-room-action {
        justify-items: start;
    }

    .booking-room-summary-side {
        justify-content: start;
        flex-wrap: wrap;
        white-space: normal;
    }

    .site-footer {
        flex-direction: column;
    }

    .legal-main {
        padding-top: 118px;
    }

    .platform-main {
        padding-top: 122px;
    }
}

@media (max-width: 560px) {
    .brand {
        width: 150px;
        min-width: 150px;
    }

    .site-header.is-scrolled {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-book {
        padding: 7px 12px;
        font-size: 13px;
    }

    .language-switch {
        right: 16px;
        gap: 1px;
    }

    .lang-link {
        width: 30px;
        height: 24px;
        font-size: 22px;
    }

    h1 {
        font-size: 42px;
        line-height: 0.98;
    }

    h2 {
        font-size: 34px;
    }

    .hero-content p:not(.eyebrow) {
        font-size: 19px;
        line-height: 1.32;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 300px);
    }

    .button {
        min-height: 52px;
        padding: 0 18px;
    }

    .booking-live-section,
    .section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .room-card > :not(.room-card-image) {
        margin-left: 22px;
        margin-right: 22px;
    }

    .sirvoy-widget {
        min-height: 360px;
        padding: 12px;
    }
}

.admin-page {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: #f3f1ec;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

.admin-login-page {
    min-height: 100vh;
    background: var(--paper);
}

.admin-login-main {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px 20px;
}

.admin-login-panel {
    width: min(460px, 100%);
    padding: clamp(28px, 5vw, 46px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.admin-login-panel img {
    width: 150px;
    margin-bottom: 26px;
}

.admin-login-panel h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 7vw, 68px);
}

.admin-login-panel .button {
    width: 100%;
    margin-top: 8px;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    border-right: 1px solid var(--line);
    background: var(--white);
}

.admin-logo {
    display: block;
    width: 150px;
    margin-bottom: 34px;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    padding: 10px 12px;
    text-decoration: none;
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: var(--paper);
}

.admin-main {
    padding: 34px clamp(22px, 4vw, 54px) 54px;
}

.admin-top,
.admin-panel-heading,
.admin-metrics,
.admin-task-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-top h1 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
}

.admin-security-note,
.admin-help-text {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 26px 0;
}

.admin-metrics article,
.admin-panel {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 44px rgba(28, 24, 20, 0.06);
}

.admin-metrics article {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.admin-metrics span,
.admin-task-list span,
.admin-help-text {
    color: var(--muted);
}

.admin-metrics strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
}

.admin-panel {
    padding: 24px;
    margin-top: 22px;
}

.admin-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
}

.admin-button {
    min-height: 44px;
    border: 0;
    background: var(--blue);
    color: var(--white);
    padding: 0 18px;
    font-weight: 700;
}

.admin-calendar {
    margin: 24px 0 16px;
    overflow-x: auto;
    border: 1px solid var(--line);
}

.admin-calendar-head,
.admin-room-row {
    display: grid;
    grid-template-columns: 150px repeat(4, minmax(150px, 1fr));
    min-width: 760px;
}

.admin-calendar-head span,
.admin-room-row strong,
.admin-day {
    min-height: 74px;
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.admin-calendar-head span {
    min-height: auto;
    background: var(--paper);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-room-row strong {
    background: rgba(247, 242, 233, 0.58);
}

.admin-day {
    background: #fffdf9;
}

.admin-day.is-drop-target {
    background: #edf4ee;
    outline: 2px solid var(--green);
    outline-offset: -2px;
}

.admin-booking {
    display: block;
    padding: 10px 12px;
    background: var(--blue);
    color: var(--white);
    cursor: grab;
    font-size: 13px;
    font-weight: 700;
}

.admin-booking.paid {
    background: var(--green);
}

.admin-booking.warning {
    background: #9a714f;
}

.admin-booking.is-dragging {
    opacity: 0.45;
}

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

.admin-task-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.admin-task-list li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.admin-task-list strong {
    font-size: 13px;
}

.admin-status-card {
    display: grid;
    gap: 12px;
}

.admin-status-card span {
    width: max-content;
    padding: 5px 10px;
    background: var(--paper);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.admin-status-card.is-ok span {
    background: #e7f2e9;
    color: var(--green);
}

.admin-status-card.is-warning span {
    background: #f5e9d8;
    color: #8b5b34;
}

.admin-status-card p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.admin-system-summary {
    margin-top: 26px;
}

.admin-system-summary p:not(.section-kicker) {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
}

.admin-status-list li strong {
    color: var(--green);
}

.admin-empty {
    margin: 22px 0 0;
    color: var(--muted);
}

.admin-booking-table {
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid var(--line);
}

.admin-booking-table-head,
.admin-booking-table-row {
    display: grid;
    grid-template-columns: 130px minmax(190px, 1.2fr) minmax(170px, 1fr) minmax(160px, 1fr) 110px 150px 110px;
    min-width: 1090px;
}

.admin-booking-table-head span,
.admin-booking-table-row > * {
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.admin-booking-table-head span {
    background: var(--paper);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-booking-table-row {
    background: var(--white);
}

.admin-booking-table-row small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.admin-booking-table-row a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.admin-import-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-top: 24px;
}

.admin-import-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-import-form input[type="file"] {
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font: inherit;
}

.admin-import-note {
    max-width: 660px;
    color: var(--muted);
    line-height: 1.65;
}

.admin-import-table {
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid var(--line);
}

.admin-import-table table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: var(--white);
}

.admin-import-table th,
.admin-import-table td {
    max-width: 240px;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-import-table th {
    background: var(--paper);
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .admin-page {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-logo {
        width: 128px;
        margin-bottom: 18px;
    }

    .admin-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .admin-top,
    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-metrics,
    .admin-grid {
        grid-template-columns: 1fr;
    }

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