:root {
    --bg: #f4f2ee;
    --surface: #ffffff;
    --surface-soft: #ece8e1;
    --text: #121212;
    --muted: #626262;
    --accent: #1a6aff;
    --accent-dark: #0e47aa;
    --line: rgba(18, 18, 18, 0.1);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    --radius: 24px;
    --content-width: min(1240px, calc(100vw - 48px));
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(26, 106, 255, 0.06), transparent 32%),
        linear-gradient(180deg, #f8f6f2, #f1eee7 48%, #f4f2ee);
    color: var(--text);
}

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

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

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

button,
input {
    font: inherit;
}

.section-shell,
.header-shell {
    width: var(--content-width);
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 94px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand__logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__text strong {
    font-size: 1.1rem;
}

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

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1;
}

.header-tools--nav-only {
    justify-content: flex-end;
}

.search-form {
    flex: 0 1 280px;
    min-width: min(240px, 100%);
}

.search-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(244, 242, 238, 0.95);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(26, 106, 255, 0.12);
}

.site-nav {
    position: relative;
}

.nav-list,
.submenu,
.bullet-list,
.page-links,
.link-cluster {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-link--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link--button:hover,
.nav-item:focus-within > .nav-link--button {
    background: rgba(26, 106, 255, 0.1);
    color: var(--accent-dark);
}

.nav-link.is-active,
.nav-link--button.is-active,
.nav-item.is-active > .nav-link--button {
    background: var(--accent);
    color: #ffffff;
}

.nav-link.is-active:hover,
.nav-link--button.is-active:hover,
.nav-item.is-active:focus-within > .nav-link--button {
    background: var(--accent-dark);
    color: #ffffff;
}

.nav-link--button::after {
    content: "v";
    margin-left: 8px;
    font-size: 0.75rem;
}

.nav-item__split {
    display: flex;
    align-items: center;
}

.nav-item__split .nav-link {
    flex: 1;
}

.nav-item__chevron {
    padding: 6px 10px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text);
    font-size: 0.8rem;
    border-radius: 8px;
    line-height: 1;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.nav-item__chevron:hover,
.nav-item--has-children:hover .nav-item__chevron,
.nav-item--has-children:focus-within .nav-item__chevron {
    background: rgba(26, 106, 255, 0.1);
    color: var(--accent-dark);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: grid;
    gap: 6px;
    min-width: 240px;
    padding: 12px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.submenu a,
.submenu__link {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
}

.submenu a:hover,
.submenu__link:hover {
    background: rgba(26, 106, 255, 0.08);
    color: var(--accent-dark);
}

.submenu__link.is-active {
    background: rgba(26, 106, 255, 0.14);
    color: var(--accent-dark);
    font-weight: 700;
}

.nav-item--has-children:hover .submenu,
.nav-item--has-children:focus-within .submenu,
.nav-item--has-children.is-open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(26, 106, 255, 0.1);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--accent-dark);
}

.nav-backdrop {
    display: none;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(26, 106, 255, 0.1);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-section {
    padding: 64px 0 32px;
}

.intro-shell {
    padding: 42px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(26, 106, 255, 0.09), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.intro-shell h1,
.section-heading h2,
.feature-card h2,
.card__body h3,
.page-hero__content h1,
.info-card h2,
.info-card h3 {
    margin: 0;
    line-height: 1.15;
}

.intro-shell h1 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.intro-copy,
.section-heading p,
.feature-card p,
.card__copy p,
.cta-note,
.site-footer p,
.page-lead,
.info-card p,
.hero-tagline {
    color: var(--muted);
    line-height: 1.65;
}

.intro-copy {
    max-width: 62ch;
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.intro-actions,
.page-links,
.link-cluster,
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.intro-actions {
    margin-top: 28px;
}

.pill-link,
.cta-button,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pill-link {
    background: var(--accent);
    color: #ffffff;
}

.pill-link:hover,
.page-link:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.pill-link--ghost,
.page-link {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border: 1px solid var(--line);
}

.pill-link--ghost:hover {
    background: var(--surface);
}

.content-section {
    padding: 20px 0 8px;
}

.content-section--soft {
    padding: 28px 0 56px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: end;
}

.gallery-section {
    padding: 28px 0 56px;
}

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

.card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.12);
}

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

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.card:hover .card__media img {
    transform: scale(1.04);
}

.card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 24px;
    background: var(--surface-soft);
    flex: 1;
}

.card__body h3 {
    font-size: 1.35rem;
}

.card__copy {
    display: grid;
    gap: 6px;
}

.card__copy p {
    margin: 0;
}

.results-empty {
    margin: 24px 0 0;
    text-align: center;
}

.feature-grid,
.page-grid,
.facts-grid,
.image-gallery {
    display: grid;
    gap: 20px;
}

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

.page-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

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

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

.gallery-heading {
    margin: 0;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.feature-card,
.info-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.feature-card p,
.info-card p {
    margin: 14px 0 0;
}

.feature-media {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

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

.link-cluster {
    margin-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero__overlay {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.56)),
        linear-gradient(90deg, rgba(26, 106, 255, 0.16), rgba(255, 255, 255, 0));
}

.page-hero__content {
    padding: 72px 0;
    color: #ffffff;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.page-hero__content h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 4.4vw, 4.5rem);
}

.page-lead {
    max-width: 66ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags {
    margin-top: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.page-section {
    padding: 34px 0 56px;
}

.page-section--tight {
    padding-top: 18px;
}

.section-intro {
    max-width: 64ch;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

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

.booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.page-link--accent {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.page-link--accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
}

.bullet-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0.48)),
        linear-gradient(90deg, rgba(26, 106, 255, 0.08), rgba(255, 255, 255, 0));
    padding: 72px 0 52px;
}

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

.cta-button {
    min-height: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.cta-button:hover {
    background: rgba(26, 106, 255, 0.78);
    border-color: rgba(26, 106, 255, 0.78);
    transform: translateY(-2px);
}

.cta-note {
    max-width: 70ch;
    margin: 22px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-box {
    margin-top: 28px;
    padding: 26px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.welcome-box p {
    margin: 0;
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.5;
}

.site-footer {
    padding: 20px 0 36px;
}

.site-footer p {
    margin: 0;
}

.site-footer__inner {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-block {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-block--brand {
    padding-right: 24px;
}

.footer-heading {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-copy,
.footer-meta,
.footer-link-list a {
    color: var(--muted);
    line-height: 1.65;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-link-list a:hover {
    color: var(--accent-dark);
}

.footer-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
    .gallery-grid,
    .cta-grid,
    .image-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .feature-grid,
    .page-grid,
    .facts-grid,
    .footer-grid,
    .showcase-grid,
    .booking-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    /* backdrop-filter creates a fixed-positioning containing block in Chrome/Safari,
       which traps the slide-in panel inside the header's ~86px height.
       Use a solid background instead so position:fixed children reach the viewport. */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.97);
    }

    .header-shell {
        min-height: 86px;
        gap: 16px;
        flex-wrap: nowrap;
        padding: 14px 0;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
        position: relative;
        z-index: 60;
    }

    .header-tools {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 360px);
        max-width: 100%;
        padding: 88px 18px 24px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -20px 0 48px rgba(0, 0, 0, 0.16);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        overflow-y: auto;
        z-index: 55;
    }

    .header-tools.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        padding: 0;
        background: rgba(18, 18, 18, 0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 50;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-tools--nav-only {
        flex-direction: column;
        justify-content: flex-start;
    }

    .search-form {
        flex-basis: auto;
        min-width: 0;
        width: 100%;
    }

    .site-nav {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .nav-link,
    .nav-link--button {
        justify-content: space-between;
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-item__split {
        width: 100%;
    }

    .nav-item__chevron {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .submenu {
        position: static;
        min-width: 0;
        margin-top: 6px;
        box-shadow: none;
        border-radius: 16px;
        background: rgba(244, 242, 238, 0.96);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item--has-children:hover .submenu,
    .nav-item--has-children:focus-within .submenu {
        display: none;
    }

    .nav-item--has-children.is-open .submenu {
        display: grid;
    }

    .intro-section {
        padding-top: 36px;
    }

    .intro-shell,
    .feature-card,
    .info-card,
    .site-footer__inner {
        padding: 24px;
    }

    .footer-block--brand {
        padding-right: 0;
    }

    .page-hero__content {
        padding: 56px 0;
    }
}

@media (max-width: 640px) {
    :root {
        --content-width: min(100vw - 28px, 1240px);
    }

    .brand__logo {
        width: 54px;
        height: 54px;
    }

    .gallery-grid,
    .cta-grid,
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .intro-shell h1,
    .page-hero__content h1 {
        max-width: none;
    }

    .cta-overlay {
        padding: 48px 0 36px;
    }
}

/* ── Shared Stat Strip ───────────────────────────────────────────── */
.stat-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-cell {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-cell__value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-cell__label {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}
/* Link variant */
a.stat-cell {
    text-decoration: none;
    color: var(--text);
    transition: background 0.18s;
}
a.stat-cell:hover { background: rgba(26, 106, 255, 0.04); }
a.stat-cell .stat-cell__value {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--accent-dark);
}
@media (max-width: 640px) {
    .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(3),
    .stat-cell:nth-child(4) { border-top: 1px solid var(--line); }
}
