        @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;
            --bg: #f7faff;
            --soft: #eef4ff;
            --shadow: 0 1px 0 rgba(20, 35, 59, 0.04);
        }

        * { box-sizing: border-box; }

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

        .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: 74px;
            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: 8px;
            object-fit: cover;
        }

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

        .public-brand-nav a {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 6px;
            border: 1px solid rgba(20, 35, 59, 0.12);
            background: #ffffff;
            color: var(--ink);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

        .public-brand-nav a.is-primary {
            border-color: transparent;
            background: var(--primary);
            color: white;
        }

        .hero {
            position: relative;
            overflow: hidden;
            padding: 52px 0 34px;
        }

        .hero::before,
        .hero::after {
            content: none;
        }

        .hero-grid {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
            gap: 24px;
            align-items: end;
        }

        .hero-grid--single {
            grid-template-columns: minmax(0, 900px);
        }

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

        .brand-mark {
            width: 46px;
            height: 46px;
            border-radius: 8px;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid rgba(20, 35, 59, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 30px;
            padding: 0 12px;
            border-radius: 6px;
            background: rgba(9, 105, 255, 0.06);
            border: 1px solid rgba(9, 105, 255, 0.22);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }

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

        h1 {
            margin: 18px 0 14px;
            font-size: clamp(38px, 5vw, 72px);
            line-height: 1;
        }

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

        .hero-meta,
        .hero-panel-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .hero-meta span,
        .hero-panel-list span {
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 0 14px;
            border-radius: 6px;
            background: #ffffff;
            border: 1px solid rgba(20, 35, 59, 0.1);
            color: var(--ink);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-panel {
            position: relative;
            padding: 24px;
            border-radius: 12px;
            background: #ffffff;
            color: var(--ink);
            border: 1px solid rgba(20, 35, 59, 0.08);
            box-shadow: var(--shadow);
        }

        .hero-panel small {
            display: block;
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }

        .hero-panel strong {
            display: block;
            font-size: 24px;
            line-height: 1.25;
        }

        .hero-panel p {
            margin: 14px 0 0;
            color: var(--muted);
            line-height: 1.7;
        }

        .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;
        }

        .catalog-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
            padding: 12px 0 22px;
        }

        .catalog-header p {
            max-width: 640px;
            margin: 10px 0 0;
            color: var(--muted);
            line-height: 1.7;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            padding-bottom: 48px;
        }

        .product-card {
            display: grid;
            grid-template-columns: minmax(220px, 380px) minmax(0, 1fr);
            overflow: hidden;
            padding: 10px;
            border: 1px solid rgba(20, 35, 59, 0.08);
            border-radius: 12px;
            background: #ffffff;
            box-shadow: none;
            transition: transform 180ms ease, border-color 180ms ease;
        }

        .product-card:hover,
        .product-card:focus-within {
            transform: translateY(-1px);
            border-color: rgba(20, 35, 59, 0.16);
            box-shadow: 0 1px 0 rgba(20, 35, 59, 0.04);
        }

        .product-media {
            position: relative;
            min-height: 210px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border-radius: 8px;
            background: #f5f5f1;
            background-size: cover;
            background-position: center;
            color: #14233b;
        }

        .product-media.has-image::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(16, 32, 51, 0.04) 0%, rgba(16, 32, 51, 0.62) 100%);
            pointer-events: none;
        }

        .product-media-image {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-media.has-logo-fallback .product-media-image {
            inset: 50% auto auto 50%;
            width: min(180px, 48%);
            height: min(180px, 48%);
            padding: 18px;
            border-radius: 22px;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 20px 48px rgba(16, 32, 51, 0.18);
            transform: translate(-50%, -50%);
        }

        .product-media.has-logo-fallback::before {
            background: linear-gradient(180deg, rgba(16, 32, 51, 0.08) 0%, rgba(16, 32, 51, 0.58) 100%);
        }

        .product-media > :not(.product-media-image) {
            position: relative;
            z-index: 2;
        }

        .fallback-mark {
            width: fit-content;
            min-height: 30px;
            padding: 0 12px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(20, 35, 59, 0.12);
            color: #14233b;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 30px;
            text-transform: none;
        }

        .category-pill {
            width: fit-content;
            min-height: 30px;
            padding: 0 12px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--ink);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 30px;
            text-transform: none;
        }

        .media-copy h2 {
            margin: 0 0 10px;
            font-size: 22px;
            line-height: 1.2;
        }

        .media-copy p {
            margin: 0;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-body {
            min-width: 0;
            padding: 10px 10px 10px 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .meta-row span {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 0 12px;
            border-radius: 6px;
            background: var(--soft);
            color: var(--ink);
            font-size: 12px;
            font-weight: 600;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid rgba(16, 32, 51, 0.08);
        }

        .price {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .price small {
            color: var(--muted);
            font-size: 12px;
            font-weight: 500;
            text-transform: none;
            letter-spacing: 0;
        }

        .price strong {
            font-size: 26px;
            line-height: 1;
            color: var(--primary);
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 8px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
            transition: background 180ms ease;
        }

        .button:hover {
            background: #0954d4;
            transform: none;
            box-shadow: none;
        }

        .button.button-secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid rgba(9, 105, 255, 0.28);
        }

        .button.button-secondary:hover {
            background: rgba(9, 105, 255, 0.06);
            border-color: rgba(9, 105, 255, 0.42);
        }

        .external-booking-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
            gap: 20px;
            align-items: start;
            margin-bottom: 28px;
            padding: 22px;
            border: 1px solid rgba(20, 35, 59, 0.08);
            border-radius: 12px;
            background: #ffffff;
            box-shadow: none;
        }

        .external-booking-copy {
            display: grid;
            gap: 12px;
            align-content: start;
        }

        .external-booking-copy h2,
        .external-booking-copy p {
            margin: 0;
        }

        .external-booking-copy p {
            color: var(--muted);
            line-height: 1.6;
        }

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

        .catalog-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .review-strip {
            display: grid;
            grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
            gap: 18px;
            align-items: start;
            margin-bottom: 28px;
            padding: 20px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #ffffff;
        }

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

        .review-score span,
        .review-card small {
            color: var(--muted);
            font-weight: 600;
        }

        .review-list {
            display: grid;
            gap: 12px;
        }

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

        .review-card p {
            margin: 4px 0 0;
            color: var(--muted);
            line-height: 1.55;
        }

        .empty {
            padding: 30px;
            border: 1px dashed rgba(16, 32, 51, 0.18);
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.7);
            color: var(--muted);
            text-align: center;
        }

        @media (max-width: 920px) {
            .hero-grid,
            .review-strip,
            .catalog-header {
                grid-template-columns: 1fr;
                display: grid;
                align-items: start;
            }

            .product-card {
                grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
            }

            .product-media {
                min-height: 190px;
            }
        }

        @media (max-width: 720px) {
            .public-brand-nav a.is-primary {
                display: none;
            }

            .product-card {
                grid-template-columns: 1fr;
            }

            .product-media {
                min-height: 170px;
            }

            .card-body {
                padding: 18px 6px 6px;
            }
        }

        @media (max-width: 640px) {
            .wrap { width: min(100% - 20px, 1180px); }
            .public-brand-wrap {
                min-height: auto;
                padding: 14px 0;
                flex-direction: column;
                align-items: stretch;
            }

            .external-booking-panel {
                grid-template-columns: 1fr;
            }
            .public-brand-nav {
                justify-content: stretch;
            }
            .public-brand-nav a {
                justify-content: center;
                width: 100%;
            }
            .hero { padding-top: 34px; }
            .hero-panel,
            .product-card { border-radius: 22px; }
            .product-media { min-height: 150px; }
            .card-footer {
                flex-direction: column;
                align-items: stretch;
            }
            .button { width: 100%; }
        }

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

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

        .product-card,
        .hero-panel,
        .review-card,
        .surface,
        .empty {
            border-radius: 12px !important;
            box-shadow: 0 1px 0 rgba(20, 35, 59, 0.04) !important;
        }

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