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

:root {
    --western-brown: #3D2817;
    --western-dark: #1A0F08;
    --western-light: #8B6F47;
    --western-tan: #D4C4B0;
    --western-cream: #F5E6D3;
    --western-gold: #D4AF37;
    --western-gold-dark: #B8941F;
    --leather: #5C4033;
    --saddle: #8B4513;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f5f5f5;
}

html {
    scroll-behavior: smooth;
    /* Prevent stray horizontal scroll on mobile (which shifts the whole page
       to the left). 'clip' stops the scroll WITHOUT breaking the sticky navbar
       the way 'hidden' can. body already has overflow-x, but html can still be
       the horizontal scroller, so it needs this too. */
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
    border-bottom: 2px solid var(--western-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo-link {
    text-decoration: none;
    color: inherit;
}

.menu-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
    text-transform: uppercase;
}

.menu-btn:hover {
    color: var(--western-gold);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--western-brown);
    text-transform: uppercase;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    display: block;
    align-self: center;
}

.nav-center {
    flex: 1;
    text-align: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--western-gold);
}

.nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-icon:hover {
    color: var(--western-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--western-gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Shopping cart hidden site-wide for now. Cart logic is untouched — delete this
   rule to bring the cart icon back. */
.cart-icon {
    display: none !important;
}

/* Secure-checkout payment/credit-card images hidden for now. Delete this rule
   to bring the footer payment strip back. */
.footer-payment-strip {
    display: none !important;
}

/* Hero Section — image at natural size; title & CTAs overlaid on photo */
.hero {
    position: relative;
    display: block;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: relative;
    width: 100%;
    z-index: 0;
    background-color: var(--western-cream);
    text-align: center;
    line-height: 0;
    transform: translateY(-4in);
    /* Pull next section up so cream gap under shifted image disappears */
    margin-bottom: -4in;
}

.hero-background-img {
    position: relative;
    display: inline-block;
    vertical-align: top;
    /* One and a half inches wider than the content area (centered; aspect ratio preserved) */
    width: calc(100% + 1.5in);
    max-width: none;
    height: auto;
    z-index: 1;
    filter: brightness(1.08);
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 2;
    pointer-events: none;
}

/* Title + CTAs flush with navbar gold line, above the two figures in the photo */
.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    transform: none;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: clamp(10px, 1.5vw, 14px) clamp(16px, 4vw, 36px) clamp(10px, 2vw, 18px);
    background: none;
    pointer-events: none;
}

.hero-content .hero-brand,
.hero-content .pathway-selector,
.hero-content .pathway-button {
    pointer-events: auto;
}

/* Style Gallery tab on the hero (upper) image — mirrors the lower featured
   image's bottom-left overlay and lines up with it exactly. The lower overlay
   sits in a full-bleed box (100vw + 1.5in) and pads in by calc(40px + 0.75in),
   putting its text at viewport-left + 40px. This hero overlay sits in a 100vw
   box that is already flush to the viewport, so a plain 40px pad lands its text
   at the same viewport-left + 40px — keeping both tabs uniformly aligned. */
.hero-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    z-index: 4;
    text-align: left;
    line-height: normal;
    pointer-events: auto;
}

.hero-featured-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-brand {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 0 24px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(19px, 2.4vw, 24px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1.5px;
    margin: 8px 0 0;
    /* nudged down 2mm from the WESTERN GQ title */
    transform: translateY(calc(-1cm + 2mm));
    color: var(--white);
    text-align: center;
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(0, 0, 0, 0.4);
    display: block;
}

.pathway-selector {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
    margin-top: calc(clamp(8px, 2vw, 16px) - 2cm + 4in);
    flex-wrap: nowrap;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.pathway-button {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
    padding: 12px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    min-width: 0;
    flex: 1 1 0;
    max-width: 300px;
    text-align: center;
    line-height: 1.35;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathway-button.fashion-pathway {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
}

.pathway-button.barber-pathway {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.pathway-button.shop-now-pathway {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    flex: 0 1 auto;
    min-width: 180px;
    max-width: 260px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    box-shadow: none;
}

.pathway-button.closet-pathway {
    background: rgba(212, 175, 55, 0.12);
    color: var(--white);
    border: 2px solid var(--western-gold);
}

.pathway-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pathway-button.fashion-pathway:hover,
.pathway-button.fashion-pathway:focus-visible {
    background: var(--white);
    color: var(--dark);
    border-color: var(--western-gold);
    box-shadow:
        0 0 0 3px rgba(201, 169, 98, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    outline: none;
}

.pathway-button.barber-pathway:hover,
.pathway-button.barber-pathway:focus-visible,
.pathway-button.shop-now-pathway:hover,
.pathway-button.shop-now-pathway:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border-color: var(--western-gold);
    box-shadow:
        0 0 0 3px rgba(201, 169, 98, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    outline: none;
}

.pathway-button.closet-pathway:hover,
.pathway-button.closet-pathway:focus-visible {
    background: rgba(212, 175, 55, 0.22);
    border-color: var(--western-gold);
    outline: none;
}

/* Brand Essence */
.brand-essence {
    padding: 0 0 41px 0;
    margin-top: 0;
    background: var(--white);
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.essence-item {
    text-align: center;
}

.essence-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--western-brown);
    margin-bottom: 20px;
}

.essence-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.brand-essence-statement {
    max-width: 820px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* Featured Sections */
.featured-sections {
    padding: 0;
    margin-bottom: 38px;
    background: none;
    overflow-x: clip;
}

.featured-grid {
    /* Full-bleed so the featured image matches the full-width hero image above
       it (same edge-to-edge size, incl. the hero's 1.5in over-scan). Breaks out
       of .container's max-width/padding; html has overflow-x: clip so the extra
       width can't cause sideways scroll. */
    display: block;
    width: calc(100vw + 1.5in);
    max-width: none;
    margin-left: calc(50% - 50vw - 0.75in);
    gap: 0;
}

.featured-item {
    position: relative;
    height: auto;
    overflow: visible;
    border-radius: 10px;
}

.featured-image {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    transition: transform 0.5s;
}

.featured-item .featured-image.fashion-featured {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    background: none;
}

.featured-item.fashion-featured {
    overflow: visible;
}

.featured-item.fashion-featured:hover .featured-image {
    transform: none;
}

.featured-image.barber-featured {
    background-image: url('chicago%20barber.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-item:hover .featured-image {
    transform: scale(1.02);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    z-index: 1;
}

/* The home featured image is full-bleed (it over-scans 0.75in past each edge),
   which drags this overlay off the left edge and clips the "Rediscover" text
   and the Fashion Gallery button. Push the overlay content in by that over-scan
   so it sits at the normal page margin and is fully visible. */
.featured-item.fashion-featured .featured-content {
    padding-left: calc(40px + 0.75in);
    padding-right: calc(40px + 0.75in);
}

.featured-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.featured-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: var(--western-gold);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--western-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* How It Works page */
.how-it-works-page {
    position: relative;
    padding: 0 0 100px;
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 50%),
        linear-gradient(180deg, #0a0806 0%, #f7f1e8 28%, var(--white) 50%, #f3eee6 100%);
    min-height: 70vh;
}

.how-it-works-hero {
    position: relative;
    width: 100%;
    margin: 0;
    background: #0a0806;
    line-height: 0;
}

.how-it-works-hero-img {
    display: block;
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
}

.how-it-works-hero-copy {
    position: absolute;
    left: 50%;
    top: calc(58% + 1cm);
    transform: translate(-50%, 0);
    width: min(92%, 640px);
    z-index: 2;
    text-align: center;
    pointer-events: none;
    line-height: 1.45;
}

.how-it-works-hero-journey {
    margin: 0 0 10px;
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--western-gold);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.how-it-works-hero-cta-note {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-style: italic;
    color: #f5f0e8;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.how-it-works-signup-link {
    pointer-events: auto;
    color: var(--western-gold);
    font-style: italic;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.how-it-works-signup-link:hover,
.how-it-works-signup-link:focus-visible {
    color: #ffe7a0;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.85), 0 1px 8px rgba(0, 0, 0, 0.85);
    outline: none;
}

.how-it-works-signup-link:focus-visible {
    outline: 2px solid #ffe7a0;
    outline-offset: 3px;
}

.how-it-works-close {
    position: absolute;
    top: 18px;
    right: clamp(16px, 4vw, 40px);
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: rgba(10, 8, 6, 0.35);
    border-radius: 50%;
    color: #f5e6d3;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.how-it-works-close:hover,
.how-it-works-close:focus-visible {
    color: var(--western-gold);
    background: rgba(10, 8, 6, 0.65);
    outline: none;
}

.how-it-works-inner {
    max-width: 880px;
    padding-top: 56px;
}

.how-it-works-header {
    text-align: center;
    max-width: 720px;
    margin: 0.5cm auto 64px;
}

.how-it-works-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--western-gold-dark);
    margin: 0 0 18px;
    font-weight: 600;
}

.how-it-works-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4.2vw, 42px);
    color: var(--western-brown);
    letter-spacing: 2px;
    line-height: 1.25;
    margin-bottom: 22px;
}

.how-it-works-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-style: italic;
    color: var(--western-dark);
    margin-bottom: 18px;
    line-height: 1.4;
}

.how-it-works-lead {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.how-it-works-steps {
    list-style: none;
    margin: 0 auto 72px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-it-works-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: start;
    padding: 32px 0;
    border-top: 1px solid rgba(61, 40, 23, 0.14);
}

.how-it-works-step:last-child {
    border-bottom: 1px solid rgba(61, 40, 23, 0.14);
}

.how-it-works-step-num {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--western-gold);
    letter-spacing: 2px;
    line-height: 1.2;
    padding-top: 6px;
}

.how-it-works-step-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--western-brown);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.how-it-works-step-body p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    max-width: 58ch;
}

.how-it-works-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--western-brown);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 28px;
}

.how-it-works-services {
    margin-bottom: 64px;
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(61, 40, 23, 0.1);
}

.how-it-works-services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 32px;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
}

.how-it-works-services-list li {
    font-size: 15px;
    color: var(--western-dark);
    letter-spacing: 0.4px;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.how-it-works-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--western-gold);
}

.how-it-works-promise {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
}

.how-it-works-promise-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-style: italic;
    color: var(--western-dark);
    line-height: 1.7;
}

.how-it-works-brand-close {
    text-align: center;
    padding-top: 8px;
}

.how-it-works-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--western-brown);
    margin-bottom: 12px;
}

.how-it-works-brand-tagline {
    font-size: 15px;
    color: var(--gray);
    letter-spacing: 0.6px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.how-it-works-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.how-it-works-step-body .btn-secondary,
.how-it-works-cta-row .btn-secondary {
    background: var(--western-brown);
    color: var(--white);
    border-color: var(--western-brown);
}

.how-it-works-cta-row .btn-secondary:hover {
    background: var(--western-gold);
    border-color: var(--western-gold);
    color: var(--western-dark);
}

.how-it-works-cta-row .how-it-works-cta-secondary {
    background: transparent;
    color: var(--western-brown);
    border-color: var(--western-brown);
}

.how-it-works-cta-row .how-it-works-cta-secondary:hover {
    background: var(--western-brown);
    color: var(--white);
    border-color: var(--western-brown);
}

@media (max-width: 640px) {
    .how-it-works-page {
        padding: 0 0 64px;
    }

    .how-it-works-inner {
        padding-top: 36px;
    }

    .how-it-works-step {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 24px 0;
    }

    .how-it-works-services {
        padding: 28px 20px;
    }

    .how-it-works-services-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .how-it-works-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .how-it-works-cta-row .btn-secondary {
        text-align: center;
    }
}

/* About Us page */
.about-us-page {
    position: relative;
    padding: 0 0 100px;
    /* Light throughout so the text below the hero is always readable. The hero
       has its own dark (#1a120c) background, so the page no longer needs a dark
       top band — that band was bleeding under the content and making the intro
       text unreadable on smaller screens. */
    background:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(180deg, #f7f1e8 0%, var(--white) 38%, #f3eee6 100%);
    min-height: 70vh;
}

.about-us-hero {
    position: relative;
    width: 100%;
    margin: 0;
    background: #1a120c;
    line-height: 0;
    overflow: hidden;
}

.about-us-hero-img {
    display: block;
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
}

.about-us-hero-text {
    position: absolute;
    top: calc(clamp(18px, 4vw, 36px) + 3in + 1.5cm);
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    pointer-events: none;
    padding: 0 16px;
}

.about-us-hero-title {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: clamp(2px, 0.8vw, 8px);
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.9),
        0 0 28px rgba(0, 0, 0, 0.55);
    line-height: 1.2;
}

.about-us-hero-tagline {
    margin: 8px 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(0, 0, 0, 0.4);
}

.about-us-close {
    position: absolute;
    top: 18px;
    right: clamp(16px, 4vw, 40px);
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: rgba(26, 18, 12, 0.4);
    border-radius: 50%;
    color: #f5e6d3;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.about-us-close:hover,
.about-us-close:focus-visible {
    color: var(--western-gold);
    background: rgba(26, 18, 12, 0.7);
    outline: none;
}

.about-us-inner {
    max-width: 820px;
    padding-top: 48px;
}

.about-us-header {
    text-align: center;
    margin: 2mm auto 36px;
}

.about-us-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--western-gold-dark);
    margin-bottom: 0;
    font-weight: 600;
}

.about-us-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4.2vw, 42px);
    color: var(--western-brown);
    letter-spacing: 2px;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

.about-us-intro {
    margin-bottom: 56px;
}

.about-us-intro p {
    font-size: 17px;
    color: var(--western-brown);
    line-height: 1.85;
    margin: 0 0 20px;
}

.about-us-statement {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(20px, 2.4vw, 26px) !important;
    font-style: italic;
    color: var(--western-dark) !important;
    text-align: center;
    line-height: 1.55 !important;
    margin: 36px 0 0 !important;
}

.about-us-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--western-brown);
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 36px;
}

.about-us-services {
    margin-bottom: 56px;
}

.about-us-service {
    padding: 26px 0;
    border-top: 1px solid rgba(61, 40, 23, 0.14);
}

.about-us-service:last-child {
    border-bottom: 1px solid rgba(61, 40, 23, 0.14);
}

.about-us-service h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--western-brown);
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-weight: 600;
}

.about-us-service p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    max-width: 62ch;
}

.about-us-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.about-us-cta-row .btn-secondary {
    background: var(--western-brown);
    color: var(--white);
    border-color: var(--western-brown);
}

.about-us-cta-row .btn-secondary:hover {
    background: var(--western-gold);
    border-color: var(--western-gold);
    color: var(--western-dark);
}

.about-us-cta-row .about-us-cta-secondary {
    background: transparent;
    color: var(--western-brown);
    border-color: var(--western-brown);
}

.about-us-cta-row .about-us-cta-secondary:hover {
    background: var(--western-brown);
    color: var(--white);
    border-color: var(--western-brown);
}

@media (max-width: 640px) {
    .about-us-page {
        padding: 0 0 64px;
    }

    .about-us-inner {
        padding-top: 32px;
    }

    .about-us-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .about-us-cta-row .btn-secondary {
        text-align: center;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fashion-hero {
    background: linear-gradient(135deg, var(--western-brown) 0%, var(--saddle) 100%);
    /* Only a thin sliver of brown above the gallery — the rest of the brown
       negative space is removed. */
    height: 0.5cm;
    min-height: 0.5cm;
}

.barber-hero {
    background: linear-gradient(135deg, var(--western-brown) 0%, var(--saddle) 100%);
    height: 192px; /* 2 inches */
    min-height: 192px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.barber-hero .hero-text h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.barber-hero .hero-text p {
    font-size: 14px;
}

.hero-text p {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.fashion-hero-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.fashion-hero-closet-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fashion-hero-closet-label {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
}

.fashion-hero .fashion-gallery-hero-tab {
    display: inline-block;
    margin-top: 0;
    padding: 12px 32px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fashion-hero .fashion-hero-shop-now {
    display: inline-block;
    margin: calc(18px - 1in) 0 8px;
    background: var(--white);
    color: var(--western-brown);
    border-color: var(--white);
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.fashion-hero .fashion-gallery-hero-tab:hover,
.fashion-hero .fashion-gallery-hero-tab:focus-visible {
    background: var(--white);
    color: var(--western-brown);
    border-color: var(--white);
    outline: none;
}

.fashion-hero a.fashion-gallery-hero-tab.fashion-hero-shop-now:hover,
.fashion-hero a.fashion-gallery-hero-tab.fashion-hero-shop-now:focus-visible {
    background: var(--white);
    color: var(--western-brown);
    border-color: var(--western-gold);
    box-shadow:
        0 0 0 3px rgba(201, 169, 98, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    outline: none;
}

/* Fashion Gallery (fashion page); hidden until tab click ([hidden] on section) */
.fashion-gallery-section {
    position: relative;
    padding: 56px 0 64px;
    background: var(--western-cream);
    scroll-margin-top: 96px;
}

.fashion-gallery-section[hidden] {
    display: none !important;
}

.fashion-gallery-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(92, 64, 51, 0.25);
    border-radius: 50%;
    background: var(--white);
    color: var(--western-brown);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fashion-gallery-close:hover,
.fashion-gallery-close:focus-visible {
    background: var(--western-brown);
    color: var(--white);
    border-color: var(--western-brown);
    outline: none;
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .fashion-gallery-close {
        top: 20px;
        right: 24px;
    }
}

.fashion-gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--western-brown);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fashion-gallery-intro {
    text-align: center;
    color: var(--gray);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* Category tabs (Tuxedo / Business / Urban) under the gallery title */
.fashion-cat-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 34px;
}

.fashion-cat-tab {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(12px, 1.4vw, 15px);
    color: var(--western-brown);
    background: transparent;
    border: 1px solid rgba(139, 69, 19, 0.45);
    border-radius: 2px;
    padding: 11px 26px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fashion-cat-tab:hover,
.fashion-cat-tab:focus-visible {
    border-color: var(--western-gold);
    color: var(--western-gold-dark);
    outline: none;
}

.fashion-cat-tab.is-active {
    background: var(--western-gold);
    color: #ffffff;
    border-color: var(--western-gold);
}

.fashion-cat-empty {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--western-brown);
    padding: 70px 20px;
    margin: 0;
}

.fashion-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
    grid-auto-rows: 260px;
}

.fashion-gallery-item {
    margin: 0;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(61, 40, 23, 0.12);
    background: var(--white);
}

.fashion-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
    cursor: zoom-in;
}

.fashion-gallery-item:hover img {
    transform: scale(1.03);
}

/* Runway: crop only — same box size as all other tiles */
.fashion-gallery-item--runway img {
    object-position: center 22%;
}

/* Tall portraits / hats near top edge: crop from top so hats stay visible in tile */
.fashion-gallery-item--dual-portrait img,
.fashion-gallery-item--blue-dual-portrait img,
.fashion-gallery-item--boots-portrait img,
.fashion-gallery-item--hat-top img {
    object-position: center top;
}

/* Black & silver tuxedo portrait: anchor crop to top so the cowboy hat stays in the tile */
.fashion-gallery-item--black-tuxedo-portrait img {
    object-position: center top;
}

/* Wide triptych of boots on marble — keep focal area on the boots and reflection */
.fashion-gallery-item--black-boots-triptych img {
    object-position: center 52%;
}

.fashion-gallery-item--lavender-boots-triptych img {
    object-position: center 54%;
}

/* Blue patent boots triptych (blue & white look — side, front, back on marble) */
.fashion-gallery-item--blue-white-boots-triptych img {
    object-position: center 52%;
}

/* Orange & black boots multi-angle composite */
.fashion-gallery-item--orange-black-boots-composite img {
    object-position: center 50%;
}


/* Black jacket gallery: single mannequin thumbnail; opens multi-photo modal */
.fashion-gallery-black-jacket-trigger img {
    object-position: center top;
    cursor: pointer;
}

.fashion-gallery-orange-black-trigger img {
    cursor: pointer;
}

.fashion-gallery-purple-lavender-trigger img {
    cursor: pointer;
}

.fashion-gallery-blue-white-trigger img {
    cursor: pointer;
}

.fashion-gallery-white-purple-suit-trigger img {
    cursor: pointer;
}

.fashion-gallery-brown-gold-suit-trigger img {
    cursor: pointer;
}

.fashion-gallery-copper-burgundy-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-white-embroidered-suit-trigger img {
    cursor: pointer;
}

.fashion-gallery-purple-gold-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-teal-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-purple-brocade-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-cream-burgundy-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-cream-emerald-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-purple-velvet-regal-trigger img {
    cursor: pointer;
}

.fashion-gallery-purple-royal-cover-trigger img {
    cursor: pointer;
}

.fashion-gallery-black-royal-design-trigger img {
    cursor: pointer;
}

/* Western GQ runway / event portraits — keep hat and face in frame in grid tiles */
.fashion-gallery-item--gq-runway-portrait img {
    object-position: center 18%;
}


/* Black crystal jacket modal — large main image + hat-style thumbnail row (imageGalleryModal pattern) */
#fashionBlackJacketGalleryModal .fashion-black-jacket-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionBlackJacketGalleryModal .fashion-black-jacket-main-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(82vh, 860px);
    min-height: 320px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionBlackJacketGalleryModal .fashion-black-jacket-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionBlackJacketGalleryModal .fashion-black-jacket-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionBlackJacketGalleryModal .fashion-black-jacket-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionBlackJacketGalleryModal .fashion-black-jacket-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
    }
}

/* Orange & black suit modal — same large + thumbnail pattern as black jacket */
#fashionOrangeBlackGalleryModal .fashion-orange-black-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionOrangeBlackGalleryModal .fashion-orange-black-main-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(82vh, 860px);
    min-height: 320px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionOrangeBlackGalleryModal .fashion-orange-black-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionOrangeBlackGalleryModal .fashion-orange-black-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionOrangeBlackGalleryModal .fashion-orange-black-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionOrangeBlackGalleryModal .fashion-orange-black-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
    }
}

/* Purple & lavender look modal — runway + boots triptych */
#fashionPurpleLavenderGalleryModal .fashion-purple-lavender-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionPurpleLavenderGalleryModal .fashion-purple-lavender-main-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(82vh, 860px);
    min-height: 320px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionPurpleLavenderGalleryModal .fashion-purple-lavender-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionPurpleLavenderGalleryModal .fashion-purple-lavender-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionPurpleLavenderGalleryModal .fashion-purple-lavender-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionPurpleLavenderGalleryModal .fashion-purple-lavender-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
    }
}

/* White & purple fringe suit modal — two collages */
#fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-main-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(82vh, 860px);
    min-height: 320px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionWhitePurpleSuitGalleryModal .fashion-white-purple-suit-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
    }
}

/* Blue & white look modal — runway + boots triptych */
#fashionBlueWhiteGalleryModal .fashion-blue-white-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionBlueWhiteGalleryModal .fashion-blue-white-main-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(82vh, 860px);
    min-height: 320px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionBlueWhiteGalleryModal .fashion-blue-white-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionBlueWhiteGalleryModal .fashion-blue-white-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionBlueWhiteGalleryModal .fashion-blue-white-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionBlueWhiteGalleryModal .fashion-blue-white-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
    }
}

/* Brown & gold / copper & burgundy / white embroidered editorial look modals */
#fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-main-media,
#fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-main-media,
#fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionTealRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-main-media,
#fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-main-media,
#fashionNavyGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionBurgundyGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionBlackGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionEmeraldGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionPurpleVelvetGoldRegalNewGalleryModal .fashion-brown-gold-suit-main-media,
#fashionCreamGoldRegalGalleryModal .fashion-brown-gold-suit-main-media,
#fashionGoldBootsGalleryModal .fashion-brown-gold-suit-main-media {
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
}

#fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-main-img,
#fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-main-img,
#fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionTealRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-main-img,
#fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-main-img,
#fashionNavyGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionBurgundyGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionBlackGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionEmeraldGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionPurpleVelvetGoldRegalNewGalleryModal .fashion-brown-gold-suit-main-img,
#fashionCreamGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
#fashionGoldBootsGalleryModal .fashion-brown-gold-suit-main-img {
    display: block;
    width: 100%;
    max-width: min(100%, 520px);
    height: auto;
    max-height: min(72vh, 720px);
    min-height: 280px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

#fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-thumb,
#fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-thumb,
#fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionTealRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-thumb,
#fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-thumb,
#fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-thumb {
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

#fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionTealRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-thumb img,
#fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-thumb img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 6px;
}

#fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionTealRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-thumbnails,
#fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-thumbnails {
    margin-top: 18px;
}

@media (max-width: 968px) {
    #fashionBrownGoldSuitGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionCopperBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionWhiteEmbroideredSuitGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionPurpleGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionTealRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionPurpleBrocadeRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionCreamBurgundyRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionCreamEmeraldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionPurpleVelvetRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionPurpleRoyalCoverGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionBlackRoyalDesignGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionNavyGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionBurgundyGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionBlackGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionEmeraldGoldRegalGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionPurpleVelvetGoldRegalNewGalleryModal .fashion-brown-gold-suit-main-img,
    #fashionCreamGoldRegalGalleryModal .fashion-brown-gold-suit-main-img {
        max-height: min(62vh, 560px);
        min-height: 240px;
        max-width: min(100%, 420px);
    }
}

/* Runway tile opens royal blue look modal (thumbnail gallery like shop) */
.fashion-gallery-blue-suit-trigger img {
    cursor: pointer;
}

/* Fashion page — royal blue look modal (mirrors image gallery / hat picker layout) */
.fashion-blue-look-modal-content {
    max-width: 1400px;
}

.fashion-blue-look-modal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* Full photo visible (letterboxed), not cropped — overrides .gallery-main-image cover */
#fashionBlueLookGalleryModal .gallery-main-image.fashion-blue-look-main-image {
    width: 100%;
    height: min(75vh, 720px);
    min-height: 420px;
    background-size: contain !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1816;
    border-radius: 10px;
}

/* Fashion Gallery — full-size lightbox (opened with display: flex via JS) */
.fashion-gallery-lightbox-modal {
    align-items: center;
    justify-content: center;
    padding: 48px 16px 24px;
    z-index: 2100;
}

.fashion-gallery-lightbox-close {
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 2110;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fashion-gallery-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.75);
}

.fashion-gallery-lightbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 96vw;
    max-height: 90vh;
}

.fashion-gallery-lightbox-inner img {
    max-width: min(96vw, 1600px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .fashion-hero-tabs {
        margin-top: 18px;
        gap: 10px;
    }

    .fashion-hero .fashion-gallery-hero-tab {
        padding: 10px 22px;
        font-size: 11px;
        letter-spacing: 0.22em;
    }

    .fashion-gallery-section {
        padding: 40px 0 48px;
    }

    .fashion-gallery-title {
        font-size: 28px;
    }

    .fashion-gallery-grid {
        grid-auto-rows: 220px;
    }

    .fashion-gallery-item {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }

    .fashion-gallery-item--runway img {
        object-position: center 25%;
    }

    .fashion-blue-look-modal-grid {
        grid-template-columns: 1fr;
    }

    #fashionBlueLookGalleryModal .gallery-main-image.fashion-blue-look-main-image {
        height: min(58vh, 520px) !important;
        min-height: 280px;
    }

}

/* Consultation CTA */
.consultation-cta {
    padding: 8px 0;
    background: var(--western-cream);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: var(--western-brown);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Consultation booking modal */
.consultation-modal-content {
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 40px 40px;
    border-radius: 12px;
    border-top: 4px solid var(--western-gold);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.consultation-modal-content .close {
    top: 16px;
    right: 18px;
    font-size: 28px;
    line-height: 1;
    padding: 4px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--western-brown);
    opacity: 0.75;
    transition: opacity 0.2s;
}

.consultation-modal-content .close:hover {
    opacity: 1;
}

.consultation-form-header {
    margin-bottom: 26px;
    padding-right: 36px;
}

.consultation-form-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--western-gold);
    font-weight: 600;
    margin: 0 0 10px;
}

.consultation-form-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--western-brown);
    margin: 0 0 12px;
    line-height: 1.25;
    font-weight: 600;
}

.consultation-form-lead {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.consultation-form .form-group {
    margin-bottom: 18px;
}

.consultation-form .form-group label {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 13px;
    font-weight: 600;
    color: var(--western-brown);
}

.consultation-form .label-required {
    color: var(--western-gold);
    font-weight: 700;
}

.consultation-form .label-optional {
    font-weight: 400;
    color: var(--gray);
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.consultation-fieldset {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 18px 18px 6px;
    margin: 0 0 20px;
    background: var(--western-cream);
}

.consultation-fieldset:last-of-type {
    margin-bottom: 0;
}

.consultation-fieldset-legend {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--western-brown);
    padding: 0 8px;
    margin-left: -4px;
}

.consultation-gender-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 320px;
}

.consultation-form-actions {
    margin: 22px 0 18px;
}

.consultation-more-details-wrap {
    margin: 0 0 20px;
}

.consultation-optional-arrow {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid var(--western-gold);
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-optional-arrow:hover,
.consultation-optional-arrow:focus-visible {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--western-brown);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.consultation-optional-arrow.is-open {
    margin-bottom: 12px;
}

.consultation-optional-arrow.is-open .consultation-optional-arrow-icon {
    transform: rotate(180deg);
}

.consultation-optional-arrow-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--western-brown);
    border-radius: 8px;
    background: var(--white);
    color: var(--western-brown);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease;
}

.consultation-optional-arrow-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.consultation-optional-arrow-text strong {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--western-brown);
}

.consultation-optional-arrow-text span {
    font-size: 13px;
    line-height: 1.45;
    color: var(--gray);
}

.consultation-optional-details {
    padding-top: 4px;
}

.consultation-optional-details[hidden] {
    display: none !important;
}

.consultation-form .field-hint {
    font-size: 12px;
    color: var(--gray);
    margin: -8px 0 16px;
    line-height: 1.5;
}

.consultation-form-actions .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    letter-spacing: 0.08em;
}

.consultation-form-required-error {
    color: #c33 !important;
    background: #fdecea;
    border: 1px solid #f5c2c0;
    padding: 12px 14px;
    margin: 0 0 14px !important;
    font-size: 14px;
    line-height: 1.45;
}

.consultation-form .is-required-missing,
.consultation-form input.is-required-missing,
.consultation-form select.is-required-missing,
.consultation-form textarea.is-required-missing {
    border-color: #c33 !important;
}

.consultation-form .consultation-detail-grid.is-required-missing,
.consultation-form .consultation-upload-section.is-required-missing,
.consultation-form .look-payment-chooser.is-required-missing {
    outline: 2px solid rgba(204, 51, 51, 0.35);
    outline-offset: 4px;
}

.consultation-form-footer-note {
    font-size: 12px;
    color: var(--gray);
    margin: 14px 0 0;
    line-height: 1.55;
    text-align: center;
}

.consultation-group-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--western-brown);
    text-transform: none;
    letter-spacing: 0.02em;
}

.consultation-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
}

.consultation-topic-grid {
    margin-bottom: 4px;
}

.consultation-budget-grid {
    margin-bottom: 4px;
}

.consultation-size-grid .form-group {
    margin-bottom: 0;
}

.consultation-form .date-time-selection {
    gap: 8px 12px;
    margin-bottom: 0;
}

.consultation-form .date-time-selection .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.consultation-form .date-time-selection .selected-date-display {
    margin-top: 8px;
}

.consultation-logged-in-note {
    margin: 0 0 18px 0;
    padding: 12px 14px;
    background: var(--western-cream);
    border: 1px solid var(--western-gold);
    border-radius: 6px;
    font-size: 14px;
    color: var(--western-brown);
    line-height: 1.5;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.consultation-form .form-row .form-group {
    margin-bottom: 18px;
}

.consultation-form .form-group label.consultation-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    box-sizing: border-box;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 400;
    cursor: pointer;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.consultation-form .form-group label.consultation-check:hover {
    border-color: var(--western-gold);
}

.consultation-form .form-group label.consultation-check input[type="checkbox"],
.consultation-form .form-group label.consultation-check input[type="radio"] {
    width: 18px !important;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    accent-color: var(--western-gold);
}

.consultation-form .form-group label.consultation-check span {
    flex: 1;
    line-height: 1.35;
}

.consultation-focus-error {
    color: #c33;
    margin-top: 8px;
}

.consultation-photos-intro {
    margin-bottom: 16px !important;
}

.consultation-photos-error {
    color: #c33;
    margin: 0 0 14px !important;
}

.consultation-upload-section {
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--light-gray);
}

.consultation-upload-section:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
}

.consultation-upload-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--western-brown);
    text-transform: none;
    letter-spacing: 0.02em;
}

.consultation-upload-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    box-sizing: border-box;
}

.consultation-upload-input:focus {
    outline: none;
    border-color: var(--western-gold);
}

.consultation-upload-count {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--gray);
}

.consultation-upload-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.consultation-upload-preview {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    background: var(--white);
}

.consultation-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultation-upload-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(28, 22, 18, 0.78);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-upload-preview-remove:hover,
.consultation-upload-preview-remove:focus {
    background: rgba(28, 22, 18, 0.95);
    outline: none;
}

.consultation-upload-section.is-invalid .consultation-upload-input {
    border-color: #c33;
}

/* Western GQ Closet intro page (before consultation form) */
.western-gq-closet-page.modal {
    display: none;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: rgba(28, 22, 18, 0.72);
    z-index: 10050;
}

.western-gq-closet-page.is-open {
    display: flex !important;
}

.western-gq-closet-shell {
    position: relative;
    width: min(920px, 100%);
    max-height: 100vh;
    margin: auto;
    overflow: auto;
    background: #f7f1e8;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.western-gq-closet-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(28, 22, 18, 0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.western-gq-closet-close:hover,
.western-gq-closet-close:focus-visible {
    background: rgba(28, 22, 18, 0.85);
    outline: none;
}

.western-gq-closet-hero {
    position: relative;
    width: 100%;
    overflow: visible;
    background: #2c211c;
}

.western-gq-closet-cover {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
}

.western-gq-closet-hero-text {
    position: absolute;
    /* Raised 1in (was + 2in) — the brand + tagline were sitting too low. */
    top: calc(clamp(14px, 3vw, 28px) + 1in);
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    pointer-events: none;
    padding: 0 16px;
}

.western-gq-closet-hero-brand {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 5.5vw, 52px);
    font-weight: 900;
    letter-spacing: clamp(4px, 1vw, 10px);
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.85),
        0 0 28px rgba(0, 0, 0, 0.45);
}

.western-gq-closet-hero-tagline {
    margin: calc(8px - 0.5cm) 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(0, 0, 0, 0.4);
}

.western-gq-closet-copy {
    padding: 28px 32px 36px;
    color: #1c1612;
}

.western-gq-closet-eyebrow {
    margin: 0 0 8px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #8a6a3d;
}

.western-gq-closet-title {
    margin: 0 0 16px;
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5c4033;
}

.western-gq-closet-body {
    max-width: 62ch;
}

.western-gq-closet-body p {
    margin: 0 0 14px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    line-height: 1.55;
    color: #3a2f28;
}

.western-gq-closet-body p:last-child {
    margin-bottom: 0;
}

.western-gq-closet-actions {
    margin-top: 26px;
}

.western-gq-closet-cta {
    appearance: none;
    border: none;
    padding: 14px 28px;
    background: #5c4033;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.western-gq-closet-cta:hover,
.western-gq-closet-cta:focus-visible {
    background: #3f2b22;
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .western-gq-closet-copy {
        padding: 22px 18px 28px;
    }

    .western-gq-closet-body p {
        font-size: 16px;
    }

    .western-gq-closet-cover {
        height: auto;
        max-height: none;
    }
}

.consultation-look-intro {
    margin-bottom: 14px !important;
}

.consultation-look-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.consultation-look-tab {
    appearance: none;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--western-brown);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1.35;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.consultation-look-tab:hover,
.consultation-look-tab:focus-visible {
    border-color: var(--western-gold);
    background: #fff8ec;
    color: var(--western-brown);
    box-shadow:
        0 0 0 3px rgba(201, 169, 98, 0.35),
        0 6px 16px rgba(28, 22, 18, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.consultation-look-tab.is-active {
    border-color: var(--western-gold);
    background: var(--western-cream);
}

.consultation-look-tab.is-active:hover,
.consultation-look-tab.is-active:focus-visible {
    border-color: var(--western-gold);
    background: #f3e6d0;
    box-shadow:
        0 0 0 3px rgba(201, 169, 98, 0.45),
        0 6px 16px rgba(28, 22, 18, 0.14);
}

.consultation-look-panel-text {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.55;
    margin: 0 0 10px;
}

.look-payment-chooser {
    margin: 14px 0 8px;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
}

.look-payment-radios {
    margin-top: 10px;
}

.look-pay-selected {
    margin-top: 10px !important;
    color: var(--western-brown);
    font-weight: 600;
}

.consultation-looks-result-content {
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
}

.consultation-look-card {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 0 0 12px;
    background: var(--western-cream);
}

.consultation-look-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin: 0 0 6px;
    color: var(--western-brown);
}

.consultation-look-card .look-meta {
    font-size: 12px;
    color: var(--gray);
    margin: 0 0 8px;
}

.consultation-look-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 540px) {
    .consultation-look-tabs {
        grid-template-columns: 1fr;
    }

    .consultation-detail-grid,
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }

    .consultation-modal-content {
        padding: 28px 20px 32px;
        margin: 8% auto;
        width: 94%;
    }

    .consultation-form-header h2 {
        font-size: 22px;
    }
}

/* Categories */
.categories {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid var(--western-brown);
    color: var(--western-brown);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.category-tab:hover,
.category-tab.active {
    background: var(--western-brown);
    color: var(--white);
}

/* Shop Now — items for sale (fashion page); hidden until tab click */
.shop-now-section {
    position: relative;
    padding: 56px 0 80px;
    background: var(--white);
    scroll-margin-top: 96px;
}

.shop-now-section[hidden] {
    display: none !important;
}

.shop-now-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--western-brown);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-now-intro {
    text-align: center;
    color: var(--gray);
    font-size: 17px;
    margin: 0 auto 36px;
    max-width: 640px;
    line-height: 1.5;
}

.shop-now-section .category-tabs {
    margin-bottom: 48px;
}

.shop-now-section .products-grid {
    margin-top: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-card--premier {
    box-shadow: 0 6px 22px rgba(201, 169, 98, 0.28);
    outline: 1px solid rgba(201, 169, 98, 0.55);
}

.product-premier-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--western-brown);
    background: var(--western-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--western-brown);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--western-gold);
    margin-bottom: 20px;
}

.product-price-with-pts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price-with-pts .product-price-pts {
    font-size: 20px;
    font-weight: 600;
    color: var(--western-brown);
    white-space: nowrap;
}

.fashion-price-row-modal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 36px;
    font-weight: 700;
    color: var(--western-gold);
    margin-bottom: 30px;
}

.fashion-price-row-modal .fashion-price-pts {
    font-size: 22px;
    font-weight: 600;
    color: var(--western-brown);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.product-price.fashion-price-custom-line {
    font-size: 26px;
    font-weight: 700;
    color: var(--western-gold);
    line-height: 1.35;
}

.fashion-price-row-modal.fashion-price-custom-line {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 32px;
    font-weight: 700;
    color: var(--western-gold);
    line-height: 1.3;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--western-brown);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: var(--western-gold);
}

/* Locations */
.locations {
    padding: 0 0 4px 0; /* Reduced bottom padding by 1 inch (96px) from 100px */
    background: var(--white);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    text-align: center;
    color: var(--western-brown);
    margin-bottom: 0; /* Reduced from 60px by 1 inch (96px) */
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.location-image.location-1 {
    background-image: url('Big%20Earl%20getting%20cut.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.location-image.location-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.location-image.location-1::after {
    content: 'Click to view gallery';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    white-space: nowrap;
    padding: 12px 24px;
    background: transparent;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.location-image.location-1:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.location-image.location-1:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.location-image.location-1:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.location-image.location-2 {
    background-image: url('Astute%20Cigar%20Pic.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Barber pole effect for location-2 */
.location-image.location-2 .barber-pole-left,
.location-image.location-2 .barber-pole-right {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    background-image: repeating-linear-gradient(
        90deg,
        #ff0000 0px,
        #ff0000 20px,
        #ffffff 20px,
        #ffffff 40px,
        #0000ff 40px,
        #0000ff 60px
    );
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.location-image.location-2 .barber-pole-left {
    left: 0;
}

.location-image.location-2 .barber-pole-right {
    right: 0;
}

/* Hover overlay for location-2 */
.location-image.location-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 2;
}

.location-image.location-2:hover::before {
    background-color: rgba(0, 0, 0, 0.15);
}

.location-image.location-2::after {
    content: 'Click to view gallery';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    white-space: nowrap;
    padding: 12px 24px;
    background: transparent;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.location-image.location-2:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.location-image.location-2:hover .barber-pole-left,
.location-image.location-2:hover .barber-pole-right {
    opacity: 0.1;
}

.location-image.location-2:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--western-brown);
    margin-bottom: 15px;
}

.location-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.select-location {
    display: inline-block;
    background: var(--western-gold);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.select-location:hover {
    background: var(--western-gold-dark);
}

.location-address-link {
    display: block;
    margin-top: 15px;
    color: var(--western-gold);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.location-address-link:hover {
    color: var(--western-gold-dark);
    text-decoration: underline;
}

/* Booking */
.booking {
    padding: 20px 0 100px 0;
    background: var(--light-gray);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--western-gold);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--western-brown);
    color: var(--white);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    text-align: center;
}

.step.active .step-label {
    color: var(--western-brown);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--western-brown);
    margin-bottom: 30px;
}

.service-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-header-container h3 {
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-option {
    position: relative;
}

.location-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.location-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.location-option:hover label {
    border-color: var(--western-gold);
    background: var(--western-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-option input[type="radio"]:checked + label {
    border-color: var(--western-gold);
    background: var(--western-cream);
}

.location-option-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--western-brown);
    margin-bottom: 5px;
    white-space: nowrap;
}

.location-option-content p {
    font-size: 14px;
    color: var(--gray);
}

.work-schedule-header {
    margin-bottom: 30px;
    padding: 15px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border: 2px solid var(--western-gold);
    text-align: center;
}

.work-schedule-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--western-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.schedule-list-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-list-header p {
    font-size: 14px;
    color: var(--dark);
    text-align: center;
    line-height: 1.5;
}

.schedule-list-header p strong {
    color: var(--western-brown);
    font-weight: 700;
    font-size: 15px;
}

.service-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .service-options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-option label {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 0;
    padding: 16px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 56px;
}

.service-option input[type="radio"]:checked + label {
    border-color: var(--western-gold);
    background: var(--western-cream);
}

.service-name {
    font-weight: 600;
    color: var(--western-brown);
    font-size: 14px;
    line-height: 1.35;
    min-width: 0;
}

@media (min-width: 480px) {
    .service-name {
        font-size: 15px;
    }
}

/* Price + pts always one unbroken line */
.service-price-group {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-price-group .service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--western-gold);
}

.service-price-group .service-pts-sep {
    color: var(--western-light);
    font-weight: 600;
    font-size: 14px;
    user-select: none;
    margin: 0 6px;
    flex-shrink: 0;
}

.service-price-group .service-points {
    font-size: 14px;
    font-weight: 700;
    color: var(--western-brown);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .service-price-group .service-price {
        font-size: 17px;
    }
    .service-price-group .service-points {
        font-size: 15px;
    }
    .service-price-group .service-pts-sep {
        font-size: 15px;
    }
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--western-gold);
}

.date-time-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--western-brown);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--western-gold);
}

/* Disabled time options - grayed out and not clickable */
.form-group select option:disabled {
    color: #999 !important;
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.form-group select option[disabled]:hover {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
}

/* Payment Form Styles */
.payment-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.payment-section:last-of-type {
    border-bottom: none;
}

.payment-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--western-brown);
    margin-bottom: 20px;
}

.payment-section label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

#paymentOrderSummary {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

#paymentOrderSummary .order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#paymentOrderSummary .order-item:last-child {
    border-bottom: none;
}

.payment-total {
    text-align: right;
    font-size: 18px;
    padding-top: 15px;
    border-top: 2px solid var(--western-gold);
}

.payment-total p {
    margin: 0;
    color: var(--western-brown);
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.payment-actions .btn-primary,
.payment-actions .btn-secondary {
    flex: 1;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* Hat Size Buttons */
.hat-size-btn:hover {
    border-color: var(--western-brown) !important;
    background: var(--western-cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hat-size-btn.active {
    border-color: var(--western-gold) !important;
    background: var(--western-cream) !important;
    color: var(--western-brown) !important;
    font-weight: 700 !important;
}

/* Selected Location Display */
.selected-location-display {
    text-align: center;
    margin: 0;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.1) 0%, rgba(101, 67, 33, 0.1) 100%);
    border: 1px solid var(--western-brown);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Selected Date Display */
.selected-date-display {
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--western-brown);
    text-align: center;
    background: var(--western-cream);
    border-radius: 5px;
    border: 1px solid var(--western-gold);
}

.selected-location-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.selected-location-name {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--western-brown);
}

/* Previous Button Styling */
#prevBtn.btn-secondary {
    background: transparent;
    color: #bbbbbb;
    border: 2px solid var(--light-gray);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

#prevBtn.btn-secondary:hover {
    background: transparent;
    color: var(--western-gold);
    border-color: var(--western-gold);
}

/* Footer */
.footer {
    background: var(--western-dark);
    color: var(--white);
    padding: 19px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 50px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--western-gold);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--western-gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Payment methods strip (footer + checkout) */
.footer-payment-strip {
    text-align: center;
    padding: 18px 16px 22px;
    background: var(--western-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-payment-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-payment-logos {
    max-width: min(560px, 94vw);
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    opacity: 0.95;
}

.payment-method-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.payment-methods-legend {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

/* Clickable checkout payment logos */
.payment-logo-click-wrap {
    margin-bottom: 6px;
}

.payment-logo-click-hint {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.payment-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 10px;
}

.payment-logo-tile {
    appearance: none;
    -webkit-appearance: none;
    flex: 1 1 auto;
    min-width: 72px;
    max-width: 104px;
    height: 44px;
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    padding: 0 6px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 9px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.payment-logo-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 40, 23, 0.15);
}

.payment-logo-tile:focus {
    outline: 2px solid var(--western-gold);
    outline-offset: 2px;
}

.payment-logo-tile--active {
    border-color: var(--western-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tile-amex { background: #006FCF; color: #fff; }
.tile-amex small { display: block; font-size: 8px; margin-top: 1px; }

.tile-discover { background: #fff; color: #333; border: 1px solid #ddd; font-size: 7px; letter-spacing: 0.3px; }

.tile-mc { background: #fff; color: transparent; position: relative; overflow: hidden; border: 1px solid #eee; }
.tile-mc .mc-c1 { position: absolute; left: 18%; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: #EB001B; transform: translateY(-50%); }
.tile-mc .mc-c2 { position: absolute; right: 18%; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: #F79E1B; transform: translateY(-50%); }

.tile-paypal { background: #fff; color: #003087; border: 1px solid #eee; font-size: 11px; font-style: italic; font-weight: 800; }

.tile-shoppay { background: #5A31F4; color: #fff; font-size: 12px; font-weight: 600; }

.tile-visa { background: #fff; color: #1A1F71; border: 1px solid #eee; font-size: 15px; font-style: italic; letter-spacing: 1px; }

.tile-venmo { background: #008CFF; color: #fff; font-size: 12px; }

.tile-cashapp { background: #00D632; color: #fff; font-size: 8px; }

.tile-zelle { background: #6D1ED4; color: #fff; font-size: 13px; }

.tile-affirm { background: #494AF4; color: #fff; font-size: 11px; font-weight: 600; }

.tile-chime { background: #6BCF37; color: #1a1a1a; font-size: 12px; font-weight: 800; }

.payment-methods-strip {
    margin: 0 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.payment-methods-strip--secondary {
    margin-top: 4px;
    margin-bottom: 14px;
}

.footer-payment-strip .footer-payment-logos--secondary {
    max-width: min(500px, 96vw);
    margin-top: 10px;
    opacity: 0.95;
}

.payment-methods-img {
    display: block;
    max-width: 100%;
    height: auto;
    min-height: 36px;
}

/* Checkout: card logos without black surround (SVG) */
.payment-methods-img--cards-checkout {
    margin: 0 auto;
}

.payment-option-radios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 14px;
    border: 2px solid #e8e4dc;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
    font-weight: 500;
}

.payment-option-row:hover {
    border-color: var(--western-gold);
    background: rgba(212, 175, 55, 0.06);
}

.payment-option-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--western-brown);
}

.payment-option-row:has(input:checked) {
    border-color: var(--western-brown);
    background: rgba(61, 40, 23, 0.04);
}

.alternate-payment-message {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    border-left: 4px solid var(--western-gold);
}

.payment-secure-note {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--dark);
}

.manual-payment-instructions {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--western-gold);
    border-radius: 8px;
    background: var(--western-cream);
}

.manual-payment-instructions h4 {
    margin: 0 0 10px;
    font-family: 'Cinzel', serif;
    color: var(--western-brown);
}

.manual-payment-instructions ol {
    margin: 0 0 12px;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.55;
}

/* Contact Dropdown */
.contact-dropdown-container {
    position: relative;
}

.contact-toggle {
    cursor: pointer;
}

.contact-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
    background: var(--white);
    border: 2px solid var(--western-gold);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: min(300px, calc(100vw - 32px));
    max-width: calc(100vw - 24px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.contact-dropdown.show {
    display: block;
}

.contact-dropdown-content {
    padding: 20px;
    color: var(--dark);
}

.contact-dropdown-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    opacity: 1;
}

.contact-dropdown-content p:last-child {
    margin-bottom: 0;
}

.contact-dropdown-content strong {
    color: var(--western-brown);
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.contact-dropdown-content a {
    color: var(--western-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-dropdown-content a:hover {
    color: var(--western-gold-dark);
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Account Dropdown */
.account-dropdown-container {
    position: relative;
    display: inline-block;
}

.account-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.account-dropdown-btn:hover {
    color: var(--western-gold);
}

.account-name-display {
    font-size: 14px;
    font-weight: 600;
    color: var(--western-brown);
    font-family: 'Inter', sans-serif;
    text-transform: capitalize;
}

.account-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--white);
    border: 2px solid var(--western-gold);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.account-dropdown.show {
    display: block;
}

.account-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--western-brown);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid var(--light-gray);
}

.account-dropdown-item:last-child {
    border-bottom: none;
}

.account-dropdown-item:hover {
    background-color: var(--western-cream);
    color: var(--western-gold);
}

/* Location Dropdown */
.location-dropdown-container {
    position: relative;
}

.location-toggle {
    cursor: pointer;
}

.location-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
    background: var(--white);
    border: 2px solid var(--western-gold);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: min(320px, calc(100vw - 32px));
    max-width: calc(100vw - 24px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.location-dropdown.show {
    display: block;
}

.location-dropdown-content {
    padding: 20px;
    color: var(--dark);
}

.location-dropdown-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    opacity: 1;
}

.location-dropdown-content p:last-child {
    margin-bottom: 0;
}

.location-dropdown-content strong {
    color: var(--western-brown);
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.location-dropdown-content a {
    color: var(--western-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.location-dropdown-content a:hover {
    color: var(--western-gold-dark);
    text-decoration: underline;
}

/* Modal */
/* Appointment Confirmation Modal */
.appointment-confirm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.appointment-confirm-content {
    background-color: var(--white);
    /* Sit near the top and cap the height so the box scrolls internally. Without
       this the fixed modal did not scroll, so on shorter screens the Confirm
       button fell below the bottom edge and could not be reached ("no confirm"). */
    margin: 4vh auto;
    padding: 40px;
    border: 2px solid var(--western-gold);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.consultation-confirm-content {
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    text-align: left;
}

.consultation-confirm-content h2 {
    text-align: center;
}

.member-credentials-notice {
    margin: 0 0 22px;
    padding: 18px 18px 16px;
    background: var(--western-cream, #f7f1e8);
    border: 1px solid rgba(201, 169, 98, 0.55);
    border-radius: 10px;
}

.member-credentials-notice-title {
    margin: 0 0 8px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--western-brown);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.member-credentials-notice-lead {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray);
    text-align: center;
}

.member-credentials-list {
    margin: 0;
    display: grid;
    gap: 10px;
}

.member-credentials-list > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    align-items: baseline;
}

.member-credentials-list dt {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--western-brown);
}

.member-credentials-list dd {
    margin: 0;
    font-size: 15px;
    color: var(--dark);
    word-break: break-word;
}

.member-credentials-id-row dd,
.member-credentials-id {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--western-brown);
}

.member-credentials-access-hint,
.member-credentials-confirm-hint {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--gray);
    text-align: center;
}

.consultation-request-summary {
    margin-bottom: 8px;
    padding-top: 4px;
}

.consultation-request-summary-title {
    margin: 0 0 12px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--western-brown);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.consultation-request-summary p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark);
}

.appointment-confirm-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--western-brown);
    margin-bottom: 20px;
    font-size: 28px;
}

#appointmentConfirmDetails {
    text-align: left;
    margin: 20px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--western-brown);
}

#appointmentConfirmDetails p {
    margin: 10px 0;
}

.appointment-confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-back, .btn-ok {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back {
    background: var(--western-brown);
    color: var(--white);
}

.btn-back:hover {
    background: var(--western-dark);
}

.btn-ok {
    background: var(--western-gold);
    color: var(--white);
}

.btn-ok:hover {
    background: var(--western-gold-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.payment-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal-content {
    max-width: 1400px;
    width: 95%;
}

.shop-product-main-stage {
    position: relative;
    width: 100%;
    min-height: min(78vh, 820px);
    height: min(78vh, 820px);
    background: #141210;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.shop-product-main-stage:active {
    cursor: grabbing;
}

.shop-product-main-img,
.shop-product-main-stage .gallery-video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(78vh, 820px);
    object-fit: contain;
    object-position: center center;
    background: #141210;
    border-radius: 10px;
    pointer-events: auto;
}

.shop-product-main-stage .gallery-video {
    pointer-events: auto;
}

.shop-product-slide-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    padding: 6px 12px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    pointer-events: none;
}

.shop-product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-product-gallery .gallery-nav {
    z-index: 12;
}

@media (max-width: 968px) {
    .shop-product-main-stage {
        min-height: min(62vh, 560px);
        height: min(62vh, 560px);
    }

    .shop-product-main-img,
    .shop-product-main-stage .gallery-video {
        max-height: min(62vh, 560px);
    }
}

.image-gallery-modal-content {
    max-width: 1400px;
    padding: 40px;
    width: 95%;
}

.image-gallery-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    color: var(--western-brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-thumb:hover {
    border-color: var(--western-gold);
    transform: scale(1.1);
}

.gallery-thumb.active {
    border-color: var(--western-brown);
    box-shadow: 0 0 0 2px var(--western-gold);
}

.gallery-thumb-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-product-info {
    padding: 20px 0;
}

@media (max-width: 968px) {
    .image-gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-main-image {
        height: 400px !important;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--western-brown);
}

/* Gallery photos: keep the exit (X) pinned to the top-right of the screen and
   clearly visible over any photo, so EVERY picture in a look's gallery has a
   visible way to close it (the old absolute X scrolled out of view on lower
   photos). */
.image-gallery-modal-content .close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100000;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.image-gallery-modal-content .close:hover {
    background: rgba(0, 0, 0, 0.85);
    color: var(--western-gold);
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    .nav-container,
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-right {
        gap: 14px;
    }

    .nav-logo-img,
    .nav-right img.nav-logo-img,
    .nav-right a img {
        height: 72px !important;
        margin-right: 8px !important;
    }

    .nav-link {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-brand {
        font-size: clamp(40px, 7vw, 60px);
        letter-spacing: 5px;
    }

    .pathway-selector {
        flex-wrap: wrap;
        max-width: 720px;
    }

    .pathway-button {
        flex: 1 1 200px;
        max-width: none;
    }

    .section-title {
        font-size: clamp(32px, 5vw, 42px);
    }

    .booking-form-container {
        padding: 36px 28px;
    }

    .location-gallery-main-container {
        height: min(520px, 58vh);
    }
}

/* Responsive — phone & small tablet */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 14px;
        gap: 8px;
    }

    .nav-left {
        gap: 10px;
        flex-shrink: 0;
    }

    .menu-btn {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 8px 4px;
        min-height: 44px;
    }

    .nav-center .logo {
        font-size: clamp(14px, 4.2vw, 18px);
        letter-spacing: 2px;
    }

    .nav-right {
        gap: 8px;
        flex-shrink: 0;
    }

    /* Use MENU overlay for full nav on small screens — keep Gallery & Closet visible */
    .nav-right > .nav-link:not(#fashionGalleryHeroTab):not(#showcaseClosetHeroTab) {
        display: none;
    }

    /* Home page uses plain href links without those IDs */
    body:not(:has(#fashionGalleryHeroTab)) .nav-right > .nav-link {
        display: inline-block;
    }

    .nav-right > a.nav-link[href*="fashion-gallery"],
    .nav-right > a.nav-link[href*="#closet"],
    .nav-right > a.nav-link[href*="closet"] {
        display: inline-block !important;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .nav-logo-img,
    .nav-right img.nav-logo-img,
    .nav-right a img {
        height: 48px !important;
        margin-right: 0 !important;
    }

    .nav-icon {
        min-width: 44px;
        min-height: 44px;
    }

    .account-name-display {
        display: none !important;
    }

    .logo {
        font-size: 18px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero: avoid large desktop offsets on phones */
    .hero-background {
        transform: none;
        margin-bottom: 0;
    }

    .hero-background-img {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        top: 0;
        padding: 10px 12px 16px;
    }

    .hero-brand {
        font-size: clamp(28px, 9vw, 42px);
        letter-spacing: clamp(2px, 1.2vw, 5px);
        margin-top: 0;
    }

    .pathway-selector {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        margin-top: calc(16px + 4in - 0.5in);
        gap: 12px;
        max-width: 360px;
        padding: 0 8px;
    }

    .pathway-button {
        width: 100%;
        max-width: none;
        flex: none;
        font-size: 13px;
        padding: 14px 18px;
        min-height: 48px;
    }

    .brand-essence {
        padding: 28px 0;
    }

    .brand-essence-statement {
        margin-top: 28px;
        padding: 0 8px;
    }

    .essence-item h3 {
        font-size: 24px;
    }

    .featured-sections {
        padding: 20px 0 28px;
        margin-bottom: 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-item {
        height: auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-image {
        height: 220px;
    }

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

    .booking {
        padding: 24px 0 72px;
    }

    .booking-form-container {
        padding: 24px 16px;
        border-radius: 8px;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 28px;
    }

    .booking-steps::before {
        display: none;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 11px;
        text-align: center;
    }

    .date-time-selection {
        grid-template-columns: 1fr;
    }

    .locations-comparison {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .location-card-about {
        padding: 24px !important;
    }

    .about-intro h2 {
        font-size: 28px !important;
    }

    .commitment-section {
        padding: 36px 16px !important;
    }

    .commitment-section h2 {
        font-size: 24px !important;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 36px);
        padding: 0 8px;
    }

    .footer {
        padding: 28px 0 24px;
    }

    .footer-content {
        gap: 28px;
        margin-bottom: 16px;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-dropdown {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        min-width: min(280px, calc(100vw - 24px));
    }

    .location-gallery-content {
        width: 96%;
        padding: 14px 12px 18px;
        max-height: 92vh;
        overflow-y: auto;
    }

    .location-gallery-main-container {
        height: min(420px, 48vh);
        margin-bottom: 12px;
    }

    .location-gallery-nav {
        font-size: 22px;
        padding: 10px 12px;
    }

    .location-thumbnail {
        width: 72px;
        height: 72px;
    }

    .astute-audio-controls {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 12px auto 0;
        width: fit-content;
        max-width: 100%;
    }

    .site-welcome-music {
        left: auto;
        right: max(10px, env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        padding: 8px 10px;
        gap: 6px;
        /* Never let the fixed control bar exceed the screen width, so it can't
           push the layout sideways on small phones. */
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .site-welcome-music .audio-controls-label {
        display: none;
    }

    .audio-control-btn {
        width: 32px;
        height: 32px;
    }

    .image-gallery-modal-content {
        padding: 20px 14px;
        width: 96%;
    }

    .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .modal-content,
    .cart-modal-content {
        width: 96% !important;
        max-width: 96vw !important;
        margin: 12px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Responsive — small phones */
@media (max-width: 480px) {
    .nav-center .logo {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .nav-logo-img,
    .nav-right img.nav-logo-img,
    .nav-right a img {
        height: 40px !important;
    }

    .hero-brand {
        font-size: clamp(24px, 8.5vw, 32px);
    }

    .pathway-selector {
        max-width: 100%;
    }

    .featured-item {
        height: auto;
    }

    .booking-form-container {
        padding: 18px 12px;
    }

    .location-gallery-main-container {
        height: min(300px, 42vh);
    }

    .location-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Location Gallery Modal */
.location-gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.location-gallery-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
}

.location-gallery-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: var(--dark);
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.location-gallery-close:hover {
    color: var(--western-brown);
}

.location-gallery-main-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-gallery-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.location-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.location-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.location-gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.location-gallery-prev {
    left: 10px;
}

.location-gallery-next {
    right: 10px;
}

.astute-audio-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-welcome-audio-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

.home-welcome-audio-controls[hidden] {
    display: none !important;
}

.home-welcome-audio-controls .audio-controls-label {
    margin-right: 2px;
}

.site-welcome-music {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(26, 15, 8, 0.92);
    border: 1px solid rgba(201, 169, 98, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.site-welcome-music[hidden] {
    display: none !important;
}

.audio-controls-panel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-controls-label {
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 4px;
}

.audio-control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.audio-control-btn[hidden] {
    display: none !important;
}

.audio-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--western-gold);
    transform: scale(1.1);
}

.audio-control-btn:active {
    transform: scale(0.95);
}

.location-gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 150px;
    overflow-y: auto;
}

.location-thumbnail {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.location-thumbnail:hover {
    border-color: var(--western-gold);
}

.location-thumbnail.active {
    border-color: var(--western-brown);
}

.location-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================== Contact Page ===================== */
.contact-page {
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(212, 175, 55, 0.14), transparent 60%),
        linear-gradient(165deg, var(--western-dark) 0%, var(--western-brown) 58%, var(--saddle) 150%);
    color: var(--western-cream);
    min-height: 78vh;
    padding: clamp(52px, 8vw, 120px) 20px clamp(64px, 9vw, 130px);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-eyebrow {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--western-gold);
    font-size: clamp(12px, 1.5vw, 15px);
    margin: 0 0 12px;
}

.contact-title {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: clamp(5px, 1.4vw, 14px);
    font-size: clamp(40px, 8vw, 82px);
    line-height: 1.05;
    color: var(--white);
    margin: 0;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.contact-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(15px, 2.1vw, 21px);
    color: var(--western-tan);
    margin: 16px auto 0;
    max-width: 640px;
}

/* Contact CTA button — opens the fashion conversation form */
.contact-cta {
    display: inline-block;
    margin: 26px auto 0;
    padding: 14px 44px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--western-dark);
    background: var(--western-gold);
    border: 1px solid var(--western-gold);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-cta:hover,
.contact-cta:focus-visible {
    background: transparent;
    color: var(--western-gold);
    transform: translateY(-2px);
    outline: none;
}

.contact-divider {
    width: 88px;
    height: 2px;
    margin: clamp(30px, 5vw, 48px) auto;
    background: linear-gradient(90deg, transparent, var(--western-gold), transparent);
}

.contact-details {
    display: grid;
    gap: 22px;
    max-width: 520px;
    margin: 0 auto;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-detail-label {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--western-gold);
}

.contact-detail-value,
.contact-detail-value a {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 21px);
    color: var(--western-cream);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-detail-value a:hover,
.contact-detail-value a:focus-visible {
    color: var(--western-gold);
}

.contact-social-title {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: clamp(13px, 1.6vw, 16px);
    color: var(--western-gold);
    margin: 0 0 24px;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--western-cream);
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-social-link svg {
    display: block;
    flex: 0 0 auto;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
    background: var(--western-gold);
    color: var(--western-dark);
    border-color: var(--western-gold);
    transform: translateY(-2px);
    outline: none;
}

.contact-brand-close {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: clamp(20px, 3vw, 30px);
    color: var(--white);
    margin: 0;
}

.contact-brand-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--western-tan);
    margin: 12px auto 0;
    max-width: 520px;
}

@media (max-width: 600px) {
    .contact-social-link {
        padding: 12px 18px;
        font-size: 13px;
    }
}
