
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #0b0b0c;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a { color: #0b0b0c; text-decoration: none; transition: color 0.18s; }
        a:hover { color: #c9a13b; }
        img { display: block; max-width: 100%; }

        /* ── HEADER ── */
        .header {
            height: 84px;
            padding: 0 48px;
            border-bottom: 1px solid #e8e8e8;
            display: flex;
            align-items: center;
            gap: 32px;
            position: sticky;
            top: 0;
            background: #ffffff;
            z-index: 100;
        }

        .header-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex: 1 1 auto;
            min-width: 0;
        }

        .header-logo {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .header-logo-fallback {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1.5px solid #0b0b0c;
            background: #0b0b0c;
            flex-shrink: 0;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: #c9a13b;
            letter-spacing: 0.03em;
        }

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

        .header-wordmark-top {
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1;
            color: #0b0b0c;
        }

        .header-wordmark-sub {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.22em;
            color: #777777;
            text-transform: uppercase;
            line-height: 1;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: clamp(14px, 2vw, 30px);
            flex-shrink: 0;
        }

        .header-nav a {
            font-size: 13px;
            font-weight: 500;
            color: #6a6a6a;
            white-space: nowrap;
            transition: color 0.18s;
        }

        .header-nav a:hover { color: #0b0b0c; }
        .header-nav a.active { color: #0b0b0c; font-weight: 600; }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1 1 auto;
            min-width: 0;
            justify-content: flex-end;
        }

        .header-login {
            font-size: 13px;
            font-weight: 600;
            color: #0b0b0c;
            white-space: nowrap;
        }

        .header-login:hover { color: #c9a13b; }

        .btn-register {
            font-size: 13px;
            font-weight: 600;
            color: #0b0b0c;
            border: 1px solid #0b0b0c;
            padding: 11px 22px;
            background: transparent;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.18s, color 0.18s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-register:hover {
            background: #0b0b0c;
            color: #ffffff;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 4px;
            background: none;
            border: none;
            flex-shrink: 0;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: #0b0b0c;
            transition: transform 0.22s, opacity 0.18s;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* Mobile nav */
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 20px 48px 28px;
            border-bottom: 1px solid #e8e8e8;
            gap: 20px;
            background: #ffffff;
            position: sticky;
            top: 84px;
            z-index: 99;
        }

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

        .mobile-menu a {
            font-size: 15px;
            font-weight: 500;
            color: #6a6a6a;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active { color: #0b0b0c; font-weight: 600; }

        .mobile-menu-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 12px;
            border-top: 1px solid #e8e8e8;
        }

        /* ── HERO ── */
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 122px 32px 110px;
        }

        .hero-inner {
            max-width: 760px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .eyebrow-row {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 26px;
        }

        .hero-ball { display: block; flex-shrink: 0; }

        .eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .hero h1 {
            font-size: 58px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.08;
            color: #0b0b0c;
            margin-bottom: 28px;
        }

        .hero-sub {
            max-width: 560px;
            font-size: 17px;
            color: #6a6a6a;
            line-height: 1.75;
            margin-bottom: 46px;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            gap: 34px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            background: #0b0b0c;
            border: 1px solid #0b0b0c;
            padding: 16px 34px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.18s, border-color 0.18s;
        }

        .btn-primary:hover {
            background: #c9a13b;
            border-color: #c9a13b;
            color: #ffffff;
        }

        .btn-text-link {
            font-size: 14px;
            font-weight: 600;
            color: #0b0b0c;
            text-decoration: none;
            border-bottom: 1px solid #0b0b0c;
            padding-bottom: 2px;
            transition: color 0.18s, border-color 0.18s;
        }

        .btn-text-link:hover {
            color: #c9a13b;
            border-color: #c9a13b;
        }

        /* ── PHOTO ROW ── */
        .photo-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: #e8e8e8;
            max-width: 1180px;
            margin: 0 auto;
        }

        .photo-column {
            display: flex;
            flex-direction: column;
            min-width: 0;
            background: #ffffff;
        }

        .photo-label {
            padding: 15px 28px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: #777777;
            border-bottom: 1px solid #e8e8e8;
            flex-shrink: 0;
        }

        .photo-panel {
            height: 740px;
            overflow: hidden;
            min-width: 0;
            position: relative;
            background: #ffffff;
        }

        @keyframes kenburns {
            from { transform: scale(1.0); }
            to   { transform: scale(1.08); }
        }

        .photo-panel .slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            opacity: 0;
            display: block;
            max-width: none;
            will-change: transform, opacity;
            transition: opacity 0.9s ease;
        }

        .photo-panel .slide.active {
            opacity: 1;
            animation: kenburns 4.5s ease-out both;
        }

        /* ── PULL QUOTE ── */
        .pull-quote {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 110px 32px;
        }

        .pull-quote-inner {
            max-width: 680px;
            width: 100%;
        }

        .quote-rule {
            width: 44px;
            height: 2px;
            background: #c9a13b;
            margin: 0 auto 40px;
        }

        .quote-text {
            font-size: 28px;
            font-weight: 500;
            font-style: italic;
            line-height: 1.5;
            color: #0b0b0c;
            margin-bottom: 26px;
        }

        .quote-attribution {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: #777777;
        }

        /* ── THREE COLUMNS ── */
        .col-number {
            font-family: 'Anton', sans-serif;
            font-size: 13px;
            letter-spacing: 0.18em;
            color: #c9a13b;
            margin-bottom: 16px;
            display: block;
        }

        /* ── ABOUT ── */
        .about-section {
            border-top: 1px solid #e8e8e8;
        }

        .about-header {
            max-width: 1180px;
            margin: 0 auto;
            padding: 80px 48px 56px;
            border-bottom: 1px solid #e8e8e8;
        }

        .about-heading {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.1;
            color: #0b0b0c;
            margin-top: 16px;
            margin-bottom: 14px;
        }

        .about-sub {
            font-size: 15px;
            color: #6a6a6a;
            line-height: 1.75;
            max-width: 560px;
        }

        /* Owner feature row */
        .about-owner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
            max-width: 1180px;
            margin: 0 auto;
        }
        .about-owner-photo {
            position: relative;
            min-height: 540px;
            overflow: hidden;
        }

        .about-owner-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
        }

        .about-photo-fallback {
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            font-family: 'Anton', sans-serif;
            font-size: 32px;
            color: #c9a13b;
            background: #f0f0f0;
            letter-spacing: 0.05em;
        }

        .about-owner-content {
            background: #ffffff;
            padding: 56px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-badge {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: #c9a13b;
            border: 1px solid #c9a13b;
            padding: 5px 12px;
            display: inline-block;
            margin-bottom: 22px;
            align-self: flex-start;
        }

        .about-owner-name {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.025em;
            color: #0b0b0c;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .about-owner-bio {
            font-size: 15px;
            color: #6a6a6a;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-owner-bio:last-child { margin-bottom: 0; }

        /* Bio / Career tabs */
        .about-tabs {
            display: flex;
            gap: 28px;
            border-bottom: 1px solid #e8e8e8;
            margin-bottom: 24px;
            margin-top: 4px;
        }

        .about-tab {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #aaaaaa;
            background: none;
            border: none;
            padding: 0 0 12px;
            cursor: pointer;
            position: relative;
            transition: color 0.18s;
        }

        .about-tab::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: #c9a13b;
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        .about-tab.active {
            color: #0b0b0c;
        }

        .about-tab.active::after {
            transform: scaleX(1);
        }

        .about-tab:hover { color: #0b0b0c; }

        .about-tab-panel {
            display: none;
        }

        .about-tab-panel.active {
            display: block;
        }

        .about-experience-list {
            list-style: none;
        }

        .about-experience-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 16px;
            font-size: 13px;
            font-weight: 500;
            color: #0b0b0c;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .about-experience-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .about-experience-year {
            font-size: 11px;
            font-weight: 400;
            color: #777777;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .about-owner--reverse {
            direction: rtl;
        }
        .about-owner--reverse > * {
            direction: ltr;
        }

        /* Staff header */
        .about-staff-header {
            max-width: 1180px;
            margin: 0 auto;
            padding: 56px 48px 40px;
        }

        .about-staff-heading {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: #0b0b0c;
            border-top: 1px solid #0b0b0c;
            padding-top: 20px;
            display: inline-block;
        }

        /* Trainer cards grid */
        .about-trainers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: #e8e8e8;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
            max-width: 1180px;
            margin: 0 auto 100px;
        }

        .trainer-card {
            background: #ffffff;
            display: flex;
            flex-direction: column;
        }

        .trainer-photo {
            height: 620px;
            overflow: hidden;
         
        }

        .trainer-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 50%;
            display: block;

        }

        .trainer-photo--jordan img {
            object-position: center 55%;
        }

        .trainer-photo .about-photo-fallback {
            font-size: 22px;
        }

        .trainer-info {
            padding: 28px 32px 36px;
            border-top: 1px solid #e8e8e8;
        }

        .trainer-role {
            font-family: 'Anton', sans-serif;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #c9a13b;
            margin-bottom: 8px;
        }

        .trainer-name {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: #0b0b0c;
            margin-bottom: 12px;
        }

        .trainer-bio {
            font-size: 13px;
            color: #6a6a6a;
            line-height: 1.75;
        }

        /* ── PROGRAMS ── */
        .programs-section {
            padding: 0 48px 100px;
        }

        .programs-intro {
            max-width: 1180px;
            margin: 0 auto;
            padding-top: 100px;
            padding-bottom: 88px;
        }

        .programs-eyebrow-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .programs-eyebrow-rule {
            display: block;
            width: 34px;
            height: 2px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .programs-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .programs-headline {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(44px, 6.4vw, 104px);
            font-weight: 700;
            line-height: 0.92;
            text-transform: uppercase;
            color: #111111;
            letter-spacing: -0.02em;
            margin-bottom: 36px;
        }

        .programs-intro-para {
            max-width: 660px;
            font-family: 'Archivo', sans-serif;
            font-size: 18px;
            color: #5f5c57;
            line-height: 1.75;
        }

        .programs-flagship {
            max-width: 1180px;
            margin: 0 auto 64px;
            display: grid;
            grid-template-columns: 52% 1fr;
            gap: 56px;
            align-items: start;
            padding-bottom: 80px;
            border-bottom: 1px solid #e6e3dd;
        }

        .programs-flagship-left {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .programs-flagship-left .programs-price-bar {
            margin: 0;
            border-top: 1px solid #e6e3dd;
            border-bottom: none;
            padding: 22px 0 0;
        }

        .programs-flagship-photo-wrap {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1.2;
        }

        .programs-flagship-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .programs-best-value-pill {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: #c9a13b;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 100px;
        }

        .programs-tier-eyebrow-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .programs-tier-rule {
            display: block;
            width: 24px;
            height: 1.5px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .programs-tier-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .programs-gold-name {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(40px, 4.6vw, 68px);
            font-weight: 700;
            text-transform: uppercase;
            color: #111111;
            line-height: 0.9;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .programs-gold-tagline {
            font-family: 'Archivo', sans-serif;
            font-size: 15px;
            color: #8a867f;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .programs-gold-body {
            font-family: 'Archivo', sans-serif;
            font-size: 15px;
            color: #5f5c57;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .programs-price-bar {
            display: flex;
            align-items: baseline;
            gap: 10px;
            padding: 22px 0;
            border-top: 1px solid #e6e3dd;
            border-bottom: 1px solid #e6e3dd;
            margin: 28px 0;
            flex-wrap: wrap;
        }

        .programs-price-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 66px;
            font-weight: 700;
            color: #111111;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .programs-price-mo {
            font-family: 'Archivo', sans-serif;
            font-size: 18px;
            color: #8a867f;
            font-weight: 500;
        }

        .programs-price-session {
            font-family: 'Oswald', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.18em;
            color: #c9a13b;
            text-transform: uppercase;
            margin-left: auto;
            align-self: center;
        }

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

        .programs-bullets-grid li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: 'Archivo', sans-serif;
            font-size: 13px;
            color: #5f5c57;
            line-height: 1.55;
        }

        .programs-bullet-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #c9a13b;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .programs-cta-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #111111;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            transition: background 0.2s;
            min-height: 44px;
        }

        .programs-cta-pill span { color: #c9a13b; transition: transform 0.2s; }
        .programs-cta-pill:hover { background: #c9a13b; color: #ffffff; }
        .programs-cta-pill:hover span { color: #ffffff; transform: translateX(4px); }

        .programs-supporting-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .prog-card {
            background: #ffffff;
            border: 1px solid #e6e3dd;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.22s;
        }

        .prog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

        .prog-card-photo-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1.0;
        }

        .prog-card-photo-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #c9a13b;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.32, 1) 0.25s;
            z-index: 1;
        }

        .prog-card--in .prog-card-photo-wrap::after {
            transform: scaleX(1);
        }
       
        .prog-card-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .fix-card-photo .prog-card-photo {
            object-position: center 49%;
        }

        

        .prog-card-num {
            position: absolute;
            bottom: -16px;
            right: 8px;
            font-family: 'Oswald', sans-serif;
            font-size: 120px;
            font-weight: 700;
            color: #c9a13b;
            opacity: 0.14;
            line-height: 1;
            user-select: none;
            pointer-events: none;
        }

        .prog-card-body {
            padding: 28px 24px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .prog-card-tier {
            font-family: 'Oswald', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: #c9a13b;
            margin-bottom: 10px;
        }

        .prog-card-price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .prog-card-price {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #111111;
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .prog-card-price-mo {
            font-size: 18px;
            font-weight: 400;
            color: #8a867f;
        }

        .prog-card-per-session {
            font-family: 'Oswald', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.16em;
            color: #c9a13b;
            text-transform: uppercase;
            align-self: center;
        }

        .prog-card-blurb {
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
            color: #5f5c57;
            line-height: 1.7;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #e6e3dd;
        }

        .prog-card-list-label {
            font-family: 'Archivo', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: #8a867f;
            margin-top: 14px;
            margin-bottom: 10px;
        }

        .prog-card-blurb + .prog-card-list-label { margin-top: 0; }

        .prog-card-list {
            list-style: none;
        }

        .prog-card-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: 'Archivo', sans-serif;
            font-size: 13px;
            color: #5f5c57;
            line-height: 1.55;
            padding-bottom: 6px;
        }

        .prog-card-list li:last-child { padding-bottom: 0; }

        .prog-card-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .prog-card-dot--gold { background: #c9a13b; }
        .prog-card-dot--dark { background: #111111; }

        .prog-card-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
            padding: 13px 24px;
            border: 1px solid #111111;
            border-radius: 100px;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #111111;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            min-height: 44px;
            margin-top: 20px;
        }

        .prog-card-cta:hover { background: #111111; color: #ffffff; }
        .prog-card-2nd { margin-top:1.4rem;}

        .programs-specialty-divider {
            max-width: 1180px;
            margin: 64px auto 28px;
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 56px;
            border-top: 1px solid #e6e3dd;
        }

        .programs-specialty-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #c9a13b;
            white-space: nowrap;
        }

        .programs-specialty-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        /* ── TRAIN WITHOUT COMMITTING ── */
        .dropin-section {
            background: #ffffff;
            border-top: 1px solid #e6e3dd;
            padding: 100px 48px 120px;
        }

        .dropin-intro {
            max-width: 1180px;
            margin: 0 auto 72px;
        }

        .dropin-eyebrow-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }

        .dropin-eyebrow-rule {
            display: block;
            width: 34px;
            height: 2px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .dropin-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .dropin-headline {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(40px, 5.5vw, 88px);
            font-weight: 700;
            line-height: 0.92;
            text-transform: uppercase;
            color: #111111;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
        }

        .dropin-intro-para {
            font-family: 'Archivo', sans-serif;
            font-size: 16px;
            color: #5f5c57;
            line-height: 1.75;
            max-width: 560px;
        }

        .dropin-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 22px;
            align-items: stretch;
        }

        .dropin-body-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

        .dropin-featured-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            min-height: 540px;
            display: flex;
            flex-direction: column;
            aspect-ratio: .9;
        }

        .dropin-info-col {
            display: flex;
            flex-direction: column;
        }

        .dropin-info-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(34px, 3.8vw, 56px);
            font-weight: 700;
            line-height: 0.95;
            text-transform: uppercase;
            color: #111111;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
        }

        .dropin-info-body {
            font-family: 'Archivo', sans-serif;
            font-size: 15px;
            color: #5f5c57;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .dropin-info-list {
            list-style: none;
            margin: 10px 0 32px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dropin-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
            color: #3a3833;
            line-height: 1.55;
            padding-bottom: 12px;
            border-bottom: 1px solid #e6e3dd;
        }

        .dropin-info-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .dropin-info-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #c9a13b;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .dropin-info-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #111111;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            min-height: 44px;
            align-self: flex-start;
            transition: background 0.2s;
        }

        .dropin-info-cta span { color: #c9a13b; transition: transform 0.2s; }
        .dropin-info-cta:hover { background: #c9a13b; color: #ffffff; }
        .dropin-info-cta:hover span { color: #ffffff; transform: translateX(4px); }

        .dropin-featured-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%;
            display: block;
        }

        .dropin-featured-scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(17,17,17,0.5) 40%, rgba(17,17,17,0.92) 100%);
        }

        .dropin-featured-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 24px;
        }

        .dropin-start-pill {
            display: inline-block;
            background: #c9a13b;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            align-self: flex-start;
        }

        .dropin-featured-bottom { margin-top: auto; }

        .dropin-featured-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(32px, 3.5vw, 46px);
            font-weight: 700;
            text-transform: uppercase;
            color: #ffffff;
            line-height: 0.92;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
            margin-top: 12px;
        }

        .dropin-featured-desc {
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .dropin-featured-price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 20px;
        }

        .dropin-featured-price {
            font-family: 'Oswald', sans-serif;
            font-size: 70px;
            font-weight: 700;
            color: #c9a13b;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .dropin-featured-unit {
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }

        .dropin-book-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            align-self: flex-start;
            min-width: 220px;
            background: #ffffff;
            color: #111111;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 15px 24px;
            border-radius: 100px;
            text-decoration: none;
            min-height: 44px;
            transition: background 0.2s, color 0.2s;
        }

        .dropin-book-pill:hover { background: #c9a13b; color: #ffffff; }

        .dropin-rows-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dropin-rows {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dropin-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            border: 1px solid #e6e3dd;
            border-radius: 4px;
            background: #ffffff;
            text-decoration: none;
            transition: transform 0.2s ease, border-color 0.2s;
        }

        .dropin-row:hover { transform: translateX(8px); border-color: #c9a13b; }

        .dropin-row-left { display: flex; flex-direction: column; gap: 4px; }

        .dropin-row-name {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            color: #111111;
            letter-spacing: -0.01em;
            line-height: 1;
        }

        .dropin-row-detail {
            font-family: 'Archivo', sans-serif;
            font-size: 13px;
            color: #8a867f;
            line-height: 1.4;
        }

        .dropin-row-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .dropin-row-price {
            font-family: 'Oswald', sans-serif;
            font-size: 30px;
            font-weight: 700;
            color: #c9a13b;
            letter-spacing: -0.01em;
            line-height: 1;
        }

        .dropin-row-arrow {
            font-size: 18px;
            color: #c9a13b;
            transition: transform 0.2s;
            display: inline-block;
        }

        .dropin-row:hover .dropin-row-arrow { transform: translateX(4px); }

        .dropin-addons-panel {
            background: #faf8f4;
            border: 1px solid #e6e3dd;
            border-radius: 4px;
            padding: 20px 24px;
        }

        .dropin-addons-label {
            font-family: 'Archivo', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: #8a867f;
            margin-bottom: 14px;
        }

        .dropin-addons-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .dropin-addon-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1px solid #e6e3dd;
            border-radius: 100px;
            background: #ffffff;
            font-family: 'Archivo', sans-serif;
            font-size: 13px;
            color: #5f5c57;
            line-height: 1;
        }

        .dropin-addon-chip strong { color: #111111; font-weight: 600; }

        /* ── SHOP ── */
        .shop-section {
            padding: 100px 48px;
            border-top: 1px solid #e6e3dd;
            background: #faf8f4;
        }

        .shop-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }

        .shop-eyebrow {
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.32em;
            color: #8a6d1f;
            text-transform: uppercase;
        }

        .shop-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 700;
            color: #111111;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .shop-sub {
            font-family: 'Archivo', sans-serif;
            font-size: 16px;
            color: #5f5c57;
            line-height: 1.75;
            max-width: 480px;
        }

        /* ── FOOTER ── */
        .footer {
            border-top: 1px solid #e8e8e8;
            padding: 30px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .footer-left span,
        .footer-left a {
            font-size: 12px;
            font-weight: 500;
            color: #777777;
        }

        .footer-left a:hover { color: #c9a13b; }

        .footer-right {
            font-size: 12px;
            font-weight: 500;
            color: #777777;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 820px) {

            /* Header */
            .header { padding: 0 24px; gap: 16px; }
            .header-nav, .header-actions { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { padding: 20px 24px 28px; }

            /* Hero */
            .hero { padding: 72px 24px 64px; }
            .hero h1 { font-size: 36px; }
            .hero-sub { font-size: 15px; }


            /* Photo row */
            .photo-row { grid-template-columns: 1fr; max-width: 100%; width: 100%; }
            .photo-panel { height: auto; aspect-ratio: 3/4; }
            .photo-panel .slide { object-fit: contain; object-position: center center; }

            /* Pull quote */
            .pull-quote { padding: 64px 24px; }
            .quote-text { font-size: 22px; }

            /* Programs columns */

            /* Footer */
            .footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
            .footer-left { gap: 16px; }

            /* About header */
            .about-header { padding: 56px 24px 40px; }
            .about-heading { font-size: 32px; }

            /* Owner rows — stack to single column */
            .about-owner { grid-template-columns: 1fr; }
            .about-owner-photo { height: 360px; min-height: 0; }
            .about-owner-content { padding: 36px 24px; }
            .about-owner-name { font-size: 28px; }

            /* Fix --reverse owner: undo the RTL desktop trick, put photo first */
            .about-owner--reverse { direction: ltr; }
            .about-owner--reverse .about-owner-photo { order: -1; }

            /* Training staff */
            .about-staff-header { padding: 40px 24px 28px; }
            .about-trainers-grid { grid-template-columns: 1fr; margin-bottom: 72px; }
            .trainer-info { padding: 22px 24px 28px; }
            .trainer-photo { height: 300px; background: none; }
            .trainer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
            .trainer-photo--jordan img { object-position: center 49%; }

            /* Programs */
            .programs-section { padding: 0 24px 80px; }
            .programs-intro { padding-top: 64px; padding-bottom: 56px; }
            .programs-intro-para { font-size: 16px; }
            .programs-headline { font-size: 34px; }
            .programs-flagship { grid-template-columns: 1fr; gap: 32px; padding-bottom: 56px; margin-bottom: 40px; }
            .programs-price-amount { font-size: 48px; }
            .programs-price-session { margin-left: 0; flex-basis: 100%; }
            .programs-bullets-grid { grid-template-columns: 1fr; }
            .programs-supporting-grid { grid-template-columns: 1fr; gap: 16px; }
            .programs-specialty-divider { margin: 40px auto 20px; padding-top: 40px; }
            .programs-specialty-grid { grid-template-columns: 1fr; gap: 16px; }
            .prog-card-num { font-size: 80px; }

            /* Drop-in */
            .dropin-section { padding: 64px 24px 80px; }
            .dropin-body-grid { grid-template-columns: 1fr; gap: 32px; }
            .dropin-featured-card { min-height: 420px; }
        }

        /* ── DESKTOP: fill panel ── */
        @media (min-width: 821px) {
            .photo-panel .slide {
                object-fit: contain;
                object-position: center center;
            }
        }

        /* ── CURTAIN REVEAL ── */
        .photo-column.curtain-ready .photo-panel {
            transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
        }
        .photo-column.curtain-ready .photo-label {
            transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
        }
        .photo-column.in-view .photo-panel {
            clip-path: inset(0 0 0 0) !important;
        }
        .photo-column.in-view .photo-label {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

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

        /* ── CONTACT ── */
        .contact-section {
            background: #ffffff;
            border-top: 1px solid #e8e8e8;
            padding: 100px 48px 120px;
        }

        .contact-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 56px;
        }

        .contact-eyebrow-rule {
            display: block;
            width: 34px;
            height: 2px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .contact-eyebrow-label {
            font-family: 'Anton', sans-serif;
            font-size: 13px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(44px, 5vw, 80px);
            font-weight: 700;
            line-height: 0.92;
            text-transform: uppercase;
            color: #0b0b0c;
            letter-spacing: -0.01em;
            margin-bottom: 24px;
        }

        .contact-sub {
            font-size: 15px;
            color: #6a6a6a;
            line-height: 1.75;
            max-width: 400px;
            margin-bottom: 48px;
        }

        .contact-details {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-details li {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e8e8e8;
        }

        .contact-details li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-detail-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .contact-detail-value {
            font-size: 14px;
            font-weight: 500;
            color: #0b0b0c;
            text-decoration: none;
            transition: color 0.18s;
        }

        a.contact-detail-value:hover { color: #c9a13b; }

        /* Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #0b0b0c;
        }

        .form-required { color: #c9a13b; }
        .form-optional { color: #777777; font-weight: 400; letter-spacing: 0; text-transform: none; }

        .form-input {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #0b0b0c;
            background: #ffffff;
            border: 1px solid #d0d0d0;
            padding: 14px 16px;
            outline: none;
            transition: border-color 0.18s;
            width: 100%;
            -webkit-appearance: none;
            appearance: none;
            border-radius: 0;
        }

        .form-input::placeholder { color: #aaaaaa; }
        .form-input:focus { border-color: #0b0b0c; }

        .form-textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b0b0c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-footer {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .form-submit {
            font-size: 14px;
            cursor: pointer;
            border: none;
            flex-shrink: 0;
        }

        .form-submit:disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }

        .form-status {
            font-size: 13px;
            font-weight: 500;
            line-height: 1.5;
        }

        .form-status--ok  { color: #2e7d32; }
        .form-status--err { color: #c62828; }

        @media (max-width: 820px) {
            .contact-section { padding: 72px 24px 80px; }
            .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .contact-heading { margin-bottom: 20px; }
            .contact-sub { margin-bottom: 36px; }
            .form-row { grid-template-columns: 1fr; }
        }

        /* ── ROSTER ── */
        .roster-section {
            background: #ffffff;
            padding: 100px 48px 120px;
            border-top: 1px solid #e8e8e8;
        }

        .roster-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 56px;
        }

        .roster-eyebrow-rule {
            display: block;
            width: 34px;
            height: 2px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .roster-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .roster-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: end;
            margin-bottom: 64px;
        }

        .roster-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(44px, 6.4vw, 104px);
            font-weight: 700;
            line-height: 0.92;
            text-transform: uppercase;
            color: #0b0b0c;
            letter-spacing: -0.01em;
        }

        .roster-intro {
            font-family: 'Archivo', sans-serif;
            font-size: 15px;
            color: #6a6a6a;
            line-height: 1.75;
            max-width: 460px;
        }

        .roster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
            gap: 18px;
        }

        .roster-card {
            display: block;
            aspect-ratio: 3 / 4;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            text-decoration: none;
        }

        .roster-card-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: grayscale(0.35) contrast(1.05);
            transition: transform 0.7s ease, filter 0.7s ease;
        }

        .roster-card:hover .roster-card-img {
            transform: scale(1.05);
            filter: grayscale(0) contrast(1.05);
        }

        .roster-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.72) 100%);
            pointer-events: none;
        }

        .roster-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0 18px 18px;
        }

        .roster-card-tick {
            display: block;
            width: 22px;
            height: 2px;
            background: #c9a13b;
            margin-bottom: 8px;
        }

        .roster-card-name {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 4px;
            opacity: 0;
            transform: translateY(7px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .roster-card.name-in .roster-card-name {
            opacity: 1;
            transform: translateY(0);
        }

        .roster-card-cat {
            display: block;
            font-family: 'Archivo', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.65);
        }

        @media (max-width: 820px) {
            .roster-section { padding: 72px 24px 80px; }
            .roster-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
            .roster-heading { font-size: 36px; }
            .roster-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
            .roster-card-info { padding: 0 14px 14px; }
        }

        /* ── SOCIALS ── */
        .socials-section {
            background: #ffffff;
            padding: 100px 48px 120px;
            border-top: 1px solid #e8e8e8;
        }

        .socials-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 56px;
        }

        .socials-eyebrow-rule {
            display: block;
            width: 34px;
            height: 1px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .socials-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #c9a13b;
        }

        .socials-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: end;
            margin-bottom: 64px;
        }

        .socials-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(44px, 6.4vw, 104px);
            font-weight: 700;
            line-height: 0.92;
            text-transform: uppercase;
            color: #0b0b0c;
            letter-spacing: -0.01em;
        }

        .socials-intro {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: #6a6a6a;
            line-height: 1.75;
            max-width: 460px;
        }

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

        /* Social card */
        .social-card {
            display: flex;
            flex-direction: column;
            border-radius: 6px;
            background: #ffffff;
            border: 1px solid #e7e7e7;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
            text-decoration: none;
            color: #0b0b0c;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .social-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0,0,0,0.11);
            border-color: #c9a13b;
            color: #0b0b0c;
        }

        /* Top row */
        .social-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid #eeeeee;
            flex-shrink: 0;
        }

        .social-card-icon {
            width: 22px;
            height: 22px;
            color: #0b0b0c;
            flex-shrink: 0;
            display: flex;
        }

        .social-card-icon svg {
            width: 100%;
            height: 100%;
        }

        .social-card-platform {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #6a6a6a;
        }

        /* Panel */
        .social-card-panel {
            height: 266px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f7f6f4;
            overflow: hidden;
            position: relative;
        }

        .fb-like-overlay {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border-radius: 100px;
            padding: 4px 9px 4px 7px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.14);
            pointer-events: none;
        }

        .fb-like-thumb {
            width: 13px;
            height: 13px;
            color: var(--like-color, #1877F2);
            flex-shrink: 0;
            display: flex;
        }

        .fb-like-thumb svg {
            width: 100%;
            height: 100%;
        }

        .fb-like-count {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #1c1e21;
            line-height: 1;
        }

        .social-card-panel-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .social-card-panel-icon {
            width: 64px;
            height: 64px;
            color: #d6d0c8;
            display: flex;
            transition: color 0.28s ease, transform 0.28s ease;
        }

        .social-card-panel-icon svg {
            width: 100%;
            height: 100%;
        }

        .social-card:hover .social-card-panel-icon {
            color: #c9a13b;
            transform: scale(1.1);
        }

        /* Bottom */
        .social-card-bottom {
            padding: 16px 20px 20px;
            border-top: 1px solid #eeeeee;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .social-card-tick {
            display: block;
            width: 22px;
            height: 1px;
            background: #c9a13b;
            margin-bottom: 4px;
        }

        .social-card-handle {
            font-family: 'Oswald', sans-serif;
            font-size: 23px;
            font-weight: 600;
            color: #0b0b0c;
            line-height: 1.1;
            word-break: break-all;
        }

        .social-card-tag {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #6a6a6a;
        }

        .social-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
            border: 1px solid #0b0b0c;
            border-radius: 100px;
            padding: 7px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #0b0b0c;
            align-self: flex-start;
            transition: border-color 0.2s, color 0.2s;
        }

        .social-card:hover .social-card-btn {
            border-color: #c9a13b;
            color: #0b0b0c;
        }

        .social-card-arrow {
            color: #c9a13b;
            font-style: normal;
        }

        @media (max-width: 820px) {
            .socials-section { padding: 72px 24px 80px; }
            .socials-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
            .socials-heading { font-size: 36px; }
            .socials-grid { grid-template-columns: 1fr; gap: 16px; }
            .social-card-panel { height: 220px; }
            .social-card { min-height: unset; }
            .social-card-handle { font-size: 19px; }
        }

        /* ── LOCATIONS ── */
        .locations-section {
            background: #ffffff;
            padding: 100px 48px 120px;
            border-top: 1px solid #e6e3dd;
        }

        .locations-intro {
            max-width: 1180px;
            margin: 0 auto;
            padding-bottom: 70px;
        }

        .locations-eyebrow-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .locations-eyebrow-rule {
            display: block;
            width: 34px;
            height: 2px;
            background: #c9a13b;
            flex-shrink: 0;
        }

        .locations-eyebrow-label {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #8a6d1f;
        }

        .locations-headline {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(40px, 5.4vw, 84px);
            font-weight: 700;
            line-height: 0.93;
            text-transform: uppercase;
            color: #111111;
            letter-spacing: -0.02em;
            margin-bottom: 32px;
        }

        .locations-intro-para {
            max-width: 560px;
            font-family: 'Archivo', sans-serif;
            font-size: 16.5px;
            color: #5f5c57;
            line-height: 1.75;
        }

        .loc-band {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            padding: 56px 0;
            border-top: 1px solid #e6e3dd;
        }

        .loc-band--reverse .loc-photo-col { order: 2; }
        .loc-band--reverse .loc-content-col { order: 1; }

        .loc-photo-wrap {
            aspect-ratio: 5 / 4;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e6e3dd;
        }

        .loc-photo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .loc-photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #faf8f4 0%, #f0ede6 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .loc-pin-icon {
            display: flex;
            width: 52px;
            height: 52px;
            color: #c9a13b;
            opacity: 0.6;
        }

        .loc-pin-icon svg { width: 100%; height: 100%; }

        .loc-photo-label {
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #8a867f;
            text-align: center;
            padding: 0 28px;
            line-height: 1.5;
        }

        .loc-index-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .loc-index {
            font-family: 'Oswald', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #8a6d1f;
        }

        .loc-category {
            font-family: 'Archivo', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: #6b6862;
        }

        .loc-name {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(34px, 3.6vw, 52px);
            font-weight: 700;
            line-height: 0.98;
            color: #111111;
            letter-spacing: -0.01em;
            margin-bottom: 22px;
        }

        .loc-address {
            font-family: 'Archivo', sans-serif;
            font-style: normal;
            font-size: 16px;
            line-height: 1.65;
            color: #3a3833;
            margin-bottom: 26px;
        }

        .loc-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 30px;
        }

        .loc-chip {
            font-family: 'Archivo', sans-serif;
            font-size: 13.5px;
            color: #5f5c57;
            background: #faf8f4;
            border: 1px solid #e6e3dd;
            border-radius: 100px;
            padding: 7px 15px;
            line-height: 1;
            display: inline-block;
        }

        .loc-directions-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #111111;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: 100px;
            text-decoration: none;
            min-height: 44px;
            transition: background 0.2s;
        }

        .loc-directions-pill span { color: #c9a13b; transition: transform 0.2s; }
        .loc-directions-pill:hover { background: #c9a13b; color: #ffffff; }
        .loc-directions-pill:hover span { color: #ffffff; transform: translateX(4px); }

        @media (max-width: 820px) {
            .locations-section { padding: 72px 24px 80px; }
            .locations-intro { padding-bottom: 48px; }
            .loc-band {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 40px 0;
            }
            .loc-band--reverse .loc-photo-col { order: 0; }
            .loc-band--reverse .loc-content-col { order: 1; }
            .loc-name { font-size: 26px; }
        }
