:root {
    /* Colors - Monochrome Palette */
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e5e5e5;
    --color-accent: #f5f5f5;
    --color-black: #000000;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    /* Sharp, Modern */
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;

    /* Transitions */
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1400px;
    /* Wider container for modern look */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.section-padding {
    padding: var(--spacing-lg) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--color-black);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    background: transparent;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-black);
    color: var(--color-bg);
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-bg);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left a {
    margin-right: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-right: auto;
    /* Push nav-right to the far right */
    margin-left: 2rem;
    /* Space from nav-left */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-black);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    width: 100%;
}

.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-nav a {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

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

/* Mobile Responsive - Hide desktop nav on mobile */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

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

    .mobile-nav {
        display: flex;
    }

    .logo {
        font-size: 1.1rem;
        position: static;
        transform: none;
    }

    .header-inner {
        position: relative;
    }
}

/* Hero Section */
.hero-section {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn-hero {
    border-color: #fff;
    color: #fff;
}

.btn-hero:hover {
    background-color: #fff;
    color: #000;
}

/* Split Layouts */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
}

@media (min-width: 992px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
    }
}

.split-content {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Anatomy Section */
.anatomy-section {
    background-color: #f9f9f9;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.anatomy-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.anatomy-img {
    max-width: 500px;
    margin: 0 auto;
}

.anatomy-point {
    position: absolute;
    text-align: left;
    max-width: 250px;
}

.anatomy-point h4 {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.anatomy-point p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.point-line {
    height: 1px;
    background-color: #ccc;
    width: 100px;
    display: block;
    margin-bottom: 1rem;
}

/* Positioning Anatomy Points (Desktop) */
@media (min-width: 992px) {
    .pt-shoulder {
        top: 20%;
        right: 10%;
        text-align: right;
    }

    .pt-shoulder .point-line {
        margin-left: auto;
    }

    .pt-canvas {
        top: 25%;
        left: 10%;
    }

    .pt-lapel {
        top: 50%;
        right: 5%;
        text-align: right;
    }

    .pt-lapel .point-line {
        margin-left: auto;
    }

    .pt-waist {
        bottom: 20%;
        left: 10%;
    }
}

/* Fabric Section */
.fabric-section {
    position: relative;
    padding: var(--spacing-lg) 0;
    color: #fff;
    text-align: center;
    background: #111;
}

.fabric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.fabric-content {
    position: relative;
    z-index: 2;
}

.fabric-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.fabric-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    background-color: #111;
    color: #888;
    font-size: 0.8rem;
    text-align: center;
}

/* Anatomy Section */
.anatomy-section {
    background-color: #f9f9f9;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.anatomy-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.anatomy-img {
    max-width: 100%;
    width: 400px;
    margin: 0 auto 2rem auto;
}

.anatomy-point {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.anatomy-point h4 {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.anatomy-point p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.point-line {
    display: none;
    /* Hidden by default */
}

.anatomy-point.active .point-line {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    margin: 0.75rem 0 1rem 0;
    /* Space above and below the line */
}

/* Anatomy Interactive Hotspots - Premium Upgrade */
.anatomy-image-wrapper {
    position: relative;
    width: 400px;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    overflow: hidden;
    /* Contain the zoom */
    border-radius: 8px;
}

.anatomy-img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth, premium ease */
    width: 100%;
    display: block;
}

/* Zoom States - Smooth Translate & Scale */
.anatomy-img.zoom-shoulder {
    transform: scale(1.35) translate(-15%, 10%);
}

.anatomy-img.zoom-canvas {
    transform: scale(1.35) translate(10%, 5%);
}

.anatomy-img.zoom-lapel {
    transform: scale(1.35) translate(-10%, 0);
}

.anatomy-img.zoom-waist {
    transform: scale(1.35) translate(0, -15%);
}

.hotspot {
    position: absolute;
    width: 40px;
    /* Larger hit area */
    height: 40px;
    cursor: pointer;
    z-index: 20;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 2px solid var(--color-gold, #d4af37);
    /* Gold border */
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    /* Gold glow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.3);
    /* Gold pulse */
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse-gold 2s infinite;
    z-index: 1;
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hotspot Positions */
.hs-shoulder {
    top: 22%;
    right: 25%;
}

.hs-canvas {
    top: 35%;
    left: 30%;
}

.hs-lapel {
    top: 45%;
    right: 35%;
}

.hs-waist {
    bottom: 35%;
    left: 45%;
}

/* Hover & Active Effects */
.hotspot:hover .hotspot-dot,
.hotspot.active .hotspot-dot {
    transform: scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--color-gold, #d4af37);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.anatomy-point {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.25rem 0.5rem;
    /* Minimal padding to prevent text clipping */
    border-radius: 12px;
    border: none;
    /* No border by default */
    background: transparent;
    /* Invisible by default */
    opacity: 0.6;
    transform: translateY(0);
    max-width: 280px;
    /* Slightly smaller for better fit */
    word-wrap: break-word;
    overflow: hidden;
}

.anatomy-point h4 {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
    color: #333;
    font-weight: 600;
}

.anatomy-point p {
    font-size: 0.85rem;
    /* Slightly smaller for better fit */
    line-height: 1.5;
    /* Tighter line height */
    opacity: 0.8;
    transform: translateX(0);
    transition: all 0.5s ease 0.05s;
    color: #555;
    margin: 0;
}

/* Active State - Box appears with premium design */
.anatomy-point.active {
    opacity: 1;
    padding: 1.75rem 1.5rem;
    /* Optimized padding for text fit */
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-12px) scale(1.08);
    z-index: 100;
}

.anatomy-point.active h4 {
    color: var(--color-gold, #d4af37);
    opacity: 1;
    transform: translateX(0);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
}

.anatomy-point.active p {
    color: #222;
    opacity: 1;
    transform: translateX(0);
    font-weight: 400;
    line-height: 1.6;
    /* Comfortable reading */
}

/* Dimming Effect - Total Isolation */
.anatomy-container.has-active .anatomy-point:not(.active) {
    opacity: 0 !important;
    /* Force invisible */
    transform: scale(0.9) !important;
    /* Force shrink */
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.anatomy-container.has-active .anatomy-image-wrapper img {
    filter: brightness(0.8) contrast(1.1);
    /* Darken background to spotlight the zoom */
    transition: filter 0.4s ease;
}

/* Hover Effects */
.hotspot:hover .hotspot-dot,
.hotspot.active .hotspot-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--color-gold, #d4af37);
}

.anatomy-point {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.anatomy-container.has-active .anatomy-point {
    opacity: 0.3;
}

.anatomy-container.has-active .anatomy-point.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Desktop Anatomy Layout */
@media (min-width: 992px) {
    .anatomy-container {
        padding: 4rem 0;
    }

    .anatomy-img {
        margin-bottom: 0;
    }

    .anatomy-point {
        position: absolute;
        text-align: left;
        max-width: 250px;
        margin-bottom: 0;
        padding: 0;
    }

    .point-line {
        height: 1px;
        background-color: #ccc;
        width: 100px;
        display: block;
        margin-bottom: 1rem;
    }

    .pt-shoulder {
        top: 20%;
        right: 10%;
        text-align: right;
    }

    .pt-shoulder .point-line {
        margin-left: auto;
    }

    .pt-canvas {
        top: 25%;
        left: 10%;
    }

    .pt-lapel {
        top: 50%;
        right: 5%;
        text-align: right;
    }

    .pt-lapel .point-line {
        margin-left: auto;
    }

    .pt-waist {
        bottom: 20%;
        left: 10%;
    }
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
}

.mobile-sticky-cta .btn {
    width: 100%;
    background-color: var(--color-black);
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* Mobile Split Fixes */
@media (max-width: 991px) {
    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-image {
        height: 300px;
        min-height: 300px;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

    /* Reorder for Process section so image is top on mobile */
    .split-section:nth-of-type(2) .split-image {
        order: -1;
    }
}

/* Mobile Header Fixes */
@media (max-width: 991px) {
    .header-inner {
        justify-content: center;
        padding: 1rem;
    }

    .nav-left,
    .nav-right {
        display: none;
        /* Hide desktop nav and top button on mobile since we have sticky bottom CTA */
    }

    .logo {
        position: static;
        transform: none;
        font-size: 1.2rem;
    }

    .site-header {
        padding: 0.5rem 0;
    }
}

/* Mobile Anatomy Fixes - Force Stacking */
@media (max-width: 991px) {
    .anatomy-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .anatomy-img {
        order: -1;
        /* Ensure image is always at the top */
        margin-bottom: 2rem;
        width: 80%;
        max-width: 300px;
    }

    .anatomy-point {
        position: static !important;
        /* Force static positioning to prevent overlap */
        transform: none !important;
        text-align: center !important;
        margin: 0 auto 1.5rem auto !important;
        width: 100% !important;
        max-width: 300px !important;
        padding: 0 1rem;
    }

    .point-line {
        display: none !important;
    }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: var(--spacing-lg) 0;
    background-color: #fff;
    overflow: hidden;
}

.video-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.video-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.video-card {
    flex: 0 0 300px;
    /* Fixed width for all cards */
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

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

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumb {
    opacity: 0.7;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.client-name {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.client-date {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Mobile Horizontal Scroll */
@media (max-width: 991px) {
    .video-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        gap: 1rem;
        /* Hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .video-grid::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        flex: 0 0 280px;
        /* Fixed width for cards on mobile */
        scroll-snap-align: center;
    }
}

/* Video Element Styling */
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-card .video-overlay,
.video-card .play-icon {
    z-index: 2;
    position: absolute;
}

/* Hide play icon if video is playing (optional, requires JS, but for now we keep it simple) */

/* Tuxedo Collection Section */
.tuxedo-section {
    padding: var(--spacing-lg) 0;
    background-color: #0a0a0a;
    /* Deep black for contrast */
    color: #fff;
    text-align: center;
}

.tuxedo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tuxedo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tuxedo-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.tuxedo-img-wrapper {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.tuxedo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tuxedo-card:hover .tuxedo-img {
    transform: scale(1.05);
}

.tuxedo-info {
    padding: 1.5rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.tuxedo-card:hover .tuxedo-info {
    border-color: #fff;
}

.tuxedo-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.tuxedo-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.tuxedo-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    display: inline-block;
    position: relative;
}

.tuxedo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.tuxedo-card:hover .tuxedo-link::after {
    width: 100%;
}

/* Location Section */
.location-section {
    background-color: #f9f9f9;
    padding: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.loc-icon {
    min-width: 30px;
    color: var(--color-black);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.loc-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.loc-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.map-wrapper {
    height: 400px;
    width: 100%;
    position: relative;
    background: #e5e5e5;
}

@media (min-width: 992px) {
    .map-wrapper {
        height: auto;
        min-height: 500px;
    }
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    /* Monochrome Map Filter */
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

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

.faq-question:hover {
    color: #666;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
}

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

/* Distance Calculator */
.distance-calculator {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.distance-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.distance-form {
    display: flex;
    gap: 0.5rem;
}

.distance-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.btn-calc {
    background: var(--color-black);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.distance-result {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-black);
    display: none;
    /* Hidden by default */
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.distance-result strong {
    color: var(--color-black);
    font-size: 1.1rem;
}

.directions-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #666;
    text-decoration: underline;
    font-size: 0.85rem;
}

/* Premium Journey Planner */
.journey-planner {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.journey-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.journey-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.journey-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.journey-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.journey-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    outline: none;
}

.btn-journey {
    background: #fff;
    color: #000;
    border: none;
    padding: 0 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease;
}

.btn-journey:hover {
    transform: translateY(-2px);
}

.journey-results {
    display: none;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.result-info {
    display: flex;
    align-items: center;
}

.result-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    opacity: 0.8;
}

.result-text {
    font-size: 0.95rem;
}

.result-time {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.result-meta {
    font-size: 0.8rem;
    opacity: 0.6;
}

.btn-action {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-action:hover {
    background: #fff;
    color: #000;
}

/* Revert Journey Planner to Light Theme */
.journey-planner {
    background: #fff;
    color: var(--color-black);
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.journey-header {
    border-bottom: 1px solid #eee;
}

.journey-input {
    background: #fff;
    border: 1px solid #ddd;
    color: var(--color-black);
}

.journey-input:focus {
    background: #fff;
    border-color: var(--color-black);
}

.btn-journey {
    background: var(--color-black);
    color: #fff;
}

.btn-journey:hover {
    background: #333;
    color: #fff;
}

.result-row {
    background: #f9f9f9;
}

.result-time {
    color: var(--color-black);
}

.result-meta {
    color: #666;
}

.btn-action {
    border-color: #ddd;
    color: var(--color-black);
}

.btn-action:hover {
    background: var(--color-black);
    color: #fff;
    border-color: var(--color-black);
}

/* Expanded Tuxedo Gallery (3x2 Grid) */
.tuxedo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tuxedo-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (min-width: 992px) {
    .tuxedo-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on desktop */
    }
}

.tuxedo-card {
    position: relative;
    height: 500px;
    /* Taller for more impact */
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.tuxedo-img-wrapper {
    height: 100%;
    width: 100%;
}

.tuxedo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tuxedo-card:hover .tuxedo-img {
    transform: scale(1.1);
}

/* Overlay Gradient */
.tuxedo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tuxedo-card:hover::after {
    opacity: 1;
}

/* Content Positioning */
.tuxedo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    border-bottom: none;
    /* Remove previous border */
}

.tuxedo-card:hover .tuxedo-info {
    transform: translateY(0);
}

.tuxedo-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tuxedo-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.tuxedo-card:hover .tuxedo-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1rem;
}

/* Remove "View Collection" link as requested */
.tuxedo-link {
    display: none;
}

/* Mobile Fixes for Journey Planner & Map */
@media (max-width: 768px) {
    .journey-planner {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .journey-form {
        flex-direction: column;
    }

    .journey-input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn-journey {
        width: 100%;
        padding: 1rem;
    }

    .map-wrapper {
        height: 300px;
        /* Smaller height for mobile */
        margin-top: 2rem;
    }

    .map-frame {
        height: 100%;
    }
}