
        :root {
            --white: #ffffff;
            --black: #0a0a0a;
            --off-white: #fafaf8;
            --light-gray: #f0efed;
            --dark-gray: #4a4a4a;
            --lux-gold: #b08d57;
            --gold: #b08d57;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --font-cap: 'Montserrat', sans-serif;
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
            --lux-font-sans: 'Inter', sans-serif;
        }

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

        html.lenis,
        html.lenis body {
            height: auto;
        }
        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            background: var(--white);
            color: var(--black);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
        }

        /* ═══════════════ HERO BANNER ═══════════════ */
        .hero-contact {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: #0a0806;
            width: 100%;
        }
        .hero-contact-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 45%;
            filter: brightness(0.55) saturate(0.9);
            transform: scale(1.02);
        }
        .hero-contact-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(10, 8, 6, 0.6) 0%,
                    rgba(10, 8, 6, 0.2) 40%,
                    rgba(10, 8, 6, 0.65) 100%);
            z-index: 1;
        }
        .hero-contact-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 24px;
            animation: fadeUpHero 1.2s var(--ease-out-expo) both;
            width: 100%;
        }
        @keyframes fadeUpHero {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-contact-eyebrow {
            font-family: var(--font-cap);
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 18px;
            font-weight: 500;
        }
        .hero-contact-title {
            font-family: var(--font-serif);
            font-size: clamp(38px, 8vw, 80px);
            font-weight: 400;
            color: #fff;
            letter-spacing: 4px;
            text-transform: uppercase;
            line-height: 1.08;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .hero-contact-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(13px, 2vw, 18px);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 2px;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ─── CONTENT SPACER FOR SCROLLING ─── */
        .scroll-spacer {
            min-height: 60vh;
            background: #ffffff;
            padding: 80px 24px;
            text-align: center;
            font-family: var(--lux-font-sans);
            color: #2b2721;
        }

        /* ═══════════════ BRAND PHILOSOPHY SECTION (NEW) ═══════════════ */
        .brand-philosophy {
            padding: 100px 32px;
            background: #ffffff;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        .brand-philosophy .phil-eyebrow {
            font-family: var(--font-cap);
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--lux-gold);
            margin-bottom: 22px;
            font-weight: 500;
        }
        .brand-philosophy h2 {
            font-family: var(--font-serif);
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 400;
            color: #1a1a1a;
            line-height: 1.25;
            margin-bottom: 28px;
            letter-spacing: 0.5px;
        }
        .brand-philosophy .phil-text {
            font-size: clamp(14px, 1.6vw, 17px);
            color: #555;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }
        .phil-divider {
            width: 50px;
            height: 2px;
            background: var(--lux-gold);
            margin: 36px auto;
            border: none;
        }

        /* ═══════════════ WHY CHOOSE US ═══════════════ */
        .why-choose {
            padding: 100px 32px;
            background: var(--off-white);
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        .why-choose h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 400;
            margin-bottom: 16px;
            color: #1a1a1a;
        }
        .why-choose-sub {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--dark-gray);
            margin-bottom: 60px;
            font-family: var(--font-cap);
        }
        .benefits-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            width: 100%;
        }
        .benefit-item {
            text-align: center;
        }
        .benefit-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease;
        }
        .benefit-item:hover .benefit-icon {
            transform: translateY(-4px);
        }
        .benefit-icon svg {
            stroke: var(--lux-gold);
            fill: none;
            stroke-width: 1.5;
            width: 28px;
            height: 28px;
        }
        .benefit-title {
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
            color: #1a1a1a;
        }
        .benefit-desc {
            font-size: 12px;
            color: #666;
            line-height: 1.7;
            max-width: 220px;
            margin: 0 auto;
        }
        .stat-bar {
            margin-top: 70px;
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
            min-width: 100px;
        }
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 48px);
            color: var(--lux-gold);
            font-weight: 400;
        }
        .stat-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--dark-gray);
            margin-top: 8px;
            font-family: var(--font-cap);
        }

        /* ═══════════════ PAGE 3 ═══════════════ */
        #page3 {
            min-height: 100vh;
            width: 100%;
            position: relative;
            padding: 3vw;
            box-sizing: border-box;
            overflow: hidden;
        }
        #page3-top {
            text-align: center;
            padding: 0 16px;
        }
        #page3-top h4 {
            margin-bottom: 1vw;
            font-size: clamp(14px, 2vw, 22px);
            font-weight: 500;
            color: #000;
        }
        #page3-top h4 span {
            font-size: clamp(10px, 1vw, 14px);
            background-color: #000000;
            color: #ffffff;
            padding: 4px 10px;
            border-radius: 10px;
            display: inline-block;
        }
        #page3-top h2 {
            position: relative;
            display: inline-block;
            cursor: pointer;
            color: #333;
            transition: color 0.3s ease-in-out;
            font-size: clamp(24px, 4vw, 48px);
            font-weight: 500;
        }
        #page3-top h2::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 7px;
            border-radius: 20px;
            bottom: -4px;
            left: 0;
            background-color: #000000;
            transform-origin: bottom right;
            transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
        }
        #page3-top h2:hover {
            color: #000000;
        }
        #page3-top h2:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        #page3-elements {
            min-height: 60vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 6vw;
            gap: 16px;
            flex-wrap: nowrap;
        }
        #page3-elements .box {
            flex: 1;
            min-width: 0;
            aspect-ratio: 3/4;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }
        #page3-elements .box video {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            inset: 0;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.7s linear;
            pointer-events: none;
        }
        #page3-elements .box img {
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
            transition: opacity 0.7s linear;
            z-index: 1;
            inset: 0;
        }
        #page3-elements .box--has-video:hover img {
            opacity: 0;
        }
        #page3-elements .box--has-video:hover video,
        #page3-elements .box--has-video.is-video-active video {
            opacity: 1;
        }

        /* ═══════════════ THE ART OF PERFUMERY (NEW) ═══════════════ */
        .art-perfumery {
            padding: 100px 32px;
            background: #fdfaf6;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        .art-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .art-image-wrapper {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }
        .art-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 1.2s ease;
        }
        .art-image-wrapper:hover img {
            transform: scale(1.04);
        }
        .art-text h3 {
            font-family: var(--font-serif);
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .art-text .art-eyebrow {
            font-family: var(--font-cap);
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--lux-gold);
            margin-bottom: 16px;
            font-weight: 500;
        }
        .art-text p {
            font-size: 14px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 18px;
        }
        .art-text .art-highlight {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: clamp(18px, 2vw, 22px);
            color: var(--lux-gold);
            line-height: 1.5;
            margin-top: 24px;
            padding-left: 20px;
            border-left: 2px solid var(--lux-gold);
        }

        /* ═══════════════ WATCH / PRODUCT SHOWCASE ═══════════════ */
        .watch-container {
            max-width: 1200px;
            width: 100%;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-wrap: wrap;
            border-radius: 2px;
            overflow: hidden;
            margin: 60px auto;
            box-sizing: border-box;
        }
        .watch-image-section {
            flex: 1;
            min-width: 280px;
            position: relative;
            background: #f9f7f4;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 24px;
            overflow: hidden;
        }
        .watch-image-container {
            position: relative;
            width: 100%;
            height: 400px;
            max-height: 500px;
        }
        .watch-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .watch-image.active {
            opacity: 1;
        }
        .watch-details-section {
            flex: 1;
            min-width: 280px;
            padding: 50px 40px;
            background: white;
        }
        .section-title {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8c8c8c;
            margin-bottom: 24px;
            font-weight: 400;
            font-family: var(--font-cap);
        }
        .watch-name {
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 500;
            margin-bottom: 32px;
            color: #b08d57;
            letter-spacing: -0.5px;
            line-height: 1.1;
            font-family: 'Inter', sans-serif;
        }
        .feature-points {
            margin-top: 20px;
        }
        .feature-point {
            margin-bottom: 20px;
            position: relative;
            padding-left: 28px;
            border-left: 1px solid #e6e6e6;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .feature-point.active {
            border-left-color: #b38b59;
            margin-bottom: 32px;
        }
        .point-number {
            position: absolute;
            left: -14px;
            top: 0;
            font-size: 12px;
            font-weight: 500;
            color: #8c8c8c;
            background: white;
            padding: 0 4px;
            transition: color 0.3s ease;
        }
        .feature-point.active .point-number {
            color: #b38b59;
        }
        .point-title {
            font-size: clamp(16px, 1.5vw, 20px);
            margin-bottom: 6px;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: -0.3px;
            transition: margin-bottom 0.3s ease;
        }
        .feature-point.active .point-title {
            margin-bottom: 12px;
        }
        .point-description {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        .feature-point.active .point-description {
            max-height: 300px;
        }
        .divider {
            height: 1px;
            background: #e6e6e6;
            margin: 18px 0;
            width: 100%;
            transition: margin 0.3s ease;
        }
        .feature-point.active+.divider {
            margin: 28px 0;
        }

        /* ═══════════════ SECTION HIGHLIGHT ═══════════════ */
        section.highlight {
            min-height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #ffffff;
            padding: 60px 20px;
            box-sizing: border-box;
            overflow: hidden;
            width: 100%;
        }
        .highlight h1 {
            font-size: clamp(20px, 4vw, 40px);
            font-weight: 600;
            letter-spacing: 0.5px;
            line-height: 1.5;
            text-align: center;
            margin: 0;
            padding: 0;
            max-width: 1000px;
            font-family: 'Montserrat', 'Inter', 'Open Sans', sans-serif;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .highlight h1 span {
            display: inline-block;
            color: rgba(0, 0, 0, 0.08);
            transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            filter: blur(2px);
            margin-right: 6px;
        }
        .highlight h1 span.light {
            color: #b08d57;
            filter: blur(0);
            text-shadow: 0 0 15px rgba(176, 141, 87, 0.3);
        }

        /* ═══════════════ FOUNDER QUOTE (NEW) ═══════════════ */
        .founder-quote {
            padding: 100px 32px;
            background: #0a0806;
            color: white;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        .founder-quote .quote-mark {
            font-family: var(--font-serif);
            font-size: clamp(60px, 10vw, 100px);
            color: var(--lux-gold);
            line-height: 1;
            margin-bottom: 10px;
            opacity: 0.7;
        }
        .founder-quote blockquote {
            font-family: var(--font-serif);
            font-size: clamp(20px, 3vw, 30px);
            font-style: italic;
            max-width: 750px;
            margin: 0 auto 30px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            padding: 0 16px;
        }
        .founder-quote .founder-name {
            font-family: var(--font-cap);
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--lux-gold);
            font-weight: 500;
        }
        .founder-quote .founder-title {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 6px;
            letter-spacing: 1px;
        }

        

        /* ═══════════════ RESPONSIVE BREAKPOINTS ═══════════════ */

        /* ── Large tablets / Small laptops (≤1100px) ── */
        @media (max-width: 1100px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
                max-width: 600px;
            }
            .art-inner {
                gap: 40px;
            }
            .watch-container {
                margin: 40px 16px;
                width: auto;
            }
            .watch-details-section {
                padding: 40px 28px;
            }
            .stat-bar {
                gap: 40px;
            }
        }

        /* ── Tablets / iPads (≤900px) ── */
        @media (max-width: 900px) {
            .hero-contact {
                height: 65vh;
                min-height: 420px;
            }
            .brand-philosophy {
                padding: 70px 20px;
            }
            .why-choose {
                padding: 70px 20px;
            }
            #page3 {
                padding: 4vw 16px;
            }
            #page3-elements {
                flex-wrap: wrap;
                gap: 14px;
                margin-top: 5vw;
            }
            #page3-elements .box {
                flex: 1 1 calc(50% - 10px);
                min-width: 140px;
                aspect-ratio: 3/4;
            }
            .art-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .art-image-wrapper {
                aspect-ratio: 16/10;
                max-height: 400px;
            }
            .watch-container {
                flex-direction: column;
                margin: 30px 12px;
                width: auto;
            }
            .watch-image-section,
            .watch-details-section {
                min-width: 100%;
                flex: auto;
            }
            .watch-image-container {
                height: 320px;
                max-height: 380px;
            }
            .watch-details-section {
                padding: 36px 24px;
            }
            section.highlight {
                min-height: 40vh;
                padding: 40px 16px;
            }
            .founder-quote {
                padding: 70px 20px;
            }
            .about-cta {
                padding: 70px 20px;
            }
            .stat-bar {
                gap: 30px;
            }
            .stat {
                min-width: 80px;
            }
        }

        /* ── Small tablets / Large phones (≤650px) ── */
        @media (max-width: 650px) {
            .hero-contact {
                height: 55vh;
                min-height: 360px;
            }
            .hero-contact-eyebrow {
                font-size: 9px;
                letter-spacing: 3px;
                margin-bottom: 12px;
            }
            .hero-contact-subtitle {
                font-size: 12px;
                letter-spacing: 1px;
            }
            .brand-philosophy {
                padding: 50px 16px;
            }
            .brand-philosophy .phil-text {
                font-size: 13px;
            }
            .why-choose {
                padding: 50px 16px;
            }
            .why-choose h2 {
                font-size: 24px;
            }
            .why-choose-sub {
                font-size: 10px;
                letter-spacing: 2px;
                margin-bottom: 40px;
            }
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                max-width: 400px;
            }
            .benefit-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 14px;
            }
            .benefit-icon svg {
                width: 22px;
                height: 22px;
            }
            .benefit-title {
                font-size: 11px;
                letter-spacing: 0.5px;
            }
            .benefit-desc {
                font-size: 11px;
                max-width: 180px;
            }
            .stat-bar {
                gap: 22px;
                margin-top: 44px;
            }
            .stat-number {
                font-size: 28px;
            }
            .stat-label {
                font-size: 9px;
                letter-spacing: 2px;
            }
            #page3 {
                padding: 5vw 12px;
                min-height: auto;
            }
            #page3-elements {
                flex-wrap: wrap;
                gap: 10px;
                min-height: auto;
            }
            #page3-elements .box {
                flex: 1 1 100%;
                min-width: 100%;
                aspect-ratio: 16/11;
                max-height: 280px;
            }
            .art-perfumery {
                padding: 50px 16px;
            }
            .art-text p {
                font-size: 13px;
                line-height: 1.7;
            }
            .watch-container {
                margin: 20px 8px;
                width: auto;
                border-radius: 2px;
            }
            .watch-image-container {
                height: 260px;
                max-height: 300px;
            }
            .watch-details-section {
                padding: 28px 16px;
            }
            .point-title {
                font-size: 15px;
            }
            .point-description {
                font-size: 12px;
            }
            .feature-point {
                padding-left: 22px;
                margin-bottom: 14px;
            }
            .point-number {
                left: -11px;
                font-size: 10px;
            }
            section.highlight {
                min-height: 35vh;
                padding: 32px 12px;
            }
            .highlight h1 {
                font-size: 17px;
                letter-spacing: 0.3px;
                line-height: 1.55;
            }
            .highlight h1 span {
                margin-right: 4px;
            }
            .founder-quote {
                padding: 50px 16px;
            }
            .founder-quote blockquote {
                font-size: 17px;
            }
            .about-cta {
                padding: 50px 16px;
            }
            .about-cta h2 {
                font-size: 24px;
            }
            .btn-gold {
                padding: 12px 28px;
                font-size: 9px;
                letter-spacing: 3px;
            }
        }

        /* ── Mobile phones (≤480px) ── */
        @media (max-width: 480px) {
            .hero-contact {
                height: 50vh;
                min-height: 300px;
            }
            .hero-contact-title {
                font-size: 30px;
                letter-spacing: 2px;
                margin-bottom: 12px;
            }
            .hero-contact-eyebrow {
                font-size: 8px;
                letter-spacing: 2.5px;
                margin-bottom: 10px;
            }
            .hero-contact-subtitle {
                font-size: 11px;
            }
            .hero-contact-content {
                padding: 0 12px;
            }
            .brand-philosophy {
                padding: 40px 14px;
            }
            .brand-philosophy h2 {
                font-size: 22px;
            }
            .brand-philosophy .phil-text {
                font-size: 12px;
                line-height: 1.6;
            }
            .phil-divider {
                width: 36px;
                margin: 24px auto;
            }
            .why-choose {
                padding: 40px 14px;
            }
            .why-choose h2 {
                font-size: 22px;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 22px;
                max-width: 280px;
            }
            .benefit-desc {
                max-width: 240px;
            }
            .stat-bar {
                gap: 18px;
                margin-top: 36px;
            }
            .stat-number {
                font-size: 24px;
            }
            .stat-label {
                font-size: 8px;
                letter-spacing: 1.5px;
            }
            #page3-top h2 {
                font-size: 20px;
            }
            #page3-top h4 {
                font-size: 12px;
            }
            #page3-top h4 span {
                font-size: 9px;
                padding: 3px 7px;
            }
            #page3-elements .box {
                max-height: 220px;
                aspect-ratio: 16/10;
            }
            .art-perfumery {
                padding: 40px 14px;
            }
            .art-text h3 {
                font-size: 22px;
            }
            .art-text .art-highlight {
                font-size: 15px;
                padding-left: 14px;
            }
            .watch-image-container {
                height: 220px;
                max-height: 250px;
            }
            .watch-details-section {
                padding: 22px 14px;
            }
            .watch-name {
                font-size: 24px;
                margin-bottom: 20px;
            }
            .section-title {
                font-size: 10px;
                letter-spacing: 1.5px;
                margin-bottom: 16px;
            }
            .point-title {
                font-size: 14px;
            }
            .point-description {
                font-size: 11px;
                line-height: 1.6;
            }
            .divider {
                margin: 12px 0;
            }
            .feature-point.active+.divider {
                margin: 20px 0;
            }
            section.highlight {
                min-height: 30vh;
                padding: 28px 10px;
            }
            .highlight h1 {
                font-size: 15px;
                line-height: 1.5;
            }
            .founder-quote {
                padding: 40px 14px;
            }
            .founder-quote .quote-mark {
                font-size: 50px;
            }
            .founder-quote blockquote {
                font-size: 15px;
                line-height: 1.4;
            }
            .founder-quote .founder-name {
                font-size: 10px;
                letter-spacing: 2px;
            }
            .about-cta {
                padding: 40px 14px;
            }
            .about-cta h2 {
                font-size: 22px;
            }
            .about-cta p {
                font-size: 12px;
            }
            .btn-gold {
                padding: 10px 22px;
                font-size: 8px;
                letter-spacing: 2.5px;
            }
        }

        /* ── Very small phones (≤360px) ── */
        @media (max-width: 360px) {
            .hero-contact {
                height: 45vh;
                min-height: 260px;
            }
            .hero-contact-title {
                font-size: 26px;
                letter-spacing: 1.5px;
            }
            .hero-contact-eyebrow {
                font-size: 7px;
                letter-spacing: 2px;
            }
            .hero-contact-subtitle {
                font-size: 10px;
                letter-spacing: 0.8px;
            }
            .brand-philosophy h2 {
                font-size: 20px;
            }
            .why-choose h2 {
                font-size: 20px;
            }
            .benefits-grid {
                gap: 16px;
                max-width: 250px;
            }
            .benefit-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 10px;
            }
            .benefit-icon svg {
                width: 18px;
                height: 18px;
            }
            .benefit-title {
                font-size: 10px;
            }
            .benefit-desc {
                font-size: 10px;
                max-width: 200px;
            }
            .stat-bar {
                gap: 12px;
            }
            .stat-number {
                font-size: 20px;
            }
            .stat-label {
                font-size: 7px;
                letter-spacing: 1px;
            }
            .watch-image-container {
                height: 180px;
                max-height: 200px;
            }
            .watch-details-section {
                padding: 18px 10px;
            }
            .watch-name {
                font-size: 20px;
            }
            .point-title {
                font-size: 12px;
            }
            .point-description {
                font-size: 10px;
            }
            .highlight h1 {
                font-size: 13px;
            }
            .founder-quote blockquote {
                font-size: 14px;
            }
            .about-cta h2 {
                font-size: 20px;
            }
            .btn-gold {
                padding: 9px 18px;
                font-size: 7px;
                letter-spacing: 2px;
            }
        }
    