:root {
    --bg: #f7f3ee;
    --paper: #ffffff;
    --sand: #efe3d1;
    --sand-soft: #f6efe5;
    --navy: #07131f;
    --navy-soft: #0e2232;
    --surface: #ffffff;
    --surface-2: #f2f7fa;
    --line: rgba(8, 18, 28, 0.09);
    --line-strong: rgba(8, 18, 28, 0.18);
    --text: #0f1d2a;
    --muted: #5d6b76;
    --muted-strong: #31404b;
    --accent: #81c9c5;
    --accent-2: #d9b37c;
    --accent-3: #d2e6ee;
    --success: #2a8a55;
    --shadow: 0 24px 60px rgba(9, 18, 28, 0.08);
    --shadow-strong: 0 34px 70px rgba(9, 18, 28, 0.14);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 40px));
    --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(129, 201, 197, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(217, 179, 124, 0.14), transparent 30%),
        linear-gradient(180deg, #fffefb 0%, var(--bg) 24%, #f8f5f0 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.55;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--navy);
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-shell {
    overflow: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
}

.topbar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.topbar__item a {
    color: inherit;
}

.topbar__item--muted {
    color: rgba(255, 255, 255, 0.7);
}

.icon {
    width: 1em;
    height: 1em;
    flex: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(8, 18, 28, 0.06);
    background: rgba(255, 253, 248, 0.78);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, #163247 52%, #274e62 100%);
    color: white;
    font-weight: 700;
    letter-spacing: -0.05em;
    box-shadow: var(--shadow);
}

.brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand__copy strong {
    font-size: 1.02rem;
    line-height: 1;
}

.brand__copy small {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    font-weight: 600;
    color: var(--muted-strong);
}

.site-nav a {
    position: relative;
    padding: 8px 0;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--navy);
}

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

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    backface-visibility: hidden;
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(129, 201, 197, 0.2), 0 16px 36px rgba(7, 19, 31, 0.16);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--navy) 0%, #173346 55%, #294d5d 100%);
    box-shadow: 0 16px 40px rgba(7, 19, 31, 0.18);
}

.btn-ghost {
    border-color: var(--line-strong);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.72);
}

.btn-light {
    background: white;
    color: var(--navy);
}

.btn-ghost--light {
    border-color: rgba(255, 255, 255, 0.24);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.site-header__cta {
    justify-self: end;
}

main {
    display: block;
}

.flash-stack {
    padding-top: 18px;
    display: grid;
    gap: 10px;
}

.flash {
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    font-weight: 600;
}

.flash--success {
    border-color: rgba(42, 138, 85, 0.26);
    background: rgba(230, 248, 236, 0.92);
    color: #205b38;
}

.flash--error {
    border-color: rgba(171, 60, 60, 0.22);
    background: rgba(255, 240, 240, 0.92);
    color: #8d2f2f;
}

.flash--info {
    background: rgba(237, 245, 252, 0.92);
    color: var(--navy);
}

.hero {
    position: relative;
    padding: 38px 0 30px;
}

.hero__media-wrap {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: var(--navy);
}

.hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.02) contrast(1.01);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 19, 31, 0.74) 0%, rgba(7, 19, 31, 0.5) 30%, rgba(7, 19, 31, 0.18) 58%, rgba(7, 19, 31, 0.36) 100%),
        linear-gradient(180deg, rgba(7, 19, 31, 0.08) 0%, rgba(7, 19, 31, 0.28) 100%);
}

.hero__grid {
    min-height: calc(100svh - 120px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    align-items: center;
    padding: 62px 0 48px;
}

.hero__copy {
    color: white;
    max-width: 700px;
}

.hero__copy h1 {
    color: white;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.92;
    max-width: 11ch;
}

.hero__copy p {
    margin-top: 22px;
    max-width: 56ch;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__meta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.booking-card {
    position: relative;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 16, 24, 0.4);
    color: white;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(24px);
}

.booking-card h2 {
    color: white;
    font-size: 2rem;
    line-height: 1;
}

.booking-card p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.96rem;
}

.booking-form {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

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

.field {
    display: grid;
    gap: 8px;
    color: var(--text);
}

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

.field > span,
.field > label {
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: white;
    color: var(--text);
    padding: 13px 14px;
    outline: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select option,
select optgroup {
    color: var(--text);
    background: var(--paper);
}

.booking-form .field select option,
.quote-form .field select option,
.contact-form .field select option,
.admin-page .field select option,
.admin-inline-form select option {
    color: var(--text);
    background: var(--paper);
}

.field textarea {
    min-height: 72px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #90a0aa;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(129, 201, 197, 0.9);
    background: #fffdf9;
    box-shadow: 0 0 0 4px rgba(129, 201, 197, 0.16);
}

.field input[type="file"] {
    padding: 11px 14px;
    cursor: pointer;
}

.field input[type="file"]::file-selector-button {
    margin-right: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: white;
    padding: 9px 14px;
    font: inherit;
    cursor: pointer;
}

.field input[type="file"]::file-selector-button:hover {
    background: #173346;
}

.admin-upload-note {
    margin: 10px 0 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--muted);
}

.admin-image-preview {
    margin-top: 12px;
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface-2);
}

.admin-image-preview img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.admin-image-preview__meta {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.84rem;
    word-break: break-all;
}

.admin-image-preview__meta strong {
    font-size: 0.9rem;
    color: var(--navy);
}

.admin-image-preview__empty {
    min-height: 120px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px dashed var(--line-strong);
    color: var(--muted);
    background: var(--sand-soft);
    padding: 18px;
    text-align: center;
}

.admin-image-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.field input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    padding: 0;
    margin: 0 10px 0 0;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: none;
    vertical-align: middle;
    accent-color: var(--accent);
}

.field input[type="checkbox"]:focus {
    box-shadow: 0 0 0 4px rgba(129, 201, 197, 0.16);
}

.booking-form .field > span,
.quote-form .field > span,
.booking-card.quote-form .field span {
    color: rgba(255, 255, 255, 0.82);
}

.booking-form .field input,
.booking-form .field select,
.booking-form .field textarea,
.quote-form .field input,
.quote-form .field select,
.quote-form .field textarea {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.booking-form .field input::placeholder,
.booking-form .field textarea::placeholder,
.quote-form .field input::placeholder,
.quote-form .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.booking-form .field input:focus,
.booking-form .field select:focus,
.booking-form .field textarea:focus,
.quote-form .field input:focus,
.quote-form .field select:focus,
.quote-form .field textarea:focus {
    border-color: rgba(129, 201, 197, 0.7);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(129, 201, 197, 0.14);
}

.booking-form .field input[type="file"]::file-selector-button,
.quote-form .field input[type="file"]::file-selector-button {
    background: rgba(129, 201, 197, 0.2);
    color: white;
}

.booking-form .field input[type="file"]::file-selector-button:hover,
.quote-form .field input[type="file"]::file-selector-button:hover {
    background: rgba(129, 201, 197, 0.28);
}

.booking-form .btn {
    width: 100%;
}

.booking-form__note {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.hero__stats {
    padding-top: 0;
    margin-top: -10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    min-height: 140px;
}

.stat-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(129, 201, 197, 0.25), rgba(217, 179, 124, 0.18));
}

.stat-card strong {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--navy);
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 96px 0;
}

.section--tight {
    padding: 72px 0;
}

.section--dark {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(180deg, #081421 0%, #07131f 100%);
}

.section--dark h2,
.section--dark h3 {
    color: white;
}

.section--sand {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.18) 100%),
        linear-gradient(135deg, #fbf7f0 0%, #f5eee2 100%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(2rem, 3.7vw, 3.3rem);
    max-width: 12ch;
}

.section-head p {
    margin-top: 12px;
    max-width: 62ch;
    color: var(--muted);
    font-size: 1rem;
}

.section-head .text-link {
    white-space: nowrap;
    align-self: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--navy);
}

.text-link::after {
    content: '→';
    transition: transform 180ms ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.trust-rail {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 8px;
}

.trust-card strong {
    font-size: 1rem;
    color: var(--navy);
}

.trust-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 34px;
    align-items: center;
}

.split--reverse .split__media {
    order: 2;
}

.split__media {
    position: relative;
}

.media-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: white;
}

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

.media-frame--tall {
    min-height: 620px;
}

.media-frame--medium {
    min-height: 520px;
}

.floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 340px;
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(8, 18, 28, 0.08);
    backdrop-filter: blur(16px);
}

.floating-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.section-copy h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy > p {
    margin-top: 14px;
    max-width: 60ch;
    color: var(--muted);
}

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

.mini-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.mini-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(129, 201, 197, 0.24), rgba(217, 179, 124, 0.18));
    color: var(--navy);
}

.mini-card h3 {
    font-size: 1.28rem;
    line-height: 1.05;
}

.mini-card p {
    color: var(--muted);
}

.section-actions {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.card {
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

:where(
    .card,
    .stat-card,
    .trust-card,
    .mini-card,
    .contact-card,
    .package-card,
    .gallery-tile,
    .floating-card,
    .booking-card,
    .quote-form
) {
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        filter 220ms ease;
    backface-visibility: hidden;
}

.room-grid,
.promo-grid,
.testimonial-grid,
.service-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

.room-card__media,
.service-card__media,
.promo-card__media {
    display: block;
}

.room-card__media img,
.service-card__media img,
.promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, filter 260ms ease;
    backface-visibility: hidden;
}

.room-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card__media {
    aspect-ratio: 4 / 3;
}

.promo-card__media {
    aspect-ratio: 4 / 3;
}

.room-card__body,
.service-card__body,
.promo-card__body,
.testimonial-card {
    padding: 22px;
}

.room-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.room-card__head h3,
.service-card__body h3,
.promo-card__body h3 {
    font-size: 1.55rem;
    line-height: 1.08;
}

.room-card__head p,
.service-card__body p,
.promo-card__body p {
    margin-top: 8px;
    color: var(--muted);
}

.room-card__price {
    text-align: right;
    white-space: nowrap;
}

.room-card__price span {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.room-card__price strong {
    display: block;
    color: var(--navy);
    font-size: 1.22rem;
}

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

.room-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 600;
}

.room-meta__icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--navy);
}

.room-card__desc {
    margin-top: 14px;
    color: var(--muted);
}

.amenity-list {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    font-weight: 600;
    font-size: 0.94rem;
}

.amenity-list li span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 4px rgba(129, 201, 197, 0.12);
    flex: none;
}

.card-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-card {
    display: grid;
}

.service-card__body {
    display: grid;
    gap: 10px;
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(129, 201, 197, 0.24), rgba(217, 179, 124, 0.18));
}

.service-card__body p {
    min-height: 72px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(129, 201, 197, 0.22), rgba(217, 179, 124, 0.22));
}

.promo-card__body {
    display: grid;
    gap: 12px;
}

.promo-card__terms {
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-2);
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.testimonial-card {
    display: grid;
    gap: 18px;
}

.testimonial-card__quote {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(129, 201, 197, 0.24), rgba(217, 179, 124, 0.18));
}

.testimonial-card__text {
    color: var(--muted-strong);
    font-size: 1.02rem;
    min-height: 130px;
}

.testimonial-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.testimonial-card__footer strong {
    display: block;
    color: var(--navy);
}

.testimonial-card__footer span {
    color: var(--muted);
    font-size: 0.92rem;
}

.stars {
    color: #c68d2a;
    letter-spacing: 0.1em;
    font-size: 0.98rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
    grid-auto-rows: 250px;
}

.gallery-tile {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(8, 18, 28, 0.1);
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, filter 260ms ease;
    backface-visibility: hidden;
}

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

.gallery-tile--tall {
    grid-row: span 2;
}

.gallery-tile figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(8, 18, 28, 0.48);
    backdrop-filter: blur(12px);
    color: white;
    display: grid;
    gap: 4px;
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.gallery-tile figcaption strong {
    font-size: 1.03rem;
}

.gallery-tile figcaption span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.quote-band {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(129, 201, 197, 0.18), transparent 34%),
        linear-gradient(135deg, #081521 0%, #0a1d2b 100%);
    color: rgba(255, 255, 255, 0.92);
}

.quote-band h2 {
    color: white;
    font-size: clamp(2rem, 4.3vw, 3.55rem);
    max-width: 13ch;
}

.quote-band p {
    margin-top: 14px;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.72);
}

.quote-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

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

.package-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.package-card h3 {
    color: white;
    font-size: 1.36rem;
}

.package-card strong {
    display: block;
    margin-top: 10px;
    color: var(--accent);
}

.package-card ul {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.package-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-card li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    flex: none;
}

.quote-form {
    padding: 20px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    display: grid;
    gap: 12px;
    box-shadow: var(--shadow-strong);
}

.booking-card.quote-form {
    background: rgba(8, 16, 24, 0.42);
    border-color: rgba(255, 255, 255, 0.16);
    color: white;
}

.booking-card.quote-form .field span {
    color: rgba(255, 255, 255, 0.82);
}

.quote-form .field label {
    color: rgba(255, 255, 255, 0.84);
}

.quote-form .field input,
.quote-form .field select,
.quote-form .field textarea {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.quote-form .field textarea::placeholder,
.quote-form .field input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.quote-form .btn {
    width: 100%;
}

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

.faq-list details {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-list summary {
    list-style: none;
    padding: 18px 20px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    color: var(--muted);
}

.faq-list details[open] summary::after {
    content: '–';
}

.faq-list .faq-answer {
    padding: 0 20px 18px;
    color: var(--muted);
}

.section-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

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

.section-table th {
    background: #f5f9fb;
    color: var(--navy);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-table tbody tr:last-child td {
    border-bottom: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 18px;
}

.contact-card {
    padding: 22px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.contact-card strong {
    color: var(--navy);
}

.map-frame {
    min-height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: white;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
    background: white;
    color: var(--text);
    border-color: var(--line);
}

.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
    color: #90a0aa;
}

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        box-shadow: 0 20px 50px rgba(7, 19, 31, 0.24);
        filter: brightness(1.05) saturate(1.04);
    }

    .btn-ghost:hover,
    .btn-light:hover {
        border-color: rgba(7, 19, 31, 0.18);
        background: white;
        box-shadow: var(--shadow);
    }

    .btn-ghost--light:hover {
        border-color: rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.16);
        box-shadow: 0 16px 34px rgba(7, 19, 31, 0.2);
    }

    .card:hover,
    .stat-card:hover,
    .trust-card:hover,
    .mini-card:hover,
    .contact-card:hover,
    .package-card:hover,
    .gallery-tile:hover,
    .floating-card:hover,
    .booking-card:hover,
    .quote-form:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-strong);
        border-color: rgba(129, 201, 197, 0.22);
    }

    .gallery-tile:hover img,
    .room-card:hover .room-card__media img,
    .service-card:hover .service-card__media img,
    .promo-card:hover .promo-card__media img,
    .media-frame:hover img {
        transform: scale(1.05);
        filter: saturate(1.05) contrast(1.03);
    }

    .stat-card:hover .stat-card__icon,
    .mini-card:hover .mini-card__icon,
    .service-card:hover .service-card__icon,
    .testimonial-card:hover .testimonial-card__quote,
    .room-meta li:hover,
    .amenity-list li:hover {
        transform: translateY(-2px);
    }

    .stat-card:hover .stat-card__icon,
    .mini-card:hover .mini-card__icon,
    .service-card:hover .service-card__icon,
    .testimonial-card:hover .testimonial-card__quote {
        box-shadow: 0 0 0 6px rgba(129, 201, 197, 0.12);
    }

    .room-card:hover .room-card__price strong,
    .service-card:hover .service-card__body h3,
    .promo-card:hover .promo-card__body h3 {
        color: #0a2333;
    }

    .room-meta li {
        transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
    }

    .room-meta li:hover {
        background: white;
        box-shadow: 0 12px 24px rgba(9, 18, 28, 0.1);
    }

    .amenity-list li {
        transition: transform 220ms ease, color 220ms ease;
    }

    .amenity-list li:hover {
        color: var(--text);
        transform: translateX(3px);
    }

    .promo-card__terms {
        transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
    }

    .promo-card:hover .promo-card__terms {
        background: white;
        box-shadow: 0 10px 24px rgba(9, 18, 28, 0.08);
    }

    .gallery-tile figcaption {
        transform: translateY(0);
    }

    .gallery-tile:hover figcaption {
        transform: translateY(-4px);
        background: rgba(8, 18, 28, 0.58);
    }

    .text-link {
        transition: color 180ms ease, transform 180ms ease;
    }

    .text-link:hover {
        transform: translateX(2px);
    }
}

.contact-form .field label {
    color: var(--navy);
}

.site-footer {
    margin-top: 0;
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, #08131f 0%, #06111a 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 26px;
    align-items: start;
}

.brand--footer .brand__mark {
    background: linear-gradient(135deg, #0f2434 0%, #17394f 54%, #316075 100%);
}

.footer-brand p {
    margin-top: 18px;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.72);
}

.footer-link {
    display: block;
    margin-top: 10px;
    color: white;
    font-weight: 700;
}

.footer-grid h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.footer-list {
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-list a:hover {
    color: white;
}

.footer-list--info {
    color: rgba(255, 255, 255, 0.64);
}

.footer-list--info a {
    color: inherit;
}

.footer-list--info a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
}

.admin-page {
    background:
        radial-gradient(circle at top left, rgba(129, 201, 197, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(217, 179, 124, 0.18), transparent 28%),
        linear-gradient(180deg, #07131f 0%, #0b1d2c 34%, #f7f3ee 34%, #f7f3ee 100%);
}

.admin-page h1,
.admin-page h2,
.admin-page h3,
.admin-page h4 {
    letter-spacing: -0.04em;
}

.admin-flash-stack {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 18px;
    display: grid;
    gap: 10px;
}

.admin-shell {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 42px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

.admin-rail {
    position: sticky;
    top: 18px;
    align-self: start;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(7, 19, 31, 0.98), rgba(8, 27, 40, 0.96));
    color: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-rail .brand__copy strong,
.admin-rail .brand__copy small,
.admin-hero,
.admin-login-hero {
    color: white;
}

.admin-rail .brand__copy small {
    color: rgba(255, 255, 255, 0.62);
}

.admin-rail__meta {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.admin-rail__meta strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.admin-rail__nav {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.admin-rail__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-rail__nav a:hover,
.admin-rail__nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateX(2px);
}

.admin-rail__summary {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.admin-mini-stat {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-mini-stat--accent {
    background: rgba(129, 201, 197, 0.16);
    border-color: rgba(129, 201, 197, 0.22);
}

.admin-mini-stat strong {
    display: block;
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}

.admin-mini-stat span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.admin-main {
    min-width: 0;
    display: grid;
    gap: 20px;
}

.admin-hero {
    padding: 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(129, 201, 197, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(7, 19, 31, 0.98), rgba(23, 51, 70, 0.94) 52%, rgba(41, 77, 93, 0.9));
    box-shadow: var(--shadow-strong);
}

.admin-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
}

.admin-hero h1 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    line-height: 0.95;
    color: white;
}

.admin-hero p {
    margin-top: 14px;
    max-width: 72ch;
    color: rgba(255, 255, 255, 0.78);
}

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

.admin-kpi {
    padding: 18px;
    border-radius: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.admin-kpi strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--navy);
}

.admin-kpi span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.94rem;
}

.admin-panel {
    padding: 24px;
    border-radius: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.admin-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.admin-panel__head p {
    color: var(--muted);
    margin-top: 8px;
}

.admin-panel__head-actions,
.admin-section-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-section-actions--start {
    justify-content: flex-start;
}

.admin-panel__head-actions .admin-inline-form,
.admin-section-actions .admin-inline-form {
    margin: 0;
}

.admin-panel__tools {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-filters {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 180px)) auto;
    gap: 12px;
    align-items: end;
}

.admin-filters .field {
    margin: 0;
}

.btn--compact {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 16px;
}

.admin-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(129, 201, 197, 0.12);
    border: 1px solid rgba(129, 201, 197, 0.28);
    color: var(--muted-strong);
}

.admin-empty {
    padding: 28px;
    border-radius: 24px;
    background: var(--sand-soft);
    border: 1px dashed var(--line-strong);
    color: var(--muted-strong);
}

.admin-alert-panel {
    background:
        radial-gradient(circle at top right, rgba(129, 201, 197, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 253, 0.98));
}

.admin-alert-list {
    display: grid;
    gap: 12px;
}

.admin-alert-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: #f8fbfc;
    border: 1px solid rgba(8, 18, 28, 0.08);
    display: grid;
    gap: 10px;
}

.admin-alert-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-alert-item__title {
    display: grid;
    gap: 4px;
}

.admin-alert-item__title strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.admin-alert-item__title span,
.admin-alert-item__meta {
    color: var(--muted);
    font-size: 0.94rem;
}

.admin-alert-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.admin-alert-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-table-wrap {
    overflow: auto;
    border-radius: 24px;
    border: 1px solid var(--line);
}

.admin-table {
    width: 100%;
    min-width: 1240px;
    border-collapse: collapse;
    background: white;
}

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

.admin-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f5f9fb;
    color: var(--navy);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.admin-table tbody tr:hover {
    background: #fcfdfd;
}

.admin-table__main {
    display: grid;
    gap: 8px;
}

.admin-table__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-table__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-table__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-table__actions .admin-inline-form {
    margin: 0;
}

.admin-sortable-row {
    transition: background 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}

.admin-sortable-row.is-dragging {
    opacity: 0.45;
    background: #eef6f7;
}

.admin-sortable-row.is-drop-target {
    box-shadow: inset 0 -2px 0 var(--teal);
}

.admin-sortable-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-sort-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(129, 201, 197, 0.16);
    color: var(--navy);
    cursor: grab;
    user-select: none;
    letter-spacing: -0.08em;
}

.admin-sort-note {
    align-self: center;
}

.admin-sort-note[data-state="pending"] {
    color: #8c5f19;
}

.admin-sort-note[data-state="success"] {
    color: #1d6a42;
}

.admin-sort-note[data-state="error"] {
    color: #b23b3b;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-badge--new {
    background: rgba(217, 179, 124, 0.16);
    color: #8c5f19;
}

.admin-badge--contacted {
    background: rgba(129, 201, 197, 0.18);
    color: #136b66;
}

.admin-badge--quoted {
    background: rgba(83, 122, 255, 0.14);
    color: #2746b8;
}

.admin-badge--confirmed {
    background: rgba(42, 138, 85, 0.16);
    color: #1d6a42;
}

.admin-badge--closed {
    background: rgba(93, 107, 118, 0.14);
    color: #4b5964;
}

.admin-badge--default {
    background: rgba(93, 107, 118, 0.12);
    color: #4b5964;
}

.admin-inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-inline-form select {
    min-width: 170px;
}

.admin-pagination {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-pagination__info {
    color: var(--muted);
    font-size: 0.95rem;
}

.admin-pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-pagination__page-state {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(129, 201, 197, 0.12);
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 440px);
}

.admin-login-hero {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top left, rgba(129, 201, 197, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(217, 179, 124, 0.16), transparent 30%),
        linear-gradient(150deg, #07131f 0%, #0d2234 50%, #173346 100%);
}

.admin-login-hero__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.admin-login-hero h1 {
    margin-top: 24px;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.92;
    color: white;
}

.admin-login-hero p {
    margin-top: 18px;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.78);
}

.admin-login-hero__grid {
    margin-top: 24px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
}

.admin-login-metric {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

.admin-login-metric strong {
    display: block;
    margin-top: 12px;
    color: white;
    font-size: 1.4rem;
}

.admin-login-panel {
    display: grid;
    align-content: center;
    padding: 30px;
    background: var(--paper);
}

.admin-login-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.admin-login-card h2 {
    margin-top: 18px;
    font-size: 1.9rem;
}

.admin-login-card p {
    margin-top: 10px;
    color: var(--muted);
}

.admin-login-form {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.admin-login-form .btn {
    width: 100%;
}

.admin-login-help {
    margin-top: 16px;
    font-size: 0.92rem;
    color: var(--muted);
}

.admin-content-note {
    margin-top: 12px;
}

.admin-editor-anchor {
    scroll-margin-top: 24px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

    .site-nav {
        position: absolute;
        left: 50%;
        top: calc(100% + 10px);
        transform: translateX(-50%);
        width: min(680px, calc(100% - 24px));
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-strong);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 14px;
        background: var(--surface-2);
    }

    .site-nav a::after {
        display: none;
    }

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

    .site-header__cta {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 40px;
    }

    .hero__copy h1 {
        max-width: 13ch;
    }

    .hero__stats,
    .trust-rail,
    .room-grid,
    .promo-grid,
    .testimonial-grid,
    .service-grid,
    .quote-packages,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .quote-band__grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__media {
        order: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }

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

    .admin-rail {
        position: relative;
        top: auto;
    }

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

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

    .admin-login-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .topbar__inner {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .topbar__item--address {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        gap: 12px;
    }

    .site-nav {
        width: calc(100% - 20px);
    }

    .brand__copy small {
        letter-spacing: 0.14em;
    }

    .hero {
        padding-top: 24px;
    }

    .hero__copy h1 {
        max-width: 11ch;
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .hero__copy p {
        font-size: 0.98rem;
    }

    .booking-card {
        padding: 18px;
    }

    .booking-card h2 {
        font-size: 1.6rem;
    }

    .form-grid,
    .hero__stats,
    .trust-rail,
    .room-grid,
    .promo-grid,
    .testimonial-grid,
    .service-grid,
    .quote-packages,
    .footer-grid,
    .gallery-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tile--wide,
    .gallery-tile--tall {
        grid-column: auto;
        grid-row: auto;
    }

    .hero__meta {
        gap: 10px;
    }

    .section {
        padding: 72px 0;
    }

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

    .room-card__head,
    .testimonial-card__footer {
        flex-direction: column;
        align-items: start;
    }

    .room-card__price {
        text-align: left;
    }

    .quote-band {
        padding: 78px 0;
    }

    .media-frame--tall,
    .media-frame--medium,
    .map-frame {
        min-height: 360px;
    }

    .footer-bottom {
        margin-top: 26px;
    }

    .admin-shell {
        width: min(100%, calc(100% - 20px));
    }

    .admin-flash-stack {
        width: min(100%, calc(100% - 20px));
    }

    .admin-hero,
    .admin-panel,
    .admin-rail,
    .admin-login-hero,
    .admin-login-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .admin-login-hero {
        min-height: 44vh;
    }

    .admin-login-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

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

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

    .admin-inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-inline-form select,
    .admin-inline-form .btn {
        width: 100%;
    }

    .admin-image-preview {
        grid-template-columns: 1fr;
    }

    .admin-table {
        min-width: 920px;
    }

    .admin-login-hero__grid {
        grid-template-columns: 1fr;
    }
}
