:root {
    --bg: #071a37;
    --card: rgba(8, 28, 57, 0.94);
    --ink: #eaf2ff;
    --muted: #9eb5d6;
    --accent: #8ed1ff;
    --accent-dark: #61b2e8;
    --line: rgba(155, 201, 243, 0.25);
    --gold: #c9ad79;
    --shadow: 0 12px 28px rgba(2, 10, 24, 0.42);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Archivo", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 10%, rgba(118, 192, 239, 0.18) 0%, transparent 38%),
        radial-gradient(circle at 85% 12%, rgba(201, 173, 121, 0.14) 0%, transparent 32%),
        linear-gradient(180deg, #0a2348 0%, #061a37 52%, #040f22 100%);
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(142, 209, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(142, 209, 255, 0.14) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 48%, black 36%, transparent 80%);
}

a {
    color: var(--accent);
}

.site-header,
.site-footer,
main {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(155, 201, 243, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand-text {
    line-height: 1;
}

.main-nav {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(6, 23, 47, 0.94);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    display: block;
    border-radius: 2px;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    border-color: rgba(155, 201, 243, 0.25);
    background: rgba(118, 192, 239, 0.08);
}

.main-nav a[aria-current="page"] {
    border-color: rgba(201, 173, 121, 0.4);
    background: rgba(201, 173, 121, 0.14);
}

.hero {
    background: linear-gradient(165deg, rgba(10, 35, 70, 0.95), rgba(5, 20, 42, 0.98));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1.4rem, 4vw, 3rem);
    margin-top: 1rem;
    animation: rise 600ms ease-out;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -24% auto auto -16%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(142, 209, 255, 0.2), transparent 70%);
    pointer-events: none;
}
.page-hero {
    background: linear-gradient(165deg, rgba(10, 35, 70, 0.95), rgba(5, 20, 42, 0.98));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1.2rem, 3.5vw, 2.6rem);
    margin-top: 1rem;
    animation: rise 600ms ease-out;
    box-shadow: var(--shadow);
}
.page-hero h1 {
    font-family: "Fraunces", serif;
    margin: 0.3rem 0 0.7rem;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--gold);
}

.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
    line-height: 1.15;
    margin: 0.3rem 0 1rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

.hero p {
    max-width: 68ch;
}

.badge {
    display: inline-block;
    background: rgba(201, 173, 121, 0.17);
    color: #f2dfb8;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin: 0;
    border: 1px solid rgba(201, 173, 121, 0.38);
}

.cta {
    display: inline-block;
    margin-top: 0.8rem;
    text-decoration: none;
    background: linear-gradient(180deg, #ccb27e 0%, #b7945d 100%);
    color: #0b1f3c;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(234, 210, 164, 0.5);
    box-shadow: 0 8px 20px rgba(2, 10, 24, 0.34);
    transition: transform 160ms ease, box-shadow 160ms ease;
    letter-spacing: 0.01em;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(2, 10, 24, 0.45);
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.cta-outline {
    background: rgba(118, 192, 239, 0.08);
    color: var(--ink);
    border: 1px solid rgba(155, 201, 243, 0.34);
    box-shadow: none;
}

.section {
    margin: 2.2rem 0;
}

.section h2 {
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cards article {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: transform 180ms ease, border-color 180ms ease;
}

.cards article:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 209, 255, 0.42);
}

.services-preview {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services-preview h2 {
    grid-column: 1 / -1;
    margin: 0 0 0.2rem;
    color: var(--gold);
    font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.audience-block {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.audience-list {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
}

.audience-list li {
    margin: 0.35rem 0;
}
.split-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.split-panel > div {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}
.quick-links {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.code {
    color: var(--muted);
    font-weight: 600;
}

.site-footer {
    margin: 2.5rem auto 5rem;
    color: var(--muted);
    border-top: 1px solid rgba(155, 201, 243, 0.2);
    padding-top: 1rem;
}

.contact-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
    max-width: 520px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.65rem;
    font: inherit;
    background: rgba(6, 23, 47, 0.9);
    color: var(--ink);
}
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.65rem;
    font: inherit;
    background: rgba(6, 23, 47, 0.9);
    color: var(--ink);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.card {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.booking-banner {
    background: linear-gradient(135deg, rgba(142, 209, 255, 0.14), rgba(201, 173, 121, 0.16));
    border: 1px solid rgba(142, 209, 255, 0.28);
    border-radius: 16px;
    padding: 1.1rem 1rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 14px 30px rgba(2, 10, 24, 0.26);
}

.booking-label {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dceeff;
    font-weight: 700;
}

.booking-banner h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--gold);
}

.booking-banner p {
    margin: 0 0 0.9rem;
    color: var(--ink);
}

.booking-cta {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}

.contact-list {
    margin: 0;
    padding-left: 1rem;
}

.contact-list li {
    margin: 0.4rem 0;
}
.form-note {
    color: var(--muted);
    margin-top: 0.6rem;
}

.form-status {
    margin: 0.3rem 0 0;
    color: #89e2b3;
    font-weight: 600;
}

.form-status.is-error {
    color: #ff9c96;
}
.checkbox-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 0.6rem;
    margin-top: 0.5rem;
}
.checkbox-row input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-row span {
    line-height: 1.5;
}
.honeypot {
    position: absolute;
    left: -9999px;
}

.contact-form button {
    width: fit-content;
    border: 0;
    cursor: pointer;
    margin-top: 0.75rem;
}

.contact-form button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.placeholder {
    color: #ffc8c3;
    font-weight: 700;
}

.link-button {
    border: 0;
    background: none;
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 0.6rem;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: min(780px, 94vw);
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.98), rgba(4, 17, 38, 0.98));
    color: #eaf2ff;
    border: 1px solid rgba(155, 201, 243, 0.28);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cookie-banner[hidden],
.cookie-panel[hidden] {
    display: none !important;
}

.cookie-banner a {
    color: #a6d8fb;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-panel {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(420px, 95vw);
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.98), rgba(4, 17, 38, 0.98));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-panel h3 {
    margin-top: 0;
    font-family: "Fraunces", serif;
}

.cookie-option {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin: 0.9rem 0;
}

.cookie-option input {
    margin-top: 0.22rem;
}

.btn {
    border: 1px solid rgba(155, 201, 243, 0.42);
    background: rgba(118, 192, 239, 0.08);
    color: #eaf2ff;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(180deg, #ccb27e 0%, #b7945d 100%);
    border-color: rgba(234, 210, 164, 0.5);
    color: #0b1f3c;
}

.policy-page {
    background: linear-gradient(165deg, rgba(9, 31, 62, 0.95), rgba(5, 19, 40, 0.98));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1rem, 3vw, 2rem);
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 740px) {
    .site-header {
        position: relative;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
    }

    .brand {
        order: 1;
    }

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

    body.has-menu-js .main-nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.2rem;
        background: rgba(6, 23, 47, 0.97);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 0.45rem;
    }

    body.has-menu-js .main-nav.is-open {
        display: flex;
    }

    body.has-menu-js .main-nav a {
        display: block;
        padding: 0.7rem 0.8rem;
        border-radius: 8px;
    }

    body.has-menu-js .main-nav a[aria-current="page"] {
        background: rgba(201, 173, 121, 0.2);
    }

    .brand-logo {
        height: 42px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-panel {
        right: 50%;
        transform: translateX(50%);
        width: min(500px, 95vw);
    }

    .hero-actions {
        width: 100%;
    }
}