/* Full page styles for index.cfm (Vue page; chrome kept inline, app.css loaded first for shared cache). */
*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep: #ffffff;
            --navy: #f4f5f7;
            --slate: #e5e7eb;
            --gold: #f2ea25;
            --gold-light: #f5ef5a;
            --gold-dark: #c4bd00;
            --gold-glow: rgba(242, 234, 37, 0.12);
            --green: #234d35;
            --green-mid: #3a7d55;
            --green-glow: rgba(35, 77, 53, 0.08);
            --cream: #1a1a2e;
            --warm-white: #faf8f4;
            --text-muted: #6b7280;
            --text-body: #374151;
            --glass: rgba(255, 255, 255, 0.92);
            --glass-border: rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--deep);
            color: var(--text-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NAV ─── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0.75rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(24px);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
        }

        .nav-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 101;
        }

        .nav-logo img {
            height: 120px;
            width: auto;
            margin: 0 0 -60px 0;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--green);
            transition: width 0.3s;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: transparent;
            border: 1px solid var(--green);
            color: var(--green) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 100px;
            font-size: 0.8rem !important;
            letter-spacing: 0.1em !important;
            transition: all 0.3s !important;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--green) !important;
            color: #fff !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 110;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: #1a1a1a;
            transition: all 0.3s;
        }

        .nav-hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu */
        .nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(24px);
            z-index: 105;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .nav-mobile.open {
            display: flex;
        }

        .nav-mobile a {
            color: var(--cream);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-mobile a:hover {
            color: var(--green);
        }

        /* ─── HERO ─── */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 0;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.15) 40%,
                    rgba(255, 255, 255, 0.85) 80%,
                    rgba(255, 255, 255, 1) 100%
                ),
                url('/assets/hero-flight.png');
            background-size: cover;
            background-position: center 30%;
            animation: heroShift 20s ease-in-out infinite alternate;
        }

        @keyframes heroShift {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 2rem;
            margin-top: 1.5rem;
            animation: fadeUp 1s ease-out 0.3s both;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 0.4rem 1.25rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-top: 6rem;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge::before,
        .hero-badge::after {
            content: '';
            width: 6px;
            height: 6px;
            background: #1a1a1a;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .badge-mobile {
            display: none;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero h1 em {
            font-style: italic;
            color: #1a1a1a;
        }

        .hero-sub {
            font-size: 1.15rem;
            font-weight: 300;
            color: #1a1a1a;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ─── BOOKING CARD ─── */
        .booking-card {
            position: relative;
            z-index: 3;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            padding: 2.5rem 3rem;
            max-width: 720px;
            width: calc(100% - 4rem);
            margin: 1.5rem auto 2rem;
            animation: fadeUp 1s ease-out 0.6s both;
            box-shadow:
                0 24px 80px rgba(0, 0, 0, 0.08),
                0 4px 16px rgba(0, 0, 0, 0.04);
        }

        .booking-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .booking-card-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--cream);
        }

        .booking-card-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 300;
            margin-top: 0.75rem;
            line-height: 1.5;
            text-align: center;
            grid-column: 1 / -1;
        }

        .booking-rating {
            position: relative;
            z-index: 3;
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .booking-rating-score {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-body);
        }

        .booking-rating-stars {
            color: #f5c518;
            letter-spacing: 2px;
            font-size: 1.05rem;
        }

        .booking-rating-source {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .booking-card-price {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
            text-align: right;
        }

        .booking-card-price strong {
            display: block;
            color: var(--green);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .booking-card-price.hidden {
            visibility: hidden;
        }

        /* Inline spinner shown while a price quote is in flight. Sized to
           match the booking-card-price strong line so the card height stays
           the same when loading <-> loaded. */
        .price-spinner {
            display: inline-block;
            width: 1.1em;
            height: 1.1em;
            border: 2px solid rgba(0, 0, 0, 0.12);
            border-top-color: var(--green);
            border-radius: 50%;
            animation: price-spin 0.8s linear infinite;
            vertical-align: middle;
        }
        @keyframes price-spin {
            to { transform: rotate(360deg); }
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto;
            gap: 1.25rem;
            align-items: end;
            min-width: 0;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 0;
        }

        .form-group label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .form-group input {
            background: var(--navy);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--radius-sm);
            padding: 0.9rem 1.1rem;
            color: var(--cream);
            font-family: var(--font-body);
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
            width: 100%;
            min-width: 0;
            -webkit-appearance: none;
            appearance: none;
        }

        .date-wrap {
            position: relative;
        }
        .date-wrap input {
            width: 100%;
        }

        /* iOS Safari: normalize date/time input height — Safari computes
           different intrinsic heights for empty date vs time inputs even with
           -webkit-appearance:none. Lock line-height and min-height to match. */
        .form-group input[type="date"],
        .form-group input[type="time"] {
            line-height: 1.2;
            min-height: calc(1.2em + 1.8rem + 2px);
            display: block;
        }
        .date-placeholder {
            position: absolute;
            left: 1.1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            opacity: 0.6;
            font-size: 0.95rem;
            pointer-events: none;
            display: none;
        }

        @media (max-width: 768px) {
            .date-placeholder { display: block; }
        }

        .form-group input:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px var(--green-glow);
        }

        .btn-book {
            background: #1a1a1a;
            color: var(--gold);
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.9rem 2.5rem;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            grid-column: 1 / -1;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
            background: #000;
        }

        /* ─── SECTION COMMON ─── */
        section {
            padding: 6rem 3rem;
        }

        .section-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--green-mid);
            margin-bottom: 1rem;
        }

        .section-label-brush {
            display: inline-block;
            color: var(--gold);
            padding: 0.7rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 200 50'%3E%3Cpath d='M2 24c1-8 3-16 8-19 4-2 10-4 20-4h140c10 0 16 2 20 4 5 3 7 11 8 19 1 10-3 18-8 22-4 3-10 4-20 4H30c-10 0-16-1-20-4C5 42 1 34 2 24z' fill='%231a1a1a'/%3E%3C/svg%3E") no-repeat center;
            background-size: 100% 100%;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--cream);
            margin-bottom: 1rem;
            line-height: 1.15;
        }

        .section-desc {
            color: var(--text-muted);
            max-width: 560px;
            line-height: 1.7;
            font-weight: 300;
            font-size: 1.05rem;
        }

        /* ─── REVIEWS ─── */
        .reviews-section {
            padding: 2rem 3rem 2rem;
            margin-top: -7rem;
            overflow: hidden;
            position: relative;
            z-index: 10;
        }
        .reviews-track {
            display: flex;
            gap: 2rem;
            animation: scrollReviews 60s linear infinite;
            width: max-content;
        }
        .reviews-track:hover {
            animation-play-state: paused;
        }
        @keyframes scrollReviews {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .review-card {
            flex: 0 0 300px;
            background: var(--navy);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: var(--radius);
            padding: 2rem 2.25rem;
            transition: transform 0.3s;
        }
        .review-card:hover {
            transform: translateY(-4px);
        }
        .review-stars {
            color: #f5c518;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 0.75rem;
        }
        .review-text {
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 1rem;
            font-style: italic;
        }
        .review-author {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--cream);
        }
        .review-source {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 0.15rem;
        }

        @media (max-width: 768px) {
            .reviews-section { padding: calc(2rem + 50px) 1.5rem 2rem; }
            .review-card { flex: 0 0 260px; }
        }

        /* ─── VIDEO SECTION ─── */
        .video-section {
            background: var(--navy);
            position: relative;
        }

        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
        }

        .video-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .video-header .section-desc {
            margin: 0 auto;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            background: var(--slate);
            border-radius: var(--radius);
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
        }

        .video-placeholder {
            position: absolute;
            inset: 0;
            text-align: center;
            color: #fff;
            background-image: url('https://img.youtube.com/vi/piscOKwFWpM/maxresdefault.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
            transition: background 0.3s;
        }

        .video-container:hover .video-placeholder::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
        }

        .video-placeholder > * {
            position: relative;
            z-index: 1;
        }

        .video-placeholder p {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 500;
            transform: translateY(25px);
        }

        .video-placeholder .play-icon {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: #000;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            padding-left: 6px;
            transform: translateY(25px);
        }

        .video-container:hover .play-icon {
            background: #000;
            border-color: #000;
            color: var(--gold);
            transform: translateY(25px) scale(1.1);
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ─── HOW IT WORKS ─── */
        .how-it-works {
            max-width: 1200px;
            margin: 0 auto;
        }

        .how-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .how-header .section-desc {
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(35, 77, 53, 0.2), rgba(35, 77, 53, 0.2), transparent);
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid rgba(35, 77, 53, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--green);
            position: relative;
            z-index: 1;
            transition: all 0.3s;
            line-height: 1;
            padding-bottom: 4px;
        }

        .step:hover .step-number {
            background: var(--green-glow);
            border-color: var(--green);
            transform: scale(1.1);
        }

        .step h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .step p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ─── FAQ ─── */
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            transition: color 0.3s;
            font-size: 1rem;
            color: var(--cream);
            font-weight: 500;
        }

        .faq-question:hover {
            color: var(--green);
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--text-muted);
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-toggle {
            border-color: var(--green);
            color: var(--green);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-bottom: 1.5rem;
        }

        .faq-answer p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .faq-more {
            text-align: center;
            margin-top: 2rem;
        }

        .faq-more a {
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .faq-more a:hover {
            color: var(--green-mid);
        }

        /* ─── ABOUT PWG ─── */
        .about-section {
            background: var(--navy);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-text p {
            color: var(--text-body);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            border-color: rgba(35, 77, 53, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .about-more {
            margin-top: 1rem;
        }

        .about-more a {
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .about-more a:hover {
            text-decoration: underline;
        }

        /* ─── BUSINESS SECTION ─── */
        .business-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .business-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .business-header .section-desc {
            margin: 0 auto;
        }

        .business-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .business-card {
            background: var(--navy);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .business-card:hover {
            border-color: rgba(35, 77, 53, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .business-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--green-glow);
            border: 1px solid rgba(35, 77, 53, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .business-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--cream);
            margin-bottom: 0.75rem;
        }

        .business-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .business-card a {
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
        }

        .business-card a:hover {
            text-decoration: underline;
        }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--navy);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-brand .nav-logo {
            display: inline-block;
            margin-bottom: 1rem;
        }

        .footer-brand .nav-logo img {
            height: 60px;
            margin: 0;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-aaa-img { width: 125px; height: auto; display: block; margin-top: 25px; }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--cream);
            margin-bottom: 1.25rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.6rem;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--green);
        }

        .footer-col .contact-item {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .nav {
                padding: 0.6rem 1.5rem;
            }

            .nav-logo img {
                height: 90px;
                margin: 5px 0 -38px 0;
            }

            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .hero-badge {
                margin-top: 6rem;
            }

            .hero-badge .badge-full {
                display: none;
            }

            .hero-badge .badge-mobile {
                display: inline;
            }


            .hero-content {
                padding: 0 1rem;
                text-align: center;
            }

            .hero {
                text-align: center;
            }

            .booking-card {
                padding: 1.75rem;
                width: calc(100% - 2rem);
            }

            .booking-form {
                grid-template-columns: 5fr 3fr;
                gap: 0.75rem;
            }

            .form-group input {
                font-size: 16px;
                padding: 0.75rem 0.75rem;
            }

            .form-group input[type="date"],
            .form-group input[type="time"] {
                min-height: calc(1.2em + 1.5rem + 2px);
            }

            section {
                padding: 4rem 1.5rem;
            }

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

            .steps::before {
                display: none;
            }

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

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

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
        }
