        @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

        :root {
            --primary: #0969ff;
            --accent: #6d3ff0;
            --ink: #102033;
            --muted: #4a5568;
            --line: rgba(20, 35, 59, 0.1);
            --paper: #ffffff;
            --panel: #ffffff;
            --bg: #f7faff;
            --soft: #eef4ff;
            --soft-strong: #dde9ff;
            --shadow: 0 1px 0 rgba(20, 35, 59, 0.04);
            --shadow-strong: 0 1px 0 rgba(20, 35, 59, 0.06);
            --radius-xl: 14px;
            --radius-lg: 12px;
            --radius-md: 10px;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--bg);
            font-family: var(--body-font, "Manrope", "Segoe UI", sans-serif);
        }

        body::before {
            content: none;
        }

        h1, h2, h3 { font-family: var(--heading-font, "Sora", sans-serif); }

        a { color: inherit; }

        .wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

        .public-brand-bar {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(16, 32, 51, 0.08);
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
        }

        .public-brand-wrap {
            width: min(1180px, calc(100% - 32px));
            min-height: 68px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .public-brand-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--ink);
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
        }

        .public-brand-link img {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            object-fit: cover;
        }

        .public-brand-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .public-brand-tabs {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px;
            border-radius: 999px;
            border: 1px solid rgba(16, 32, 51, 0.08);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
        }

        .public-brand-tab,
        .public-brand-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

        .public-brand-tab {
            border: 1px solid transparent;
            color: var(--ink);
            white-space: nowrap;
        }

        .public-brand-tab.is-active {
            border-color: transparent;
            background: var(--primary);
            color: white;
            box-shadow: 0 14px 28px rgba(16, 32, 51, 0.16);
        }

        .public-brand-cta {
            border: 1px solid rgba(16, 32, 51, 0.1);
            background: rgba(255, 255, 255, 0.76);
            color: var(--muted);
            white-space: nowrap;
        }

        .hero {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: 36px 0 34px;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            filter: blur(24px);
            pointer-events: none;
        }

        .hero::before {
            width: 340px;
            height: 340px;
            background: color-mix(in srgb, var(--primary) 18%, white);
            top: -160px;
            right: -90px;
        }

        .hero::after {
            width: 240px;
            height: 240px;
            background: color-mix(in srgb, var(--accent) 22%, white);
            bottom: -100px;
            left: -40px;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
            gap: 24px;
            align-items: center;
        }

        .hero-grid--compact {
            grid-template-columns: minmax(0, 860px);
            align-items: start;
        }

        .brand-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .public-breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin: 0 0 12px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .public-breadcrumbs a {
            color: var(--primary);
            text-decoration: none;
        }

        .brand-mark {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(16, 32, 51, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .eyebrow,
        .crumb {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(16, 32, 51, 0.08);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            text-decoration: none;
        }

        .eyebrow { color: var(--primary); }
        .crumb { color: var(--ink); }

        .hero h1 {
            margin: 16px 0 14px;
            font-size: clamp(36px, 4.8vw, 60px);
            line-height: 1.02;
        }

        .lead {
            max-width: 700px;
            margin: 0;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.65;
        }

        .hero-pills,
        .hero-actions,
        .booking-badges,
        .summary-pills,
        .time-meta,
        .section-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-pills,
        .summary-pills { margin-top: 22px; }

        .hero-actions {
            margin-top: 26px;
        }

        .hero-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(16, 32, 51, 0.1);
            background: rgba(255, 255, 255, 0.88);
            color: var(--ink);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .08em;
            text-decoration: none;
            text-transform: uppercase;
            white-space: nowrap;
            position: relative;
            z-index: 1;
            box-shadow: 0 16px 36px rgba(16, 32, 51, 0.08);
        }

        .hero-actions a.is-primary {
            border-color: transparent;
            background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 74%, #0f1e33));
            color: white;
            box-shadow: 0 20px 42px color-mix(in srgb, var(--primary) 24%, transparent);
        }

        .hero-pills span,
        .booking-badges span,
        .summary-pills span,
        .time-meta span,
        .section-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(16, 32, 51, 0.08);
            color: var(--ink);
            font-size: 13px;
            font-weight: 700;
        }

        .hero-visual {
            min-height: 400px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            background:
                linear-gradient(180deg, rgba(16, 32, 51, 0.02) 0%, rgba(16, 32, 51, 0.72) 100%),
                linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, white) 0%, color-mix(in srgb, var(--primary) 88%, #0f1e33) 100%);
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            padding: 28px;
            color: white;
        }

        .hero-visual.is-placeholder {
            color: var(--ink);
            border: 1px solid rgba(16, 32, 51, 0.08);
            background:
                radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 18%, white) 0, transparent 30%),
                radial-gradient(circle at bottom right, color-mix(in srgb, var(--primary) 12%, white) 0, transparent 32%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 255, 0.94) 100%);
        }

        .hero-visual,
        .surface {
            transform: translateZ(0);
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-visual.has-media,
        .gallery-visual.has-media {
            position: relative;
            background: #102033;
        }

        .hero-visual.has-media::after,
        .gallery-visual.has-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16, 32, 51, 0.04) 0%, rgba(16, 32, 51, 0.56) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-visual.has-media img,
        .gallery-visual.has-media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-visual.has-media > :not(img),
        .gallery-visual.has-media > :not(img) {
            position: relative;
            z-index: 2;
        }

        .hero-visual-copy {
            max-width: 420px;
        }

        .hero-visual-copy small {
            display: block;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .hero-visual-copy strong {
            display: block;
            font-size: 28px;
            line-height: 1.2;
        }

        .hero-visual-copy p {
            margin: 10px 0 0;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.7;
        }

        .hero-visual.is-placeholder .hero-visual-copy small {
            color: var(--primary);
        }

        .hero-visual.is-placeholder .hero-visual-copy strong {
            color: var(--ink);
        }

        .hero-visual.is-placeholder .hero-visual-copy p {
            color: var(--muted);
        }

        .hero-visual-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 420px;
        }

        .hero-visual-highlights span {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(16, 32, 51, 0.08);
            color: var(--ink);
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 12px 24px rgba(16, 32, 51, 0.06);
        }

        .surface {
            border: 1px solid rgba(16, 32, 51, 0.08);
            border-radius: var(--radius-xl);
            background: #ffffff;
            box-shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
            transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
        }

        .top-grid,
        .booking-grid,
        .detail-grid {
            display: grid;
            gap: 22px;
        }

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

        .trust-item {
            min-height: 128px;
            padding: 20px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(16, 32, 51, 0.08);
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 16px 44px rgba(16, 32, 51, 0.07);
            backdrop-filter: blur(10px);
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .trust-item:hover {
            transform: translateY(-2px);
            border-color: rgba(16, 32, 51, 0.14);
            box-shadow: 0 20px 46px rgba(16, 32, 51, 0.12);
        }

        .trust-item span {
            display: inline-grid;
            place-items: center;
            width: 38px;
            height: 38px;
            margin-bottom: 14px;
            border-radius: 14px;
            background: color-mix(in srgb, var(--primary) 14%, white);
            color: var(--primary);
            font-weight: 900;
        }

        .trust-item strong {
            display: block;
            font-size: 15px;
            line-height: 1.35;
        }

        .trust-item p {
            margin: 8px 0 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55;
        }

        .gallery-grid,
        .journey-grid {
            display: grid;
            gap: 18px;
        }

        .top-grid {
            grid-template-columns: minmax(0, 1fr);
            margin-bottom: 24px;
        }

        .booking-grid {
            grid-template-columns: minmax(0, 1fr) 360px;
            align-items: start;
        }

        .detail-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin-top: 24px;
            padding-bottom: 48px;
        }

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

        .journey-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            margin-top: 20px;
        }

        .story-card,
        .gallery-card,
        .journey-card,
        .quick-card,
        .booking-card,
        .availability-card,
        .detail-card,
        .reviews-card,
        .map-card {
            padding: 28px;
        }

        .section-head {
            margin-bottom: 18px;
        }

        .section-head h2 {
            margin: 10px 0 0;
            font-size: clamp(30px, 3.4vw, 46px);
            line-height: 1.08;
        }

        .section-head h3 {
            margin: 10px 0 0;
            font-size: clamp(24px, 2.4vw, 32px);
            line-height: 1.1;
        }

        .section-head p,
        .quick-card p,
        .detail-card p,
        .booking-intro p,
        .empty-note,
        .field-note,
        .fine {
            color: var(--muted);
            line-height: 1.75;
        }

        .story-copy {
            font-size: 16px;
            line-height: 1.72;
            color: var(--ink);
        }

        .reviews-layout {
            display: grid;
            grid-template-columns: minmax(160px, .25fr) minmax(0, 1fr);
            gap: 18px;
            align-items: start;
        }

        .reviews-score strong {
            display: block;
            color: var(--primary);
            font-size: 34px;
            line-height: 1;
        }

        .reviews-score span,
        .review-entry small {
            color: var(--muted);
            font-weight: 800;
        }

        .review-entry {
            border-left: 3px solid var(--accent);
            padding-left: 14px;
        }

        .review-entry + .review-entry { margin-top: 14px; }

        .review-entry p {
            margin: 5px 0 0;
            color: var(--muted);
            line-height: 1.65;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 14px;
            margin-top: 20px;
        }

        .overview-card {
            padding: 18px;
            border-radius: var(--radius-md);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #edf4ff 100%);
            border: 1px solid rgba(16, 32, 51, 0.08);
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .overview-card:hover {
            transform: translateY(-2px);
            border-color: rgba(16, 32, 51, 0.14);
            box-shadow: 0 14px 28px rgba(16, 32, 51, 0.1);
        }

        .overview-card small {
            display: block;
            margin-bottom: 8px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .overview-card strong {
            display: block;
            font-size: 16px;
            line-height: 1.4;
            overflow-wrap: break-word;
            word-break: normal;
        }

        .quick-card {
            background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
            color: var(--ink);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(15, 98, 254, 0.12);
        }

        .quick-card::after {
            content: "";
            position: absolute;
            inset: auto -60px -60px auto;
            width: 180px;
            height: 180px;
            border-radius: 999px;
            background: rgba(15, 98, 254, 0.08);
        }

        .quick-card .eyebrow {
            background: rgba(15, 98, 254, 0.08);
            border-color: rgba(15, 98, 254, 0.18);
            color: var(--primary);
        }

        .quick-card p {
            color: var(--muted);
            line-height: 1.62;
        }

        .quick-price {
            display: flex;
            align-items: end;
            gap: 12px;
            margin: 18px 0 20px;
        }

        .quick-price strong {
            font-size: 40px;
            line-height: 1;
        }

        .quick-price span {
            color: var(--muted);
            font-size: 15px;
            font-weight: 700;
        }

        .summary-pills span {
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(16, 32, 51, 0.1);
            color: var(--ink);
        }

        .button,
        .ghost-button,
        .calendar-nav,
        .time-button,
        .submit-button {
            border: 0;
            cursor: pointer;
            font: inherit;
        }

        .button,
        .ghost-button,
        .submit-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .06em;
            text-decoration: none;
            text-transform: uppercase;
        }

        .button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #0f1e33));
            color: #fff;
            transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
            box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 20%, transparent);
        }

        .ghost-button {
            width: 100%;
            margin-top: 12px;
            background: transparent;
            border: 1px solid rgba(16, 32, 51, 0.16);
            color: var(--ink);
            transition: transform 140ms ease, border-color 180ms ease, background 180ms ease;
        }

        .button:hover,
        .ghost-button:hover {
            transform: translateY(-1px);
        }

        .booking-section { margin-bottom: 24px; }

        .booking-steps {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 20px 0 22px;
        }

        .booking-step {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid rgba(16, 32, 51, 0.08);
        }

        .booking-step span {
            display: inline-grid;
            flex: 0 0 auto;
            place-items: center;
            width: 32px;
            height: 32px;
            border-radius: 12px;
            background: var(--primary);
            color: white;
            font-size: 12px;
            font-weight: 900;
        }

        .booking-step strong {
            display: block;
            font-size: 13px;
            line-height: 1.35;
        }

        .booking-step small {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            line-height: 1.4;
        }

        .booking-card,
        .availability-card {
            position: relative;
        }

        .booking-card { padding-bottom: 24px; }

        .booking-summary {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: end;
            gap: 16px;
            padding: 20px;
            border-radius: var(--radius-lg);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #eef4ff 100%);
            border: 1px solid rgba(16, 32, 51, 0.08);
            margin: 20px 0 22px;
        }

        .booking-summary small {
            display: block;
            margin-bottom: 8px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .booking-summary strong {
            display: block;
            font-size: 22px;
            line-height: 1.2;
        }

        .booking-summary p {
            margin: 6px 0 0;
            color: var(--muted);
            line-height: 1.65;
        }

        .summary-price {
            font-size: clamp(26px, 3.2vw, 32px);
            font-weight: 800;
            max-width: 100%;
            text-align: right;
            justify-self: end;
            color: var(--primary);
        }

        .booking-summary > div:first-child { min-width: 0; }

        .booking-badges { margin-top: 18px; }

        form label {
            display: block;
            margin: 0 0 8px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

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

        .field,
        .field--full { min-width: 0; }

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

        input,
        textarea,
        select {
            width: 100%;
            min-height: 50px;
            padding: 12px 14px;
            border: 1px solid rgba(16, 32, 51, 0.12);
            border-radius: 16px;
            background: white;
            color: var(--ink);
            font: inherit;
            transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
        }

        input:focus,
        textarea:focus,
        select:focus,
        .calendar-nav:focus-visible,
        .time-button:focus-visible,
        .submit-button:focus-visible,
        .hero-actions a:focus-visible,
        .mobile-booking-cta:focus-visible {
            outline: none;
            border-color: color-mix(in srgb, var(--primary) 48%, transparent);
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
        }

        input:focus,
        textarea:focus,
        select:focus {
            transform: translateY(-1px);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .reservation-check-list {
            display: grid;
            gap: 10px;
            padding: 14px;
            border: 1px solid rgba(16, 32, 51, 0.12);
            border-radius: 16px;
            background: white;
        }

        .reservation-check-list label,
        .waiver-row label {
            display: flex;
            align-items: start;
            gap: 10px;
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.6;
            text-transform: none;
            letter-spacing: 0;
        }

        .reservation-check-list input,
        .waiver-row input {
            width: 18px;
            min-height: 18px;
            margin-top: 3px;
            padding: 0;
        }

        .waiver-row {
            margin-top: 18px;
            padding: 16px;
            border-radius: 18px;
            background: #fff8ef;
            border: 1px solid rgba(190, 120, 39, 0.16);
        }

        .submit-button {
            width: 100%;
            margin-top: 18px;
            background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #0f1e33));
            color: white;
            box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 24%, transparent);
        }

        .submit-button:hover,
        .hero-actions a:hover,
        .mobile-booking-cta:hover {
            transform: translateY(-2px);
        }

        .external-booking-product-panel {
            display: grid;
            gap: 18px;
            margin-top: 18px;
        }

        .external-booking-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-width: 220px;
            padding: 0 24px;
            text-decoration: none;
        }

        .external-booking-widget {
            min-width: 0;
            overflow: hidden;
            padding-top: 4px;
            border-radius: 18px;
            background: #fff;
        }

        .availability-card {
            position: sticky;
            top: 22px;
        }

        .calendar-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 18px 0 16px;
        }

        .calendar-title {
            font-size: 18px;
            font-weight: 800;
        }

        .calendar-actions {
            display: flex;
            gap: 8px;
        }

        .calendar-nav {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #edf3ff;
            color: var(--ink);
            font-size: 18px;
            font-weight: 800;
        }

        .calendar-nav:disabled {
            opacity: .35;
            cursor: not-allowed;
        }

        .calendar-weekdays,
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 8px;
        }

        .calendar-weekdays {
            margin-bottom: 10px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .calendar-weekdays span { text-align: center; }

        .calendar-day,
        .calendar-placeholder {
            min-height: 78px;
        }

        .calendar-day {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;
            border-radius: 18px;
            border: 1px solid rgba(16, 32, 51, 0.08);
            background: white;
            color: var(--ink);
            padding: 8px 6px;
            position: relative;
            transition: transform .18s ease, border-color .18s ease, background .18s ease;
        }

        .calendar-day strong {
            display: block;
            font-size: 22px;
            line-height: 1;
        }

        .calendar-day:hover:not(:disabled) {
            transform: translateY(-1px);
            border-color: color-mix(in srgb, var(--primary) 42%, transparent);
        }

        .calendar-day small {
            display: block;
            max-width: 100%;
            color: var(--muted);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .03em;
            line-height: 1.1;
            text-align: center;
            text-transform: uppercase;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            word-break: normal;
        }

        .calendar-day.is-available {
            background: #16a34a;
            border-color: #15803d;
            color: #ffffff;
        }

        .calendar-day.is-available strong {
            color: #ffffff;
        }

        .calendar-day.is-available:hover:not(:disabled) {
            background: #15803d;
            border-color: #166534;
        }

        .calendar-day.is-selected {
            background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, white) 0%, color-mix(in srgb, var(--primary) 12%, white) 100%);
            border-color: color-mix(in srgb, var(--primary) 34%, transparent);
            box-shadow: 0 10px 30px rgba(16, 32, 51, 0.12);
            color: var(--ink);
        }

        .calendar-day.is-available.is-selected {
            background: linear-gradient(180deg, #15803d 0%, #166534 100%);
            border-color: #14532d;
            color: #ffffff;
        }

        .calendar-day.is-available.is-selected strong {
            color: #ffffff;
        }

        .calendar-day:disabled {
            opacity: .42;
            cursor: not-allowed;
        }

        .times-panel {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(16, 32, 51, 0.08);
        }

        .times-panel h3 {
            margin: 0 0 8px;
            font-size: 22px;
        }

        .time-options {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin-top: 16px;
            max-height: 310px;
            overflow-y: auto;
            padding-right: 4px;
        }

        .time-button {
            width: 100%;
            padding: 16px 18px;
            border-radius: 18px;
            background: white;
            border: 1px solid rgba(16, 32, 51, 0.08);
            text-align: left;
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .time-button:hover {
            transform: translateY(-1px);
            border-color: color-mix(in srgb, var(--primary) 36%, transparent);
        }

        .time-button.is-selected {
            border-color: color-mix(in srgb, var(--primary) 42%, transparent);
            box-shadow: 0 16px 30px rgba(16, 32, 51, 0.12);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #edf4ff 100%);
        }

        .time-button strong {
            display: block;
            font-size: 17px;
            line-height: 1.3;
            color: var(--ink);
        }

        .time-button span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            line-height: 1.55;
        }

        .detail-card h3 {
            margin: 0 0 12px;
            font-size: 24px;
        }

        .gallery-card {
            overflow: hidden;
        }

        .gallery-visual {
            min-height: 240px;
            border-radius: 24px;
            background:
                linear-gradient(180deg, rgba(16, 32, 51, 0.06) 0%, rgba(16, 32, 51, 0.48) 100%),
                linear-gradient(135deg, color-mix(in srgb, var(--accent) 24%, white) 0%, color-mix(in srgb, var(--primary) 82%, #0f1e33) 100%);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: end;
            padding: 18px;
            color: white;
        }

        .gallery-visual strong {
            display: block;
            font-size: 18px;
            line-height: 1.3;
        }

        .journey-card {
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #eef4ff 100%);
            border: 1px solid rgba(16, 32, 51, 0.08);
        }

        .journey-step {
            display: inline-grid;
            place-items: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: color-mix(in srgb, var(--primary) 16%, white);
            color: var(--primary);
            font-size: 14px;
            font-weight: 800;
        }

        .journey-card h3 {
            margin: 18px 0 10px;
            font-size: 22px;
        }

        .map-card {
            margin-top: 24px;
            margin-bottom: 48px;
        }

        .map-grid {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
            gap: 20px;
            align-items: start;
        }

        .map-frame {
            min-height: 320px;
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid rgba(16, 32, 51, 0.08);
            background: #f0f4fb;
        }

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

        .list {
            margin: 0;
            padding-left: 18px;
            color: var(--muted);
            line-height: 1.8;
        }

        .detail-card details {
            padding: 14px 0;
            border-top: 1px solid rgba(16, 32, 51, 0.08);
        }

        .detail-card details:first-of-type { border-top: 0; }

        .detail-card summary {
            cursor: pointer;
            font-weight: 800;
            list-style: none;
        }

        .detail-card summary::-webkit-details-marker { display: none; }

        .detail-card details p {
            margin: 10px 0 0;
        }

        .errorlist {
            margin: 8px 0 0;
            padding-left: 18px;
            color: #b42318;
        }

        .empty-note {
            margin: 0;
            padding: 18px;
            border-radius: 18px;
            background: #fff;
            border: 1px dashed rgba(16, 32, 51, 0.18);
        }

        .mobile-booking-cta {
            display: none;
            position: fixed;
            left: 12px;
            right: 12px;
            bottom: 12px;
            z-index: 30;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 14px 12px 16px;
            border-radius: 22px;
            background: rgba(16, 32, 51, 0.94);
            color: white;
            text-decoration: none;
            box-shadow: 0 26px 70px rgba(16, 32, 51, 0.32);
            backdrop-filter: blur(16px);
            transition: transform .18s ease;
        }

        .mobile-booking-cta span {
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .mobile-booking-cta strong {
            display: block;
            margin-top: 3px;
            font-size: 15px;
            line-height: 1.25;
        }

        .mobile-booking-cta em {
            display: inline-flex;
            min-height: 42px;
            align-items: center;
            padding: 0 16px;
            border-radius: 999px;
            background: white;
            color: var(--ink);
            font-style: normal;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

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

        @keyframes heroRiseIn {
            from { transform: translateY(14px); }
            to { transform: translateY(0); }
        }

        @keyframes softGlow {
            0%, 100% { box-shadow: var(--shadow); }
            50% { box-shadow: 0 30px 92px color-mix(in srgb, var(--primary) 18%, transparent); }
        }

        .hero-grid > * {
            animation: heroRiseIn .42s ease both;
        }

        .trust-item,
        .top-grid > *,
        .booking-section,
        .detail-card,
        .map-card {
            animation: riseIn .56s ease both;
        }

        .trust-item:nth-child(2) { animation-delay: .05s; }
        .trust-item:nth-child(3) { animation-delay: .10s; }
        .trust-item:nth-child(4) { animation-delay: .15s; }

        .quick-card { animation: riseIn .56s ease both; }

        @media (max-width: 1040px) {
            .hero-grid,
            .trust-strip,
            .top-grid,
            .booking-grid,
            .detail-grid,
            .gallery-grid,
            .reviews-layout,
            .map-grid {
                grid-template-columns: 1fr;
            }

            .availability-card {
                position: static;
            }

            .booking-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            body { padding-bottom: 86px; }
            .wrap { width: min(100% - 20px, 1180px); }
            .public-brand-wrap {
                min-height: auto;
                padding: 14px 0;
                flex-direction: column;
                align-items: stretch;
            }
            .public-brand-nav {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .public-brand-tabs {
                width: 100%;
                overflow-x: auto;
                justify-content: flex-start;
                scrollbar-width: none;
            }
            .public-brand-tabs::-webkit-scrollbar {
                display: none;
            }
            .public-brand-tab {
                flex: 0 0 auto;
            }
            .calendar-day,
            .calendar-placeholder {
                min-height: 70px;
            }
            .calendar-day strong {
                font-size: 19px;
            }
            .calendar-day small {
                font-size: 8px;
            }
            .public-brand-cta {
                display: none;
            }
            .hero h1 { font-size: clamp(32px, 9vw, 54px); }
            .hero-visual,
            .surface { border-radius: 24px; }
            .story-card,
            .quick-card,
            .booking-card,
            .availability-card,
            .detail-card { padding: 22px; }
            .form-grid { grid-template-columns: 1fr; }
            .booking-summary {
                grid-template-columns: 1fr;
                flex-direction: column;
                align-items: start;
            }

            .summary-price {
                justify-self: start;
                text-align: left;
            }

            .trust-item {
                min-height: auto;
                padding: 18px;
            }

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

            .time-options {
                grid-template-columns: 1fr;
                max-height: 280px;
            }

            .calendar-toolbar {
                flex-direction: column;
                align-items: stretch;
            }

            .calendar-title {
                text-align: center;
            }

            .calendar-actions {
                width: 100%;
                justify-content: space-between;
            }

            .calendar-weekdays,
            .calendar-grid {
                gap: 5px;
            }

            .calendar-weekdays {
                margin-bottom: 8px;
                font-size: 10px;
                letter-spacing: .04em;
            }

            .calendar-day {
                border-radius: 14px;
                padding: 4px 2px;
            }

            .calendar-day strong {
                font-size: 15px;
                line-height: 1;
            }

            .calendar-day small {
                margin-top: 2px;
                font-size: 8px;
                text-transform: none;
            }

            .mobile-booking-cta {
                display: flex;
            }
        }

        @media (max-width: 560px) {
            .calendar-weekdays,
            .calendar-grid {
                gap: 4px;
            }

            .calendar-weekdays {
                font-size: 9px;
                letter-spacing: .02em;
            }

            .calendar-day {
                border-radius: 12px;
                padding: 3px 2px;
            }

            .calendar-day small {
                display: none;
            }
        }

        @media (max-width: 380px) {
            .hero {
                padding: 26px 0 22px;
            }

            .hero h1 {
                margin: 10px 0 8px;
                font-size: clamp(26px, 9.2vw, 34px);
                line-height: 1.06;
            }

            .lead {
                font-size: 14px;
                line-height: 1.55;
            }

            .hero-pills span,
            .hero-actions a,
            .hero-visual-highlights span,
            .booking-badges span {
                min-height: 34px;
                padding: 0 10px;
                font-size: 11px;
            }

            .hero-actions {
                margin-top: 16px;
                gap: 8px;
            }

            .hero-visual,
            .story-card,
            .quick-card,
            .booking-card,
            .availability-card,
            .detail-card {
                border-radius: 18px;
            }

            .hero-visual-copy strong {
                font-size: 20px;
                line-height: 1.2;
            }

            .hero-visual-copy p {
                font-size: 13px;
                line-height: 1.5;
            }

            .trust-strip {
                gap: 10px;
                margin-bottom: 14px;
            }

            .trust-item {
                padding: 14px;
            }

            .trust-item strong {
                font-size: 13px;
            }

            .trust-item p {
                font-size: 12px;
                line-height: 1.45;
            }

            .booking-step {
                padding: 10px;
            }

            .booking-step small {
                font-size: 12px;
                line-height: 1.35;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
            }
        }

/* === Calm editorial overrides === */
[class] {
}
.public-brand-link img,
.brand-mark { border-radius: 8px !important; }
.public-brand-tabs,
.public-brand-tab,
.public-brand-cta,
.eyebrow,
.fallback-mark,
.category-pill,
.hero-meta span,
.hero-panel-list span,
.meta-row span { border-radius: 6px !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; }
.hero-panel,
.product-card,
.review-strip,
.external-booking-panel { border-radius: 12px !important; box-shadow: 0 1px 0 rgba(20,35,59,0.04) !important; background: #ffffff !important; }
.product-media { border-radius: 8px !important; }
.button { border-radius: 8px !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; }

/* === Final brand pass (2026-05-31) === */
.public-brand-tab.is-active,
.public-brand-nav a.is-primary,
.btn-primary,
.button-primary,
.checkout-button,
.slot-chip.is-selected,
.calendar-day.is-selected,
.mobile-booking-cta .button {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.public-brand-tab.is-active:hover,
.public-brand-nav a.is-primary:hover,
.btn-primary:hover,
.button-primary:hover,
.checkout-button:hover,
.mobile-booking-cta .button:hover {
    background: #0954d4 !important;
    border-color: #0954d4 !important;
}

.surface,
.booking-panel,
.product-card,
.gallery-card,
.review-card,
.addon-card,
.section-card,
.embed-card,
.availability-card,
.detail-card,
.quick-card,
.story-card {
    border-radius: 12px !important;
    box-shadow: 0 1px 0 rgba(20, 35, 59, 0.04) !important;
}

.eyebrow,
.section-eyebrow,
.meta-label,
.label,
.badge,
small {
    text-transform: none !important;
    letter-spacing: 0 !important;
}

