        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
            /* Original Unipup Palette + Black */
            --black: #000000;
            --bg: #e1f1f7;
            --bg-alt: #d0e9f5;
            --white: #ffffff;

            /* Signature Blue Accents */
            --primary: #2977b3;
            --primary-dark: #1f5a8a;
            --accent: #5ebfff;
            --accent-soft: rgba(94, 191, 255, 0.15);

            /* Text & Borders */
            --border: #d0e9f5;
            --text-muted: rgba(0, 0, 0, 0.55);
            --ink: #000000;

            /* Blue-tinted Shadows */
            --shadow: rgba(41, 119, 179, 0.1);
            --shadow-lg: rgba(41, 119, 179, 0.2);

            /* Status */
            --success: #16a34a;
            --warning: #eab308;
            --danger: #dc2626;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--ink);
            line-height: 1.5;
        }

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

        img,
        svg {
            display: block;
        }

        section {
            scroll-margin-top: 76px;
        }

        .icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* ===== Nav ===== */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 40px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            color: var(--black);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--black);
            text-transform: uppercase;
        }

        .brand .mark {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.02em;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #navAuthArea {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-cta {
            padding: 9px 20px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.02em;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
        }

        /* Shown in #navAuthArea while Firebase Auth is still determining
           sign-in state, so the page never flashes "Log in" at an already
           signed-in customer before swapping to the real nav. */
        .nav-auth-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
        }

        .nav-auth-loading .spinner {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: nav-auth-spin 0.7s linear infinite;
        }

        @keyframes nav-auth-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .nav-toggle {
            display: none;
            flex-shrink: 0;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }

        .nav-toggle svg {
            width: 24px;
            height: 24px;
            color: var(--black);
        }

        /* ===== Logged-in nav cluster ===== */
        .notif-btn {
            position: relative;
            width: 36px;
            height: 36px;
            border-radius: 4px;
            border: 1px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .notif-btn:hover {
            border-color: var(--primary);
        }

        .notif-btn svg {
            width: 17px;
            height: 17px;
            color: var(--black);
        }

        .notif-btn .dot {
            position: absolute;
            top: 7px;
            right: 7px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--danger, #dc2626);
            border: 1.5px solid var(--white);
            display: none;
        }

        /* Shown only once refreshNotifBadge() (client/js/firebase-config.js)
           confirms this customer has at least one unread notification. */
        .notif-btn.has-unread .dot {
            display: block;
        }

        /* #navAuthArea/.nav-right never wraps, so anything not
           flex-shrink:0 gets squeezed by flex's default shrink — this
           cluster's icons/avatar are fixed-size, but without this the whole
           row could still compress hard enough to push the hamburger toggle
           past the edge of the screen on narrow phones (.nav-book-btn below
           is the main fix for that; this is the backstop). */
        .user-menu {
            position: relative;
            flex-shrink: 0;
        }

        .user-menu-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 12px 5px 5px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 999px;
            cursor: pointer;
        }

        .user-menu-btn:hover {
            border-color: var(--primary);
        }

        .user-menu-btn .avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .user-menu-btn .name {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--black);
        }

        .user-menu-btn svg {
            width: 14px;
            height: 14px;
            color: var(--text-muted);
            transition: transform 0.15s ease;
        }

        .user-menu.open .user-menu-btn svg {
            transform: rotate(180deg);
        }

        .user-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 6px;
            box-shadow: 0 12px 28px var(--shadow-lg);
            overflow: hidden;
            z-index: 60;
        }

        .user-menu.open .user-dropdown {
            display: block;
        }

        .user-dropdown a,
        .user-dropdown button {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 11px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
        }

        .user-dropdown a svg,
        .user-dropdown button svg {
            width: 15px;
            height: 15px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .user-dropdown a:hover,
        .user-dropdown button:hover {
            background: var(--bg);
        }

        .user-dropdown .divider-line {
            height: 1px;
            background: var(--border);
            margin: 4px 0;
        }

        .user-dropdown .logout-item {
            color: var(--danger, #dc2626);
        }

        .user-dropdown .logout-item svg {
            color: var(--danger, #dc2626);
        }

        /* ===== Hero ===== */
        .hero {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            align-items: center;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .hero-copy .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--accent-soft);
            border-radius: 2px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .hero-copy h1 {
            font-size: 46px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--black);
        }

        .hero-copy h1 em {
            font-style: normal;
            color: var(--primary);
        }

        .hero-copy p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary-lg {
            padding: 14px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary-lg:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-ghost {
            padding: 14px 26px;
            background: var(--white);
            color: var(--black);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-ghost:hover {
            border-color: var(--primary);
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        .hero-stats div {
            text-align: left;
        }

        .hero-stats .num {
            font-size: 20px;
            font-weight: 800;
            color: var(--black);
        }

        .hero-stats .label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            font-weight: 600;
        }

        .photo-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: var(--bg-alt);
            border: none;
        }

        .hero-collage {
            position: relative;
            height: 460px;
        }

        .hero-collage img {
            position: absolute;
            object-fit: cover;
            border-radius: 10px;
            border: 5px solid var(--white);
            box-shadow: 0 14px 30px var(--shadow-lg);
            background: var(--bg-alt);
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .hero-collage img:hover {
            box-shadow: 0 22px 44px var(--shadow-lg);
            z-index: 20;
        }

        .hero-collage .photo-main {
            top: 0;
            right: 0;
            width: 58%;
            height: 62%;
            z-index: 2;
        }

        .hero-collage .photo-main:hover {
            transform: scale(1.03);
        }

        .hero-collage .photo-a {
            top: 0;
            left: 0;
            width: 38%;
            height: 30%;
            z-index: 3;
            transform: rotate(-6deg);
        }

        .hero-collage .photo-a:hover {
            transform: rotate(-6deg) scale(1.07);
        }

        .hero-collage .photo-b {
            top: 34%;
            left: 0;
            width: 34%;
            height: 28%;
            z-index: 1;
            transform: rotate(4deg);
        }

        .hero-collage .photo-b:hover {
            transform: rotate(4deg) scale(1.07);
        }

        .hero-collage .photo-c {
            bottom: 0;
            left: 16%;
            width: 34%;
            height: 28%;
            z-index: 4;
            transform: rotate(-4deg);
        }

        .hero-collage .photo-c:hover {
            transform: rotate(-4deg) scale(1.07);
        }

        .hero-collage .photo-d {
            bottom: 2%;
            right: 4%;
            width: 27%;
            height: 24%;
            z-index: 5;
            transform: rotate(6deg);
        }

        .hero-collage .photo-d:hover {
            transform: rotate(6deg) scale(1.07);
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
        }

        .lightbox-content img {
            display: block;
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-content .modal-close {
            position: absolute;
            top: -16px;
            right: -16px;
        }

        /* ===== Promo carousel ===== */
        #promo {
            padding: 0 40px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .promo-track-wrap {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px var(--shadow-lg);
        }

        .promo-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .promo-slide {
            flex: 0 0 100%;
            height: 360px;
            position: relative;
            background: var(--bg-alt);
        }

        .promo-slide .photo-placeholder {
            position: absolute;
            inset: 0;
        }

        .promo-controls {
            position: absolute;
            bottom: 22px;
            right: 32px;
            z-index: 3;
            display: flex;
            gap: 8px;
        }

        .promo-controls button {
            width: 34px;
            height: 34px;
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-weight: 800;
            cursor: pointer;
        }

        .promo-controls button:hover { background: rgba(255, 255, 255, 0.22); }

        .promo-dots {
            position: absolute;
            bottom: 28px;
            left: 44px;
            z-index: 3;
            display: flex;
            gap: 8px;
        }

        .promo-dots button {
            width: 18px;
            height: 3px;
            border-radius: 1px;
            border: none;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            padding: 0;
        }

        .promo-dots button.active { background: var(--accent); width: 26px; }

        /* ===== Section shell ===== */
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 90px 40px;
        }

        .section-head {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 50px;
        }

        .section-head .eyebrow-sm {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .section-head h2 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            color: var(--black);
        }

        .section-head p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .review-average {
            margin-top: 14px;
            font-size: 15px;
            font-weight: 800;
            color: var(--black);
        }

        .review-average .stars {
            color: var(--warning, #eab308);
            letter-spacing: 2px;
        }

        .review-average .count {
            font-weight: 600;
            color: var(--text-muted);
        }

        .review-card.review-empty {
            flex: 1 1 100%;
            align-items: center;
            text-align: center;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ===== About ===== */
        #about {
            background: var(--black);
            border-top: 1px solid var(--border);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-copy h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            color: var(--white);
        }

        .about-copy p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .about-facts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .fact-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 4px;
            padding: 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .fact-card .icon {
            color: var(--accent);
            margin-top: 2px;
        }

        .fact-card .fact-label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 4px;
        }

        .fact-card .fact-value {
            font-size: 13.5px;
            color: var(--white);
            font-weight: 600;
            line-height: 1.4;
        }

        .map-visual {
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 4/3.2;
            box-shadow: 0 20px 40px var(--shadow-lg);
        }

        .map-visual iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .about-contact-extra {
            margin-top: 16px;
        }

        /* ===== Availability / cages ===== */
        #cages {
            background: var(--bg);
        }

        .availability-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        /* ===== Date picker (custom — always opens downward) ===== */
        .date-picker {
            position: relative;
        }

        .date-picker-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--black);
            cursor: pointer;
            transition: border-color 0.2s ease;
        }

        .date-picker-trigger:hover {
            border-color: var(--primary);
        }

        .date-picker-trigger .icon {
            width: 18px;
            height: 18px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .date-picker-caret {
            width: 15px;
            height: 15px;
            color: var(--text-muted);
            flex-shrink: 0;
            transition: transform 0.15s ease;
        }

        .date-picker.open .date-picker-caret {
            transform: rotate(180deg);
        }

        .calendar-panel {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 6px;
            box-shadow: 0 12px 28px var(--shadow-lg);
            padding: 14px;
            width: 280px;
            z-index: 40;
            text-align: left;
        }

        .date-picker.open .calendar-panel {
            display: block;
        }

        .calendar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .calendar-month-label {
            font-size: 13px;
            font-weight: 800;
            color: var(--black);
        }

        .calendar-nav {
            width: 26px;
            height: 26px;
            border-radius: 4px;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--black);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-nav:hover:not(:disabled) {
            border-color: var(--primary);
        }

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

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            margin-bottom: 4px;
        }

        .calendar-weekdays span {
            text-align: center;
            font-size: 10.5px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
        }

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

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: none;
            border-radius: 4px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--black);
            cursor: pointer;
        }

        .calendar-day.empty {
            visibility: hidden;
            cursor: default;
        }

        .calendar-day:hover:not(:disabled):not(.empty) {
            background: var(--bg);
        }

        .calendar-day:disabled {
            color: var(--text-muted);
            opacity: 0.35;
            cursor: not-allowed;
        }

        .calendar-day.today {
            box-shadow: inset 0 0 0 1.5px var(--primary);
        }

        .calendar-day.selected {
            background: var(--primary);
            color: var(--white);
            font-weight: 800;
        }

        .avail-note {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .avail-legend {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .avail-legend span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .avail-legend .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

        .avail-legend .dot.open { background: var(--success); }
        .avail-legend .dot.low { background: var(--warning); }
        .avail-legend .dot.full { background: var(--danger); }

        .cage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .cage-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            transition: border-color 0.25s ease, transform 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .cage-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .cage-door {
            position: relative;
            aspect-ratio: 573 / 390;
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .cage-door .photo-placeholder {
            object-fit: contain;
        }

        .cage-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 4px 10px;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .slots-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 10px;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            background: var(--success);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .slots-badge.low {
            background: var(--warning);
            color: var(--black);
        }

        .slots-badge.full {
            background: var(--danger);
        }

        .cage-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .cage-body h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--black);
        }

        .cage-body .blurb {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.55;
            margin-bottom: 20px;
            flex: 1;
        }

        .cage-meta {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .cage-meta .from-price {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            font-weight: 700;
        }

        .cage-meta .price {
            font-size: 20px;
            font-weight: 800;
            color: var(--black);
        }

        .view-details-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .view-details-btn:hover {
            background: var(--primary-dark);
        }

        .view-details-btn:disabled {
            background: var(--border);
            color: rgba(0, 0, 0, 0.4);
            cursor: not-allowed;
        }

        /* ===== Loading skeletons =====
           Shown in #cageGrid the instant the page loads, before live pricing
           (cage_pricing) and availability (unit_availability) come back from
           Firestore — replaces the old dead-blank grid during that fetch. */
        @keyframes skeleton-pulse {
            0% {
                background-position: -400px 0;
            }

            100% {
                background-position: 400px 0;
            }
        }

        .skeleton-shimmer {
            background: linear-gradient(90deg, var(--bg-alt) 25%, rgba(255, 255, 255, 0.75) 50%, var(--bg-alt) 75%);
            background-size: 800px 100%;
            animation: skeleton-pulse 1.4s ease-in-out infinite;
        }

        .cage-card.skeleton-card {
            cursor: default;
        }

        .cage-card.skeleton-card:hover {
            border-color: var(--border);
            transform: none;
        }

        .skeleton-door {
            width: 100%;
            aspect-ratio: 573 / 390;
            border-bottom: 1px solid var(--border);
        }

        .skeleton-line {
            border-radius: 3px;
        }

        .skeleton-title {
            height: 18px;
            width: 65%;
            margin-bottom: 12px;
        }

        .skeleton-text {
            height: 12px;
            width: 100%;
            margin-bottom: 8px;
        }

        .skeleton-text.short {
            width: 70%;
            margin-bottom: 0;
        }

        .skeleton-meta {
            display: flex;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .skeleton-price {
            height: 20px;
            width: 76px;
        }

        .skeleton-btn {
            height: 42px;
            width: 100%;
        }

        /* ===== Modal ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(4px);
            z-index: 100;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            background: var(--white);
            border-radius: 4px;
            border: 1px solid var(--border);
            max-width: 860px;
            width: 100%;
            max-height: 86vh;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            display: flex;
            overflow: hidden;
        }

        .modal-hero {
            position: relative;
            flex: 0 0 300px;
            background: var(--bg-alt);
            border-right: 1px solid var(--border);
            overflow: hidden;
        }

        .modal-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: blur(20px) brightness(0.85) saturate(1.1);
            transform: scale(1.2);
            z-index: 0;
        }

        .modal-hero .photo-placeholder {
            position: relative;
            z-index: 1;
            object-fit: contain;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border-radius: 2px;
            background: var(--primary);
            border: none;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .modal-body {
            padding: 32px;
            flex: 1;
            min-width: 0;
            overflow-y: auto;
        }

        .modal-body h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--black);
        }

        .modal-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--white);
            background: var(--primary);
            padding: 4px 10px;
            border-radius: 2px;
            margin-bottom: 20px;
        }

        .modal-body .desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .modal-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 24px;
        }

        .modal-specs .spec-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 12px 14px;
        }

        .modal-specs .spec-label {
            font-size: 10.5px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .modal-specs .spec-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
            line-height: 1.4;
        }

        .duration-calc {
            display: flex;
            align-items: flex-end;
            gap: 16px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 16px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .duration-calc .field-group {
            margin: 0;
        }

        .duration-calc label {
            display: block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--black);
            margin-bottom: 8px;
        }

        .duration-calc input {
            width: 90px;
            padding: 9px 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            color: var(--black);
            background: var(--white);
        }

        .duration-calc input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .duration-calc .calc-total {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .duration-calc .calc-total strong {
            display: block;
            font-size: 22px;
            color: var(--black);
            font-weight: 800;
        }

        .modal-section-label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--black);
            margin-bottom: 12px;
            padding-bottom: 6px;
            border-bottom: 1px solid var(--border);
        }

        .amenities {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 16px;
            margin-bottom: 28px;
        }

        .amenities li {
            font-size: 13px;
            color: var(--ink);
            padding-left: 18px;
            position: relative;
            font-weight: 500;
        }

        .amenities li::before {
            content: '■';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 8px;
            color: var(--accent);
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 28px;
            font-size: 13.5px;
        }

        .price-table th {
            text-align: left;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            padding: 8px 10px;
            border-bottom: 1px solid var(--border);
        }

        .price-table td {
            padding: 10px;
            border-bottom: 1px solid var(--bg-alt);
            font-weight: 600;
        }

        .price-table td:last-child {
            text-align: right;
            color: var(--black);
            font-weight: 800;
        }

        .modal-cta {
            display: block;
            text-align: center;
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .modal-cta:hover {
            background: var(--primary-dark);
        }

        .modal-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* ===== Reviews ===== */
        #reviews {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .review-track-wrap {
            position: relative;
        }

        .review-track {
            display: flex;
            gap: 24px;
            overflow: hidden;
        }

        .review-card {
            flex: 0 0 calc(33.333% - 16px);
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .review-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-initials {
            width: 36px;
            height: 36px;
            border-radius: 2px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 13px;
        }

        .review-rating {
            font-size: 12px;
            font-weight: 800;
            color: var(--black);
            letter-spacing: 0.03em;
        }

        .review-text {
            font-size: 13.5px;
            color: var(--ink);
            line-height: 1.6;
            flex: 1;
        }

        .review-date {
            font-size: 11.5px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .review-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .review-controls button {
            width: 40px;
            height: 40px;
            border-radius: 2px;
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--black);
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .review-controls button:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        footer {
            background: var(--black);
            color: rgba(255, 255, 255, 0.65);
            padding: 32px 0;
            font-size: 12.5px;
            font-weight: 500;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-social {
            display: flex;
            justify-content: flex-start;
            gap: 14px;
        }

        .footer-copy {
            font-size: 12.5px;
            font-weight: 500;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.2s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .footer-social svg {
            width: 17px;
            height: 17px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                order: -1;
            }

            .hero-collage {
                height: 340px;
            }

            /* Same banner, scaled down to match the narrower container
               instead of staying 360px tall (which is fine at ~1120px wide
               but starts looking like a tall, over-cropped strip once the
               available width shrinks — object-fit:cover keeps filling that
               same height by cutting more off the sides of the photo). */
            .promo-slide {
                height: 260px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .review-card {
                flex: 0 0 100%;
            }

            .modal {
                flex-direction: column;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-hero {
                flex: 0 0 200px;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .modal-body {
                overflow-y: visible;
            }

            .modal-specs {
                grid-template-columns: 1fr;
            }

            .amenities {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .site-nav {
                padding: 14px 20px;
            }

            .nav-links {
                display: none;
            }

            /* Toggled by JS (classList, not inline styles) so that widening
               the viewport back past this breakpoint always falls back to
               the desktop `.nav-links` rule above — an inline-style toggle
               would keep forcing this mobile layout even on desktop after
               a resize. */
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 16px 24px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 12px 24px var(--shadow-lg);
            }

            .nav-toggle {
                display: block;
            }

            /* Signed-in nav-right otherwise crams a notification bell,
               this button, an avatar+name+chevron, and the hamburger all
               onto one row — on a narrow phone that overflowed the nav bar
               and pushed the hamburger off-screen entirely, leaving no way
               to open the Accommodations/Reviews/About links. Booking is
               still one tap away via the hero "Book a stay" button. */
            .nav-book-btn {
                display: none;
            }

            .hero {
                padding: 50px 22px 44px;
            }

            .hero-collage {
                height: 300px;
            }

            .promo-slide {
                height: 220px;
            }

            #promo {
                padding: 0 22px 40px;
            }

            .hero-copy h1 {
                font-size: 32px;
            }

            .section-inner {
                padding: 60px 22px;
            }

            .about-facts {
                grid-template-columns: 1fr;
            }

            .availability-bar {
                flex-direction: column;
                align-items: stretch;
            }

            /* The trigger button only sized itself to its label before
               (align-items: stretch stretches the `.date-picker` wrapper,
               not the button inside it), and the calendar's fixed 280px
               popover could run past the right edge on narrow phones. */
            .date-picker-trigger {
                width: 100%;
                justify-content: space-between;
            }

            .calendar-panel {
                left: 0;
                right: 0;
                width: auto;
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
                padding: 0 22px;
            }
        }

        @media (max-width: 480px) {
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn-primary-lg,
            .hero-actions .btn-ghost {
                text-align: center;
                padding: 12px 20px;
                font-size: 13.5px;
            }

            .hero-stats {
                gap: 14px 24px;
                margin-top: 28px;
                padding-top: 18px;
            }

            .hero-stats .num {
                font-size: 17px;
            }

            .hero-stats .label {
                font-size: 11px;
            }

            .hero-copy h1 {
                font-size: 25px;
            }

            .hero-copy p {
                font-size: 14px;
                margin-bottom: 22px;
            }

            .hero-collage {
                height: 240px;
            }

            .promo-slide {
                height: 170px;
            }

            #promo {
                padding: 0 18px 32px;
            }

            .promo-controls {
                bottom: 14px;
                right: 16px;
            }

            .promo-controls button {
                width: 28px;
                height: 28px;
            }

            .promo-dots {
                bottom: 18px;
                left: 18px;
            }

            .site-nav {
                padding: 12px 16px;
            }

            .brand {
                font-size: 15px;
                gap: 10px;
            }

            .nav-cta {
                padding: 7px 14px;
                font-size: 12px;
            }

            .section-inner {
                padding: 44px 18px;
            }

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

            .section-head .eyebrow-sm {
                font-size: 11px;
            }

            .section-head h2 {
                font-size: 23px;
            }

            .section-head p {
                font-size: 13.5px;
            }

            .modal-hero {
                flex: 0 0 160px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
            }

            .nav-auth-loading .spinner {
                animation: none;
            }

            .skeleton-shimmer {
                animation: none;
            }
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
