/* ==========================================================================
   Cheerfulmoment.online — casino hotel & resort
   Shared stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Layout helpers
   4.  Typography & section headers
   5.  Buttons, badges, pills
   6.  Header & navigation
   7.  Hero compositions
   8.  Content sections (split, cards, stats, timeline, editorial, quote)
   9.  Rooms, events & pricing
   10. Forms & alerts
   11. Map
   12. CTA banners
   13. Policy pages
   14. Footer
   15. Motion / reveal
   16. Responsive
   ========================================================================== */

/* ------------------------------ 1. Tokens ------------------------------- */
:root {
    --iceberg: #e2e8e4;
    --azure: #006c84;
    --blue-topaz: #6eb5c0;
    --sunrise: #ffccbb;

    /* Extended neutrals for contrast */
    --azure-deep: #00495a;
    --azure-night: #062b35;
    --ink: #10262c;
    --ink-soft: #40595f;
    --line: #d3ddd8;
    --white: #ffffff;
    --paper: #f7faf8;
    --sunrise-deep: #b5602f;

    /* Typography */
    --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --font-body: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --fs-hero: clamp(2.4rem, 1.4rem + 3.6vw, 4.4rem);
    --fs-h2: clamp(1.9rem, 1.35rem + 1.9vw, 3rem);
    --fs-h3: clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem);
    --fs-h4: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
    --fs-body: clamp(1rem, 0.97rem + 0.16vw, 1.06rem);
    --fs-small: 0.875rem;
    --fs-micro: 0.76rem;
    --tracking-wide: 0.18em;

    /* Spacing */
    --space-3xs: 0.25rem;
    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.25rem;
    --space-xl: 3.25rem;
    --space-2xl: clamp(3.5rem, 2rem + 5vw, 6.5rem);

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(16, 38, 44, 0.06);
    --shadow-sm: 0 6px 18px rgba(16, 38, 44, 0.07);
    --shadow-md: 0 16px 38px rgba(16, 38, 44, 0.1);
    --shadow-lg: 0 30px 70px rgba(6, 43, 53, 0.18);
    --shadow-focus: 0 0 0 3px rgba(0, 108, 132, 0.28);

    /* Motion */
    --t-fast: 0.18s ease;
    --t-base: 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    --t-slow: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);

    /* Containers */
    --container: 1240px;
    --container-narrow: 880px;
    --container-wide: 1440px;
    --gutter: clamp(1.1rem, 0.6rem + 2vw, 2.5rem);

    /* Overlays */
    --overlay-hero: linear-gradient(115deg, rgba(6, 43, 53, 0.9) 0%, rgba(0, 73, 90, 0.72) 45%, rgba(110, 181, 192, 0.42) 100%);
    --overlay-soft: linear-gradient(180deg, rgba(6, 43, 53, 0.05) 0%, rgba(6, 43, 53, 0.55) 100%);
    --overlay-panel: linear-gradient(140deg, rgba(0, 108, 132, 0.94), rgba(6, 43, 53, 0.94));
    --header-h: 88px;
}

/* ------------------------------ 2. Reset -------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--paper);
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--azure-night);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.01em;
}

p { margin: 0 0 var(--space-sm); }
p:last-child { margin-bottom: 0; }

a { color: var(--azure); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--azure-deep); }

ul, ol { margin: 0 0 var(--space-sm); padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

button { font: inherit; cursor: pointer; }

:focus-visible {
    outline: 3px solid var(--azure);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

::selection { background: var(--sunrise); color: var(--azure-night); }

.skip-link {
    position: absolute;
    left: var(--space-sm);
    top: -100px;
    z-index: 200;
    background: var(--azure);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top var(--t-fast);
}
.skip-link:focus { top: var(--space-sm); color: var(--white); }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

/* ------------------------------ 3. Layout ------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section { padding-block: var(--space-2xl); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 1.6rem + 3vw, 4rem); }
.section--paper { background: var(--white); }
.section--iceberg { background: var(--iceberg); }
.section--tinted {
    background: linear-gradient(180deg, var(--paper) 0%, var(--iceberg) 100%);
}
.section--deep {
    background: var(--azure-night);
    color: rgba(255, 255, 255, 0.86);
}
.section--deep h2,
.section--deep h3,
.section--deep h4 { color: var(--white); }

.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.flow > * + * { margin-top: var(--space-sm); }

/* --------------------- 4. Typography & section heads -------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: var(--space-xs);
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--azure), var(--sunrise));
    border-radius: 2px;
}
.section--deep .eyebrow { color: var(--sunrise); }
.section--deep .eyebrow::before { background: linear-gradient(90deg, var(--sunrise), var(--blue-topaz)); }

.section-head { max-width: 62ch; margin-bottom: var(--space-xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.03rem; }
.section--deep .section-head p { color: rgba(255, 255, 255, 0.78); }

.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--ink-soft); }
.section--deep .lead { color: rgba(255, 255, 255, 0.82); }

.rule {
    width: 64px; height: 3px; border: 0; border-radius: 3px;
    background: linear-gradient(90deg, var(--azure), var(--blue-topaz) 55%, var(--sunrise));
    margin: 0 0 var(--space-md);
}
.section-head--center .rule { margin-inline: auto; }

.text-note {
    font-size: var(--fs-small);
    color: var(--ink-soft);
    font-style: italic;
}
.section--deep .text-note { color: rgba(255, 255, 255, 0.7); }

/* ------------------------- 5. Buttons & badges -------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    transition: transform var(--t-base), box-shadow var(--t-base), background-color var(--t-base), color var(--t-base), border-color var(--t-base);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary {
    background: linear-gradient(120deg, var(--azure), #00849f);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(0, 108, 132, 0.28);
}
.btn--primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 108, 132, 0.34);
}
.btn--secondary {
    background: var(--sunrise);
    color: var(--azure-night);
    box-shadow: 0 12px 26px rgba(255, 204, 187, 0.45);
}
.btn--secondary:hover { color: var(--azure-night); transform: translateY(-2px); background: #ffdccf; }
.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); transform: translateY(-2px); }
.btn--outline {
    background: transparent;
    border-color: var(--azure);
    color: var(--azure);
}
.btn--outline:hover { background: var(--azure); color: var(--white); transform: translateY(-2px); }
.btn--wide { width: 100%; }
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}
.btn-row--center { justify-content: center; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-micro);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: rgba(0, 108, 132, 0.1);
    color: var(--azure-deep);
}
.badge--sunrise { background: var(--sunrise); color: var(--sunrise-deep); }
.badge--topaz { background: rgba(110, 181, 192, 0.24); color: var(--azure-deep); }
.badge--light { background: rgba(255, 255, 255, 0.16); color: var(--white); }

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: var(--space-sm) 0 0;
    padding: 0;
}
.pill-list li {
    margin: 0;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: var(--fs-small);
    color: var(--ink-soft);
}

/* --------------------------- 6. Header & nav ---------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(211, 221, 216, 0.9);
    transition: box-shadow var(--t-base), background-color var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.985); }

.header-topbar {
    background: var(--azure-night);
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fs-small);
}
.header-topbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem var(--space-md);
    padding-block: 0.5rem;
}
.header-topbar a { color: rgba(255, 255, 255, 0.88); }
.header-topbar a:hover { color: var(--sunrise); }
.topbar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}
.topbar-contacts li { display: inline-flex; align-items: center; gap: 0.45rem; margin: 0; }
.topbar-contacts svg { width: 15px; height: 15px; color: var(--blue-topaz); flex-shrink: 0; }
.topbar-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: var(--fs-micro);
    color: var(--sunrise);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
    padding-block: 0.6rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--azure-night); }
.logo img { width: 48px; height: 48px; border-radius: 12px; box-shadow: var(--shadow-xs); }
.logo span {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.logo small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--azure);
}
.logo:hover { color: var(--azure); }

.header-actions { display: flex; align-items: center; gap: var(--space-md); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.1rem + 1.4vw, 1.6rem);
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav li { margin: 0; }
.main-nav a {
    position: relative;
    display: inline-block;
    padding: 0.45rem 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--azure), var(--sunrise));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--azure); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border-color var(--t-fast), background-color var(--t-fast);
}
.nav-toggle:hover { border-color: var(--azure); }
.nav-toggle-box { position: relative; width: 22px; height: 14px; }
.nav-toggle-box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--azure-night);
    transition: transform var(--t-base), opacity var(--t-fast), top var(--t-base);
}
.nav-toggle-box span:nth-child(1) { top: 0; }
.nav-toggle-box span:nth-child(2) { top: 6px; }
.nav-toggle-box span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 43, 53, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
    z-index: 90;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* ------------------------------ 7. Heroes ------------------------------- */
.hero {
    position: relative;
    isolation: isolate;
    color: var(--white);
    overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--overlay-hero);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), var(--paper));
    z-index: -1;
}
.hero .container { position: relative; z-index: 1; }

.hero--home { padding-block: clamp(3.5rem, 2rem + 8vw, 7.5rem); }
.hero--page { padding-block: clamp(3rem, 2rem + 5vw, 5.5rem); }

.hero__inner { max-width: 780px; }
.hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}
.hero__brand img { width: 32px; height: 32px; border-radius: 9px; }
.hero h1 {
    font-size: var(--fs-hero);
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 8px 30px rgba(6, 43, 53, 0.35);
}
.hero h1 em { font-style: italic; color: var(--sunrise); }
.hero p { color: rgba(255, 255, 255, 0.9); max-width: 62ch; }
.hero__support {
    font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.2rem);
    margin-bottom: var(--space-md);
}

.offline-flag {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.9rem;
    padding: 0.85rem 1.5rem;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 204, 187, 0.94);
    color: var(--azure-night);
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--azure);
}
.offline-flag__main {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 0.1em;
}
.offline-flag__sub {
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero__meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.85rem;
    margin-top: var(--space-md);
    font-size: var(--fs-small);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: var(--space-lg);
    font-size: var(--fs-small);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}
.hero__scroll:hover { color: var(--sunrise); }
.hero__scroll span.dot {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}
.hero-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    transition: transform var(--t-base), background-color var(--t-base);
}
.hero-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.18); }
.hero-card h2, .hero-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}
.hero-card p { font-size: var(--fs-small); margin: 0; color: rgba(255, 255, 255, 0.82); }
.hero-card svg { width: 26px; height: 26px; color: var(--sunrise); margin-bottom: 0.6rem; }

.breadcrumbs {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: var(--space-sm);
}
.breadcrumbs ol {
    display: flex; flex-wrap: wrap; gap: 0.45rem;
    list-style: none; margin: 0; padding: 0;
}
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.45rem; opacity: 0.6; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.9); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs a:hover { color: var(--sunrise); }

/* --------------------------- 8. Content blocks -------------------------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(1.8rem, 1rem + 4vw, 4.5rem);
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.split__media::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--blue-topaz);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.split__badge {
    position: absolute;
    right: clamp(-10px, -1vw, 0px);
    bottom: 22px;
    background: var(--white);
    color: var(--azure-night);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 240px;
}
.split__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--azure);
    line-height: 1;
}
.split__badge span { font-size: var(--fs-small); color: var(--ink-soft); }

.feature-list { list-style: none; margin: var(--space-md) 0 0; padding: 0; }
.feature-list li {
    position: relative;
    padding-left: 2.1rem;
    margin-bottom: 0.85rem;
    color: var(--ink-soft);
}
.feature-list li strong { color: var(--azure-night); display: block; font-weight: 600; }
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.42em;
    width: 1.2rem; height: 1.2rem;
    border-radius: 50%;
    background: var(--sunrise);
    box-shadow: inset 0 0 0 2px var(--azure);
}
.feature-list--check li::after {
    content: "";
    position: absolute;
    left: 0.4rem; top: 0.72em;
    width: 0.32rem; height: 0.6rem;
    border: solid var(--azure);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.section--deep .feature-list li { color: rgba(255, 255, 255, 0.82); }
.section--deep .feature-list li strong { color: var(--white); }

/* Offline disclaimer panel */
.offline-panel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: start;
    padding: clamp(1.4rem, 1rem + 1.4vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 204, 187, 0.5), rgba(226, 232, 228, 0.85));
    border: 1px solid rgba(0, 108, 132, 0.24);
    box-shadow: var(--shadow-sm);
}
.offline-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--azure);
    color: var(--white);
    flex-shrink: 0;
}
.offline-panel__icon svg { width: 26px; height: 26px; }
.offline-panel h3 {
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--azure-deep);
    margin-bottom: 0.5rem;
}
.offline-panel p {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
    color: var(--azure-night);
    font-weight: 500;
}
.offline-panel--deep {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}
.offline-panel--deep p { color: var(--white); }
.offline-panel--deep h3 { color: var(--sunrise); }

/* Icon cards */
.card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.3rem, 1rem + 0.9vw, 2rem);
    box-shadow: var(--shadow-xs);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(110, 181, 192, 0.6); }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--ink-soft); }
.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border-radius: 16px;
    margin-bottom: var(--space-sm);
    background: linear-gradient(140deg, rgba(0, 108, 132, 0.12), rgba(110, 181, 192, 0.28));
    color: var(--azure);
}
.card__icon svg { width: 26px; height: 26px; }
.card--sunrise .card__icon { background: linear-gradient(140deg, rgba(255, 204, 187, 0.8), rgba(255, 204, 187, 0.35)); color: var(--sunrise-deep); }
.card--outline { background: transparent; border-style: dashed; box-shadow: none; }
.section--deep .card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}
.section--deep .card p { color: rgba(255, 255, 255, 0.78); }
.section--deep .card__icon { background: rgba(255, 255, 255, 0.12); color: var(--sunrise); }

.card__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(0, 108, 132, 0.22);
    margin-bottom: 0.4rem;
}

/* Asymmetric feature block */
.asym {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.8rem, 1rem + 3vw, 3.5rem);
    align-items: start;
}
.asym__panel {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    border-radius: var(--radius-lg);
    background: var(--overlay-panel);
    color: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.asym__panel::after {
    content: "";
    position: absolute;
    width: 220px; height: 220px;
    right: -80px; bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 187, 0.35), transparent 70%);
}
.asym__panel h2 { color: var(--white); }
.asym__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}
.mini-feature {
    display: flex;
    gap: 0.85rem;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    transition: border-color var(--t-base), transform var(--t-base);
}
.mini-feature:hover { border-color: var(--blue-topaz); transform: translateY(-3px); }
.mini-feature svg { width: 22px; height: 22px; color: var(--azure); flex-shrink: 0; margin-top: 3px; }
.mini-feature h3 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; margin-bottom: 0.15rem; }
.mini-feature p { font-size: var(--fs-small); color: var(--ink-soft); margin: 0; }

/* Stats strip */
.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.stat { text-align: center; padding: var(--space-2xs); }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.9rem);
    line-height: 1;
    color: var(--azure);
}
.stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: var(--fs-small);
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}
.stats--deep { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.16); }
.stats--deep .stat strong { color: var(--sunrise); }
.stats--deep .stat span { color: rgba(255, 255, 255, 0.78); }
.stats--deep .stat + .stat { border-left-color: rgba(255, 255, 255, 0.16); }

/* Editorial block */
.editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
    align-items: center;
}
.editorial__text { grid-column: 1 / span 6; }
.editorial__text--right { grid-column: 7 / -1; }
.editorial__media { grid-column: 7 / -1; }
.editorial__media--left { grid-column: 1 / span 6; }
.editorial__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.editorial__stack { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2, 1fr); }
.editorial__stack img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

/* Quote */
.quote {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding: clamp(1.8rem, 1.2rem + 2.5vw, 3.5rem);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.quote::before {
    content: "\201C";
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    width: 62px; height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--azure);
    color: var(--sunrise);
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1.6;
}
.quote blockquote {
    margin: var(--space-lg) 0 var(--space-sm);
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.05rem + 1.1vw, 2rem);
    line-height: 1.35;
    color: var(--azure-night);
}
.quote cite {
    font-style: normal;
    font-size: var(--fs-small);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--azure);
    font-weight: 700;
}

/* Timeline / process */
.timeline { position: relative; display: grid; gap: var(--space-md); }
.timeline::before {
    content: "";
    position: absolute;
    left: 26px; top: 10px; bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--azure), var(--blue-topaz), var(--sunrise));
    border-radius: 2px;
}
.timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    align-items: start;
}
.timeline__marker {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 2px solid var(--azure);
    color: var(--azure);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-xs);
    z-index: 1;
}
.timeline__body h3 { margin-bottom: 0.25rem; }
.timeline__body p { color: var(--ink-soft); margin: 0; }

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-sm);
    counter-reset: step;
}
.step {
    position: relative;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--azure);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}
.step h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.3rem; }
.step p { font-size: var(--fs-small); color: var(--ink-soft); margin: 0; }
.step::after {
    content: "";
    position: absolute;
    top: 50%; right: -13px;
    width: 12px; height: 12px;
    border-top: 2px solid var(--blue-topaz);
    border-right: 2px solid var(--blue-topaz);
    transform: translateY(-50%) rotate(45deg);
}
.step:last-child::after { display: none; }

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}
.gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.gallery img {
    width: 100%; height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.6rem 0.9rem 0.7rem;
    background: var(--overlay-soft);
    color: var(--white);
    font-size: var(--fs-small);
    font-weight: 600;
}
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery figure:first-child img { aspect-ratio: 1 / 1; }

/* ------------------- 9. Rooms, events & pricing ------------------------- */
.rooms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}
.room-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card--featured { border-color: var(--azure); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; }
.room-card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.room-card__tag {
    position: absolute;
    top: var(--space-sm); left: var(--space-sm);
}
.room-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-md); }
.room-card__body h3 { margin-bottom: 0.35rem; }
.room-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px dashed var(--line);
}
.room-card__price strong {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--azure);
    line-height: 1;
}
.room-card__price span { font-size: var(--fs-small); color: var(--ink-soft); }
.room-card ul { list-style: none; margin: 0 0 var(--space-md); padding: 0; }
.room-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.94rem;
    color: var(--ink-soft);
}
.room-card ul li::before {
    content: "";
    position: absolute;
    left: 0.15rem; top: 0.52em;
    width: 0.35rem; height: 0.68rem;
    border: solid var(--blue-topaz);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.room-card .btn { margin-top: auto; }

.venue-list { display: grid; gap: var(--space-md); }
.venue {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.2rem, 0.8rem + 2vw, 2.75rem);
    align-items: center;
    padding: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.venue:nth-child(even) .venue__media { order: 2; }
.venue__media img {
    width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.venue__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}
.venue__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--azure);
    white-space: nowrap;
}
.venue__price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-soft); }
.venue__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-sm); }
.venue__cols h4 {
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: 0.4rem;
}
.venue__cols ul { margin: 0; padding-left: 1.1rem; font-size: 0.93rem; color: var(--ink-soft); }

.price-note {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(110, 181, 192, 0.14);
    border-left: 5px solid var(--azure);
    font-size: 0.96rem;
    color: var(--azure-night);
}
.price-note svg { width: 22px; height: 22px; color: var(--azure); flex-shrink: 0; margin-top: 3px; }

/* FAQ accordion */
.faq { display: grid; gap: var(--space-2xs); max-width: 860px; margin-inline: auto; }
.faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
}
.faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: none;
    border: 0;
    text-align: left;
    font-weight: 600;
    color: var(--azure-night);
    font-size: 1rem;
}
.faq__trigger:hover { color: var(--azure); }
.faq__icon {
    position: relative;
    width: 20px; height: 20px;
    flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background: var(--azure);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-fast);
}
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base);
}
.faq__panel > div { padding: 0 var(--space-md) var(--space-md); color: var(--ink-soft); }

/* --------------------------- 10. Forms & alerts ------------------------- */
.form-card {
    padding: clamp(1.4rem, 1rem + 1.6vw, 2.5rem);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm) var(--space-md);
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--azure-night);
}
.field .req { color: var(--sunrise-deep); }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font: inherit;
    font-size: 0.96rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--azure) 50%), linear-gradient(135deg, var(--azure) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.4rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--azure);
    box-shadow: var(--shadow-focus);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #b3261e;
    background: #fff6f5;
}
.field .hint { font-size: var(--fs-micro); color: var(--ink-soft); }
.field-error {
    display: none;
    font-size: var(--fs-small);
    color: #8c1d18;
    font-weight: 600;
}
.field-error::before { content: "! "; font-weight: 800; }
.field-error.is-visible { display: block; }

.field--consent {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    background: rgba(110, 181, 192, 0.1);
    flex-wrap: wrap;
}
.field--consent input[type="checkbox"] {
    width: 20px; height: 20px;
    margin-top: 2px;
    accent-color: var(--azure);
    flex-shrink: 0;
}
.field--consent label { font-weight: 500; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.field--consent .field-error { flex-basis: 100%; }

.alert {
    display: none;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.96rem;
}
.alert.is-visible { display: flex; }
.alert svg { width: 24px; height: 24px; flex-shrink: 0; }
.alert--success {
    background: rgba(110, 181, 192, 0.18);
    border: 1px solid var(--azure);
    color: var(--azure-night);
}
.alert--error {
    background: #fdecea;
    border: 1px solid #b3261e;
    color: #8c1d18;
}
.alert strong { display: block; font-size: 1.02rem; }

/* Contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(0, 108, 132, 0.12), rgba(110, 181, 192, 0.3));
    color: var(--azure);
    margin-bottom: var(--space-2xs);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin: 0; }
.contact-card a, .contact-card p { font-size: 0.96rem; word-break: break-word; margin: 0; }
.contact-card span.meta { font-size: var(--fs-small); color: var(--ink-soft); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table th,
.hours-table td { text-align: left; padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
.hours-table th { font-weight: 600; color: var(--azure-night); }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }

/* ------------------------------ 11. Map --------------------------------- */
.map-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.4rem, 1rem + 2.5vw, 3rem);
    align-items: center;
}
.map-frame {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    background: var(--iceberg);
}
.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------------------------- 12. CTA banners --------------------------- */
.cta-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 1.4rem + 3vw, 4rem);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.cta-banner__media { position: absolute; inset: 0; z-index: -2; }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(6, 43, 53, 0.92), rgba(0, 108, 132, 0.82));
}
.cta-banner h2 { color: var(--white); font-size: var(--fs-h2); }
.cta-banner p { color: rgba(255, 255, 255, 0.88); max-width: 62ch; margin-inline: auto; }
.cta-banner .btn-row { justify-content: center; }

.cta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) clamp(1.2rem, 0.8rem + 2vw, 2.5rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--sunrise), rgba(226, 232, 228, 0.9));
    border: 1px solid rgba(0, 108, 132, 0.18);
}
.cta-strip h2, .cta-strip h3 { margin-bottom: 0.2rem; }
.cta-strip p { color: var(--ink-soft); margin: 0; }
.cta-strip .btn-row { margin-top: 0; }

/* --------------------------- 13. Policy pages --------------------------- */
.policy { display: grid; grid-template-columns: 260px 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
.policy__toc {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.policy__toc h2 {
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--azure);
}
.policy__toc ol { margin: 0; padding-left: 1.1rem; font-size: 0.92rem; }
.policy__toc li { margin-bottom: 0.35rem; }

.policy__body {
    padding: clamp(1.4rem, 1rem + 2vw, 2.75rem);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.policy__body h2 {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
    margin-top: var(--space-lg);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--line);
}
.policy__body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.policy__body p, .policy__body li { color: var(--ink-soft); }
.policy__body ul { padding-left: 1.2rem; }
.policy__contact {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(110, 181, 192, 0.14);
}
.policy__contact ul { list-style: none; padding: 0; margin: 0; }

/* ------------------------------ 14. Footer ------------------------------ */
.site-footer {
    background: var(--azure-night);
    color: rgba(255, 255, 255, 0.76);
    padding-top: var(--space-2xl);
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azure), var(--blue-topaz), var(--sunrise));
}
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--sunrise); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
    padding-bottom: var(--space-xl);
}
.footer-col h3 {
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--sunrise);
    margin-bottom: var(--space-sm);
}
.footer-brand .logo { color: var(--white); margin-bottom: var(--space-sm); }
.footer-brand .logo span { color: var(--white); }
.footer-brand .logo small { color: var(--blue-topaz); }
.footer-brand p { font-size: 0.94rem; }

.footer-list { list-style: none; margin: 0; padding: 0; font-size: 0.94rem; }
.footer-list li { margin-bottom: 0.6rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-list svg { width: 17px; height: 17px; color: var(--blue-topaz); flex-shrink: 0; margin-top: 4px; }

.footer-company { font-size: 0.92rem; }
.footer-company dt {
    font-size: var(--fs-micro);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.footer-company dd { margin: 0 0 0.7rem; color: rgba(255, 255, 255, 0.86); }

.footer-hours { list-style: none; margin: 0; padding: 0; font-size: 0.93rem; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}
.footer-hours li:last-child { border-bottom: 0; }
.footer-hours span:last-child { color: var(--white); white-space: nowrap; }

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: var(--space-sm);
    padding: 0;
    list-style: none;
}
.social-row li { margin: 0; }
.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.85);
    transition: transform var(--t-base), background-color var(--t-base), color var(--t-base);
}
.social-row a:hover {
    transform: translateY(-3px);
    background: var(--sunrise);
    color: var(--azure-night);
    border-color: var(--sunrise);
}
.social-row svg { width: 19px; height: 19px; }

.footer-disclaimer {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-block: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    font-size: var(--fs-small);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav li { margin: 0; }

/* --------------------------- 15. Motion / reveal ------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

.no-js .reveal { opacity: 1; transform: none; }

/* ---------------------------- 16. Responsive ---------------------------- */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-col--hours { grid-column: span 3; }
}

@media (max-width: 1024px) {
    :root { --header-h: 76px; }
    .split, .map-block, .asym, .policy, .venue { grid-template-columns: 1fr; }
    .split--reverse .split__media, .venue:nth-child(even) .venue__media { order: 0; }
    .split__media::before { display: none; }
    .split__badge { right: 0; }
    .asym__panel { position: static; }
    .policy__toc { position: static; }
    .editorial__text,
    .editorial__text--right,
    .editorial__media,
    .editorial__media--left { grid-column: 1 / -1; }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step::after { display: none; }
    .rooms, .contact-cards, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery figure:first-child { grid-column: span 2; grid-row: auto; }
    .gallery figure:first-child img { aspect-ratio: 16 / 9; }
}

@media (max-width: 900px) {
    .header-topbar .topbar-note { display: none; }
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 95;
        width: min(320px, 86vw);
        height: 100dvh;
        padding: calc(var(--header-h) + 1.5rem) var(--space-md) var(--space-md);
        background: var(--white);
        box-shadow: -20px 0 60px rgba(6, 43, 53, 0.2);
        transform: translateX(105%);
        transition: transform var(--t-base);
        overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
    .main-nav a {
        display: block;
        padding: 0.85rem 0.6rem;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
    }
    .main-nav a::after { display: none; }
    .main-nav a:hover,
    .main-nav a[aria-current="page"] { background: rgba(110, 181, 192, 0.16); }
    .main-nav .nav-cta { margin-top: var(--space-md); }
    .main-nav .nav-cta .btn { width: 100%; }
    .header-actions .btn--header { display: none; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 768px) {
    .grid--2, .form-grid, .venue__cols, .editorial__stack, .asym__grid { grid-template-columns: 1fr; }
    .rooms, .contact-cards, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .hero-cards { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .stat + .stat { border-left: 0; border-top: 1px solid var(--line); padding-top: var(--space-sm); }
    .stats--deep .stat + .stat { border-top-color: rgba(255, 255, 255, 0.16); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col--hours { grid-column: auto; }
    .offline-panel { grid-template-columns: 1fr; }
    .cta-strip { flex-direction: column; align-items: flex-start; text-align: left; }
    .timeline::before { left: 20px; }
    .timeline__item { grid-template-columns: 44px 1fr; gap: var(--space-sm); }
    .timeline__marker { width: 42px; height: 42px; font-size: 0.85rem; }
    .map-frame { padding-top: 78%; }
}

@media (max-width: 560px) {
    .steps { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .gallery figure:first-child { grid-column: auto; }
    .header-topbar .container { justify-content: flex-start; }
    .logo img { width: 42px; height: 42px; }
    .logo span { font-size: 1.1rem; }
    .btn { width: 100%; }
    .btn-row { flex-direction: column; align-items: stretch; }
    .nav-toggle { width: 44px; }
    .offline-flag { width: 100%; }
    .hero__brand { font-size: 0.92rem; }
}

@media (max-width: 380px) {
    :root { --gutter: 1rem; }
    .logo small { display: none; }
    .topbar-contacts { font-size: 0.78rem; }
    .quote::before { width: 50px; height: 50px; font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .card:hover, .room-card:hover, .step:hover, .contact-card:hover, .btn:hover { transform: none; }
}

@media print {
    .site-header, .site-footer, .nav-toggle, .cta-banner, .map-frame, .cookie-banner { display: none !important; }
    body { background: #fff; color: #000; }
}

/* ---------------------------- 13. Cookie banner --------------------------- */
.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    background: var(--azure-night);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--sunrise);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1 1 42ch;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}
.cookie-banner__text a {
    color: var(--sunrise);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--white); }
.cookie-banner__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.cookie-banner__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}
.cookie-banner__close:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.cookie-banner:focus-within { outline: 2px solid var(--sunrise); outline-offset: -2px; }

@media (max-width: 600px) {
    .cookie-banner__inner { flex-direction: column; align-items: stretch; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__actions .btn { flex: 1; }
}
