.tail-container * {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        /* Viewport-fixed hero — same look on short and long pages */
        .hero-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            background-attachment: fixed;
            position: relative;
            min-height: 100vh;
        }

        .hero-bg::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            background: radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .form-card {
            box-shadow: 0 25px 50px -12px rgb(14 165 233 / 0.25);
        }

        #site-chrome {
            position: relative;
            z-index: 20;
            margin-bottom: 1.25rem;
        }

        .site-chrome-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.75rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            min-width: 0;
            text-decoration: none;
            color: inherit;
        }

        .brand img {
            height: 52px;
            width: auto;
            flex-shrink: 0;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            min-width: 0;
        }

        .brand-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #f8fafc;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .brand-sub {
            font-size: 0.8rem;
            font-weight: 500;
            color: #7dd3fc;
            line-height: 1.2;
        }

        /* Destination cards */
        .dest-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 720px) {
            .dest-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        a.dest-card {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding: 1.35rem 1.4rem;
            border-radius: 1.25rem;
            text-decoration: none;
            color: inherit;
            background: var(--sh-card-bg, #fff);
            box-shadow: var(--sh-card-shadow, 0 25px 50px -12px rgb(14 165 233 / 0.25));
            border: 1px solid transparent;
            transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
            min-height: 100%;
        }

        a.dest-card:hover {
            border-color: rgba(14, 165, 233, 0.45);
            transform: translateY(-2px);
            box-shadow: 0 28px 50px -14px rgb(14 165 233 / 0.35);
        }

        a.dest-card:focus-visible {
            outline: 2px solid #38bdf8;
            outline-offset: 3px;
        }

        .dest-kicker {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--sh-link, #0369a1);
        }

        .dest-title {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--sh-heading, #18181b);
            line-height: 1.25;
        }

        .dest-desc {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--sh-muted, #52525b);
            flex: 1 1 auto;
        }

        .dest-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            margin-top: 0.35rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--sh-link, #0369a1);
        }

        a.dest-card:hover .dest-cta {
            gap: 0.5rem;
        }

        .dest-cta svg {
            width: 0.95rem;
            height: 0.95rem;
            display: block;
        }
