* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --black: #1a1f3d;
            --rich-black: #141833;
            --deep-black: #0f1229;
            --gold: #ffffff;
            --gold-light: #f0f0f0;
            --gold-dark: #e0e0e0;
            --white: #fff;
            --off-white: #f9f9f7;
            --cream: #f5f7fa;
            --text-light: #c5c8d4;
            --text-muted: #8890a8;
            --border-gold: rgba(255, 255, 255, 0.2);
            --navy: #0d0f3c;
            --navy-light: #1a1c4a;
        }
        
        html { 
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }
        
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--rich-black);
            color: var(--white);
            font-weight: 300;
            line-height: 1.8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-feature-settings: "kern" 1;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
        }
        
        strong, b {
            font-weight: 600;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==================== NAVIGATION ==================== */
        .marquee-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: var(--navy);
            padding: 10px 0;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }
        
        .marquee-content span {
            color: var(--white);
            font-size: 0.75rem;
            letter-spacing: 1px;
            padding: 0 50px;
            font-weight: 400;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.33%); }
        }
        
        .nav {
            position: fixed;
            top: 36px;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.3s ease;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            background: var(--navy);
        }
        
        .nav.scrolled {
            padding: 15px 5%;
            box-shadow: 0 4px 30px rgba(26, 31, 61, 0.9);
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            border: none;
        }
        
        .logo:hover, .logo:active, .logo:focus {
            text-decoration: none;
            border: none;
        }
        
        .logo img {
            height: 45px;
            width: auto;
        }
        
        .tm-symbol {
            color: #ffffff;
            font-size: 0.55rem;
            font-weight: 600;
            position: absolute;
            top: -2px;
            right: -14px;
            text-decoration: none !important;
            border: none !important;
            background: none !important;
            line-height: 1;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
            transition: color 0.3s;
            position: relative;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--navy);
            min-width: 200px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            z-index: 1000;
        }
        
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 12px 25px;
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        
        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .dropdown-menu a::after {
            display: none;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
            transition: all 0.3s;
            -webkit-font-smoothing: antialiased;
        }
        
        .nav-cta:hover {
            background: var(--gold);
            color: var(--black);
        }
        
        /* Amazon Button Style */
        .nav-cta.amazon-btn {
            background: #FF9900;
            border: none;
            color: #000;
            font-weight: 600;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
            animation: pulse-glow 2s infinite;
        }
        
        .nav-cta.amazon-btn:hover {
            background: #FFB84D;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
        }
        
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(255, 153, 0, 0.6); }
        }
        
        .nav-mobile {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(26, 31, 61, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s ease;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            margin: 20px 0;
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .mobile-menu a:hover {
            color: var(--gold);
            opacity: 1;
        }
        
        .mobile-menu .mobile-cta {
            margin-top: 40px;
            padding: 15px 40px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .mobile-menu .mobile-cta.amazon-btn {
            background: #FF9900;
            border: none;
            color: #000;
            font-weight: 600;
            border-radius: 4px;
        }
        
        .nav-mobile.active {
            color: var(--gold);
        }

        /* ==================== HERO ==================== */
        .hero {
            height: calc(100vh - 122px); /* Viewport minus header height */
            margin-top: 122px; /* Push below marquee (36px) + nav (~86px) */
            position: relative;
            overflow: hidden;
        }
        
        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(0,0,0,0.6) 0%,
                rgba(0,0,0,0.2) 50%,
                rgba(0,0,0,0.4) 100%
            );
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 8%;
            transform: translateY(-50%);
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-label {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.6rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 25px;
        }
        
        .hero-title span {
            color: var(--gold);
            font-style: italic;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 40px;
            max-width: 450px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
        }
        
        .btn-primary {
            padding: 18px 45px;
            background: var(--gold);
            color: var(--black);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.4s;
        }
        
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(200, 164, 92, 0.3);
        }
        
        .btn-secondary {
            padding: 18px 45px;
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--black);
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 2;
        }
        
        .hero-scroll span {
            display: block;
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--white);
            opacity: 0.5;
            margin-bottom: 10px;
        }
        
        .hero-scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            margin: 0 auto;
            animation: scrollPulse 2s infinite;
        }
        
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; height: 50px; }
            50% { opacity: 1; height: 60px; }
        }

        /* ==================== CRAFTSMANSHIP ==================== */
        .craftsmanship {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }
        
        .craft-image {
            position: relative;
            overflow: hidden;
            background: var(--rich-black);
        }
        
        .craft-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        .craft-content {
            background: var(--rich-black);
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .craft-label {
            color: var(--gold);
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }
        
        .craft-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 30px;
        }
        
        .craft-title span {
            color: var(--gold);
            font-style: italic;
        }
        
        .craft-text {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 2;
            margin-bottom: 40px;
        }
        
        .craft-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        
        .craft-feature {
            padding: 25px;
            border: 1px solid var(--border-gold);
            transition: all 0.3s;
        }
        
        .craft-feature:hover {
            background: rgba(200, 164, 92, 0.05);
            border-color: var(--gold);
        }
        
        .craft-feature h4 {
            color: var(--gold);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }
        
        .craft-feature p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ==================== COLLECTION ==================== */
        .collection {
            background: var(--deep-black);
            padding: 120px 0 0 0;
        }
        
        .collection-header {
            text-align: center;
            padding: 0 8% 60px;
        }
        
        .section-label {
            color: var(--gold);
            font-size: 0.65rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
        }
        
        .section-title span {
            color: var(--gold);
            font-style: italic;
        }
        
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            margin-bottom: 0;
        }
        
        .collection-item {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
        }
        
        .collection-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .collection-item:hover img {
            transform: scale(1.1);
        }
        
        .collection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.95) 0%,
                rgba(0,0,0,0.3) 50%,
                transparent 100%
            );
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        .collection-item:hover .collection-overlay {
            opacity: 1;
        }
        
        .collection-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 10px;
        }
        
        .collection-tagline {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        
        .collection-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: gap 0.3s;
        }
        
        .collection-link:hover {
            gap: 15px;
        }
        
        .collection-link svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
        }

        /* ==================== STORY SECTION ==================== */
        .story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--cream);
            color: var(--black);
        }
        
        .story-content {
            padding: 120px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .story-content-full {
            padding: 80px;
        }
        
        .story-text-full {
            max-height: 450px;
            overflow-y: auto;
            padding-right: 20px;
        }
        
        .story-text-full p {
            font-size: 1rem;
            color: #555;
            line-height: 1.9;
            margin-bottom: 25px;
        }
        
        .story-text-full p em {
            font-style: italic;
            display: block;
            margin-top: 5px;
        }
        
        .story-text-full p:last-child {
            margin-bottom: 0;
        }
        
        .story-text-full .story-closing {
            margin-top: 30px;
        }
        
        .story-label {
            color: var(--gold-dark);
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }
        
        .story-title {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: var(--black);
            line-height: 1.3;
            margin-bottom: 30px;
        }
        
        .story-title span {
            color: var(--gold-dark);
            font-style: italic;
        }
        
        .story-text {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 2;
            margin-bottom: 40px;
        }
        
        .story-stats {
            display: flex;
            gap: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }
        
        .story-stat {
            text-align: center;
        }
        
        .story-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--gold-dark);
            display: block;
            line-height: 1;
        }
        
        .story-stat-label {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 8px;
        }
        
        .story-image {
            position: relative;
            overflow: hidden;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Video Slideshow */
        .story-video-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            min-height: 500px;
            background: #000;
        }
        
        .video-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            transition: opacity 1.5s ease-in-out;
        }
        
        .video-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== FACILITY ==================== */
        .facility {
            background: var(--rich-black);
            padding: 100px 8%;
        }
        
        .facility-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .facility-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.8;
        }
        
        .facility-gallery {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }
        
        .facility-img {
            flex: 0 0 300px;
            height: 250px;
            overflow: hidden;
            border: 1px solid var(--border-gold);
            cursor: pointer;
            transition: all 0.4s ease;
            scroll-snap-align: start;
            position: relative;
        }
        
        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .facility-img:hover img {
            transform: scale(1.05);
        }
        
        /* Fullscreen Image Overlay */
        .image-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .image-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .image-overlay img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            border: 2px solid rgba(255,255,255,0.1);
        }
        
        .image-overlay .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .image-overlay .close-btn:hover {
            opacity: 1;
        }

        /* ==================== CONTACT ==================== */
        .contact {
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--deep-black);
            padding: 80px 5%;
        }
        
        .contact-whatsapp {
            text-align: center;
            max-width: 600px;
        }
        
        .contact-label {
            color: var(--gold);
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 25px;
            display: block;
        }
        
        .contact-title {
            font-size: clamp(2rem, 3vw, 2.5rem);
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .contact-title span {
            color: var(--gold);
            font-style: italic;
        }
        
        .contact-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 50px;
        }
        
        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .whatsapp-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            padding: 25px 50px;
            background: #25D366;
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s;
        }
        
        .whatsapp-btn-large:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn-large svg {
            width: 35px;
            height: 35px;
            fill: currentColor;
        }
        
        .instagram-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            padding: 25px 50px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s;
        }
        
        .instagram-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(225, 48, 108, 0.3);
            opacity: 0.9;
        }
        
        .instagram-btn-large svg {
            width: 35px;
            height: 35px;
            fill: currentColor;
        }
        
        .whatsapp-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .whatsapp-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.9;
        }
        
        .whatsapp-number {
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--deep-black);
            padding: 50px 8%;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-copyright {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .collection-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .nav-cta { display: none; }
            .nav-mobile { display: block; }
            .craftsmanship { grid-template-columns: 1fr; }
            .craft-content { padding: 80px 40px; }
            .story { grid-template-columns: 1fr; }
            .story-content { padding: 80px 40px; }
            .contact { grid-template-columns: 1fr; }
            .contact-info, .contact-cta { padding: 80px 40px; }
            .footer-content { flex-direction: column; gap: 30px; text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
        }
        
        @media (max-width: 768px) {
            .hero-content { left: 6%; right: 6%; max-width: none; }
            .hero-buttons { flex-direction: column; }
            .collection-grid { grid-template-columns: 1fr; }
            .collection-overlay { opacity: 1; }
            .craft-features { grid-template-columns: 1fr; }
            .story-stats { flex-direction: column; gap: 30px; }
            .availability-grid { flex-direction: column; align-items: center; }
            .availability-item { width: 100%; max-width: 300px; }
        }

        /* ==================== COTTON FEATURE ==================== */
        .cotton-feature {
            background: var(--off-white);
            padding: 100px 5%;
        }
        
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-head {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-head h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        .section-head p {
            color: #666;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .cotton-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .cotton-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cotton-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .cotton-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .cotton-card-body {
            padding: 20px;
        }
        
        .cotton-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 8px;
        }
        
        .cotton-card-text {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        .cotton-badge-inline {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            align-items: center;
            background: #f3efe7;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 18px;
            padding: 25px;
        }
        
        .cotton-badge-inline img {
            width: 100px;
            height: auto;
        }
        
        .cotton-badge-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--navy);
        }
        
        .cotton-badge-text {
            color: #666;
            margin-top: 5px;
        }
        
        @media (max-width: 900px) {
            .cotton-grid { grid-template-columns: 1fr; }
            .cotton-badge-inline { flex-direction: column; text-align: center; }
        }

        /* ==================== REVIEWS ==================== */
        .reviews {
            background: var(--navy);
            padding: 100px 5%;
            overflow: hidden;
        }
        
        .reviews .section-head h2 {
            color: #fff;
        }
        
        .reviews .section-head p {
            color: rgba(255,255,255,0.7);
        }
        
        .review-marquee-wrapper {
            overflow: hidden;
            margin-bottom: 40px;
            position: relative;
        }
        
        .review-marquee-wrapper::before,
        .review-marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }
        
        .review-marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--navy), transparent);
        }
        
        .review-marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--navy), transparent);
        }
        
        .review-marquee {
            display: flex;
            gap: 25px;
            animation: reviewScroll 45s linear infinite;
        }
        
        .review-marquee:hover {
            animation-play-state: paused;
        }
        
        @keyframes reviewScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .review-card {
            flex-shrink: 0;
            width: 350px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            padding: 30px;
        }
        
        .review-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .review-card p {
            color: rgba(255,255,255,0.9);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .review-name {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
        }
        
        .review-badge-row {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .review-badge {
            flex: 1;
            min-width: 140px;
            max-width: 220px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            padding: 25px 20px;
            text-align: center;
            overflow: visible;
        }
        
        .review-badge-num {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .green-dot {
            width: 10px;
            height: 10px;
            min-width: 10px;
            min-height: 10px;
            background: #25D366;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
            flex-shrink: 0;
        }
        
        .review-badge-label {
            color: rgba(255,255,255,0.6);
            font-size: 0.75rem;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        @media (max-width: 900px) {
            .review-card { width: 300px; }
            .review-badge-row { flex-wrap: wrap; }
            .review-badge { flex: 1 1 45%; min-width: 120px; }
        }
        
        @media (max-width: 400px) {
            .review-badge { flex: 1 1 100%; min-width: 100px; padding: 20px 15px; }
            .review-badge-num { font-size: 1rem; gap: 6px; }
            .green-dot { width: 8px; height: 8px; min-width: 8px; min-height: 8px; }
        }

        /* ==================== JOURNAL FEATURED ==================== */
        .journal-featured {
            background: var(--off-white);
            padding: 100px 5% 50px;
            position: relative;
            overflow: hidden;
        }
        /* Subtle decorative element - editorial flair */
        .journal-featured::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: var(--navy);
            opacity: 0.3;
        }
        .journal-featured .jf-eyebrow {
            text-align: center;
            font-size: 0.72rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 18px;
            opacity: 0.7;
        }
        .journal-featured .jf-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--navy);
            font-weight: 400;
            margin-bottom: 14px;
            line-height: 1.15;
        }
        .journal-featured .jf-title em {
            font-style: italic;
            color: #b8964a;
        }
        .journal-featured .jf-sub {
            text-align: center;
            color: #666;
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto 30px;
            font-style: italic;
        }
        /* Decorative ornament between sub and content */
        .jf-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 0 auto 60px;
            max-width: 200px;
        }
        .jf-ornament span {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, #b8964a, transparent);
        }
        .jf-ornament svg {
            width: 22px;
            height: 22px;
            color: #b8964a;
            flex-shrink: 0;
        }

        /* Asymmetric editorial grid: 1 hero + 2 stacked */
        .jf-layout {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 36px;
            align-items: stretch;
        }
        .jf-hero {
            position: relative;
            background: var(--white);
            text-decoration: none;
            color: var(--navy);
            transition: all 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .jf-hero:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -20px rgba(13,15,60,0.18);
        }
        .jf-hero-image {
            aspect-ratio: 16 / 10;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }
        .jf-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.3, 1);
        }
        .jf-hero:hover .jf-hero-image img { transform: scale(1.04); }
        .jf-hero-num {
            position: absolute;
            top: 26px;
            left: 26px;
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: rgba(255,255,255,0.95);
            font-weight: 400;
            line-height: 1;
            font-style: italic;
            text-shadow: 0 2px 30px rgba(13,15,60,0.4);
            letter-spacing: -2px;
        }
        .jf-hero-body {
            padding: 36px 38px 42px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .jf-tag {
            display: inline-block;
            font-size: 0.62rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #b8964a;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .jf-hero-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 2.2vw, 2rem);
            color: var(--navy);
            line-height: 1.18;
            font-weight: 400;
            margin-bottom: 16px;
        }
        .jf-hero-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 24px;
            flex-grow: 1;
        }
        .jf-cta {
            font-size: 0.72rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--navy);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s ease;
        }
        .jf-hero:hover .jf-cta { gap: 16px; }
        .jf-cta::after {
            content: "→";
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        /* Stacked secondary cards */
        .jf-stack {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }
        .jf-card {
            position: relative;
            background: var(--white);
            text-decoration: none;
            color: var(--navy);
            transition: all 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
            display: grid;
            grid-template-columns: 130px 1fr;
            flex: 1;
            overflow: hidden;
            min-height: 200px;
        }
        .jf-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -16px rgba(13,15,60,0.15);
        }
        .jf-card-num-bar {
            background: var(--navy);
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 22px 12px;
            position: relative;
        }
        .jf-card-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-style: italic;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 14px;
        }
        .jf-card-num-bar::after {
            content: "";
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,0.4);
        }
        .jf-card-num-label {
            font-size: 0.58rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            writing-mode: horizontal-tb;
            margin-top: 24px;
        }
        .jf-card-body {
            padding: 26px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .jf-card-headline {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--navy);
            line-height: 1.25;
            font-weight: 400;
            margin-bottom: 10px;
        }
        .jf-card-text {
            color: #666;
            font-size: 0.88rem;
            line-height: 1.55;
            margin-bottom: 14px;
        }
        .jf-card .jf-cta { font-size: 0.66rem; }

        .jf-allposts {
            text-align: center;
            margin-top: 50px;
        }
        .jf-allposts a {
            display: inline-block;
            color: var(--navy);
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            border-bottom: 1px solid var(--navy);
            padding-bottom: 6px;
            transition: all 0.3s ease;
        }
        .jf-allposts a:hover {
            color: #b8964a;
            border-bottom-color: #b8964a;
        }

        @media (max-width: 900px) {
            .journal-featured { padding: 70px 5%; }
            .jf-layout { grid-template-columns: 1fr; gap: 24px; }
            .jf-stack { gap: 24px; }
            .jf-hero-num { font-size: 3rem; top: 18px; left: 18px; }
            .jf-hero-body { padding: 28px 26px 32px; }
            .jf-card { grid-template-columns: 90px 1fr; min-height: 160px; }
            .jf-card-num { font-size: 1.9rem; margin-bottom: 8px; }
            .jf-card-num-label { font-size: 0.52rem; }
            .jf-card-body { padding: 20px 22px; }
            .jf-card-headline { font-size: 1.05rem; }
        }

        /* ==================== PROMISE ==================== */
        .promise {
            background: url('cotton-flower.jpeg') center center / cover no-repeat;
            padding: 100px 5%;
            position: relative;
        }
        
        .promise::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.3);
            z-index: 0;
        }
        
        .promise-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .promise-item {
            text-align: center;
            padding: 35px 25px;
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .promise-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }
        
        .promise-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--navy);
            margin-bottom: 12px;
        }
        
        .promise-text {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        @media (max-width: 900px) {
            .promise-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 600px) {
            .promise-grid { grid-template-columns: 1fr; }
            .promise { padding: 60px 5%; }
        }

        /* ==================== GLOBAL EXPANSION ==================== */
        .expansion {
            background: linear-gradient(135deg, var(--navy) 0%, #1a1c4a 100%);
            padding: 100px 5%;
            text-align: center;
        }
        
        .expansion .section-head h2 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3rem);
        }
        
        .expansion .section-head p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 15px auto 0;
        }
        
        .expansion-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 44px;
            margin: 50px auto 0;
            max-width: 860px;
        }
        .expansion-content > div {
            width: 100%;
            text-align: center;
        }
        
        .expansion-current, .expansion-coming {
            flex: 1;
            max-width: 400px;
        }
        
        .expansion-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .expansion-current .expansion-label {
            color: #4ade80;
        }
        
        .expansion-coming .expansion-label {
            color: #fbbf24;
        }
        
        .expansion-future .expansion-label {
            color: #94a3b8;
        }
        
        .expansion-countries {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        
        .country-badge {
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .country-badge.current {
            background: rgba(74, 222, 128, 0.15);
            border: 1px solid rgba(74, 222, 128, 0.4);
            color: #4ade80;
        }
        
        .country-badge.current::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #25D366;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
        }
        
        .country-badge.coming {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: #fbbf24;
        }
        
        .country-badge.future {
            background: rgba(148, 163, 184, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.25);
            color: #94a3b8;
        }
        
        .expansion-cta {
            margin-top: 60px;
            padding: 50px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .expansion-cta h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .expansion-cta p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 25px;
        }
        
        @media (max-width: 768px) {
            .expansion-content { flex-direction: column; gap: 40px; }
        }

        /* ==================== TRUST STRIP ==================== */
        .trust-strip {
            background: #ffffff;
            padding: 80px 5%;
        }
        .trust-strip-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .trust-eyebrow {
            text-align: center;
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #8e7c52;
            font-weight: 600;
            margin-bottom: 12px;
            opacity: 0.85;
        }
        .trust-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--navy);
            font-weight: 400;
            margin-bottom: 6px;
            line-height: 1.2;
        }
        .trust-title em {
            font-style: italic;
            color: #b8964a;
        }
        .trust-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 22px auto 44px;
            max-width: 180px;
        }
        .trust-ornament span {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9a876, transparent);
        }
        .trust-ornament i {
            width: 6px;
            height: 6px;
            background: #c9a876;
            border-radius: 50%;
            display: block;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .trust-item {
            text-align: center;
            padding: 0 20px;
        }
        .trust-item + .trust-item {
            border-left: 0.5px solid rgba(13,15,60,0.14);
        }
        .trust-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--navy);
            font-weight: 400;
            line-height: 1;
            margin-bottom: 10px;
        }
        .trust-num sup {
            font-size: 1.2rem;
            top: -0.3em;
            position: relative;
        }
        .trust-label {
            font-size: 0.74rem;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }
        .trust-desc {
            font-size: 0.82rem;
            color: #666;
            line-height: 1.55;
            margin: 0;
        }
        .trust-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 28px;
            border-top: 0.5px solid rgba(13,15,60,0.08);
        }
        .trust-footer a {
            font-size: 0.72rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #c9a876;
            padding-bottom: 4px;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
        .trust-footer a:hover {
            color: #b8964a;
        }
        @media (max-width: 700px) {
            .trust-strip { padding: 60px 5%; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
            .trust-item { padding: 0 12px; }
            .trust-item + .trust-item { border-left: none; }
            .trust-item:nth-child(odd) + .trust-item { border-left: 0.5px solid rgba(13,15,60,0.14); }
        }

        /* ==================== FIND YOUR FIT ==================== */
        .find-fit {
            background: var(--off-white);
            padding: 50px 5% 50px;
        }
        .find-fit-inner {
            max-width: 780px;
            margin: 0 auto;
        }
        .ff-eyebrow {
            text-align: center;
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #8e7c52;
            font-weight: 600;
            margin-bottom: 12px;
            opacity: 0.85;
        }
        .ff-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            color: var(--navy);
            font-weight: 400;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .ff-title em {
            font-style: italic;
            color: #b8964a;
        }
        .ff-sub {
            text-align: center;
            color: #666;
            font-size: 0.98rem;
            margin: 0 auto 28px;
            font-style: italic;
            max-width: 520px;
            line-height: 1.6;
        }
        .ff-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 0 auto 50px;
            max-width: 180px;
        }
        .ff-ornament span {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9a876, transparent);
        }
        .ff-ornament i {
            width: 6px;
            height: 6px;
            background: #c9a876;
            border-radius: 50%;
            display: block;
        }
        .ff-question {
            margin-bottom: 32px;
        }
        .ff-q-label {
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .ff-q-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            font-size: 0.78rem;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            flex-shrink: 0;
        }
        .ff-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .ff-opt {
            padding: 18px 14px;
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 4px;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s ease;
            user-select: none;
        }
        .ff-opt:hover {
            border-color: #c9a876;
            transform: translateY(-2px);
        }
        .ff-opt.selected {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }
        .ff-opt-title {
            font-weight: 500;
            margin-bottom: 4px;
            font-size: 0.92rem;
            color: var(--navy);
            transition: color 0.2s ease;
        }
        .ff-opt.selected .ff-opt-title {
            color: #fff;
        }
        .ff-opt-desc {
            font-size: 0.74rem;
            color: #777;
            line-height: 1.45;
            transition: color 0.2s ease;
        }
        .ff-opt.selected .ff-opt-desc {
            color: rgba(255,255,255,0.75);
        }
        .ff-result {
            margin-top: 36px;
            padding: 36px 32px;
            background: linear-gradient(135deg, var(--navy) 0%, #1a1c4a 100%);
            color: #fff;
            border-radius: 6px;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .ff-result.show {
            opacity: 1;
            transform: translateY(0);
        }
        .ff-result.hidden { display: none; }
        .ff-result-label {
            font-size: 0.66rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #c9a876;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .ff-result-tc {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 3.2rem);
            font-weight: 400;
            line-height: 1;
            margin-bottom: 6px;
        }
        .ff-result-tc em {
            font-style: italic;
            color: #c9a876;
        }
        .ff-result-tier {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            margin-bottom: 18px;
        }
        .ff-result-why {
            font-size: 0.92rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.88);
            max-width: 460px;
            margin: 0 auto 24px;
        }
        .ff-cta {
            display: inline-block;
            padding: 14px 32px;
            background: #c9a876;
            color: var(--navy);
            font-size: 0.74rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .ff-cta:hover {
            background: #d4b787;
        }
        .ff-restart {
            display: block;
            margin: 18px auto 0;
            background: none;
            border: none;
            color: rgba(255,255,255,0.55);
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            cursor: pointer;
            text-decoration: underline;
            padding: 6px 12px;
        }
        .ff-restart:hover { color: rgba(255,255,255,0.85); }
        @media (max-width: 700px) {
            .find-fit { padding: 70px 5%; }
            .ff-options { grid-template-columns: 1fr; gap: 8px; }
            .ff-opt { padding: 14px 16px; text-align: left; display: flex; align-items: center; gap: 16px; }
            .ff-opt-title { margin-bottom: 0; min-width: 110px; }
        }

        /* ==================== FACILITY ==================== */
        .facility {
            background: var(--off-white);
            padding: 50px 5% 100px;
        }
        
        .facility .section-head h2 {
            color: var(--navy);
        }
        
        .facility .section-head p {
            color: #666;
        }
        
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-top: 40px;
        }
        
        .facility-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .facility-card:hover {
            transform: scale(1.03);
        }
        
        .facility-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .facility-num {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--navy);
        }
        
        @media (max-width: 900px) {
            .facility-grid { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 600px) {
            .facility-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        /* Image Overlay for Facility */
        .image-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .image-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .image-overlay img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .image-overlay .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }