        *, *::before, *::after { box-sizing: border-box; }
        body { margin: 0; padding: 0; background: #080808; scroll-behavior: smooth; overflow-x: hidden; color: #f0ebe2; }

        :root {
            --red: #DF2621;
            --black: #080808;
            --card-bg: #0f0e0c;
            --border: rgba(255,255,255,0.07);
            --muted: rgba(240,235,226,0.5);
            --cream: #f0ebe2;
            --header-h: 72px;
            --cubic: cubic-bezier(0.23, 1, 0.32, 1);
            --torch-red: #DF2621;
            --torch-black: #000000;
            --torch-card-bg: #141210;
            --torch-text-muted: #a3a3a3;
            --torch-white: #ffffff;
            --torch-number-bg: #1a1a1a;
            --accent-red: #DF2621;
        }

        html { scroll-behavior: smooth; }

        /* Skip nav */
        .skip-nav { position: absolute; top: -100%; left: 0; background: var(--red); color: #fff; padding: 12px 24px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; z-index: 999999; transition: top 0.2s; }
        .skip-nav:focus { top: 0; }

        /* cursor:none only on desktop fine-pointer */
        @media (pointer: fine) {
            body:not(.touch-device) *, body:not(.touch-device) *::before, body:not(.touch-device) *::after { cursor: none !important; }
        }
        @media (pointer: fine) and (prefers-reduced-motion: reduce) {
            body:not(.touch-device) *, body:not(.touch-device) *::before, body:not(.touch-device) *::after { cursor: auto !important; }
        }
        .lux-dot { position: fixed; width: 8px; height: 8px; background: var(--red); border-radius: 50%; pointer-events: none; z-index: 999999; transform: translate(-100px,-100px); will-change: transform; }
        .lux-ring { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(223,38,33,0.45); border-radius: 50%; pointer-events: none; z-index: 999998; transform: translate(-100px,-100px); opacity: 0; will-change: transform; transition: opacity 0.3s; }
        @media (pointer: coarse), (prefers-reduced-motion: reduce) { .lux-dot, .lux-ring { display: none !important; } }

        /* HEADER */
        .tc-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 10003; height: var(--header-h); background: rgba(8,8,8,0.96); border-bottom: 1px solid var(--border); transition: background 0.35s ease, box-shadow 0.35s ease; }
        .tc-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #DF2621 0%, transparent 65%); }
        .tc-header.scrolled { background: rgba(8,8,8,0.99); box-shadow: 0 8px 40px rgba(0,0,0,0.55); }
        .tc-nav-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 100%; padding: 0 40px; }
        .tc-nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
        .tc-nav-logo img { height: 22px; width: auto; display: block; }
        .tc-nav-links { display: flex; align-items: center; justify-content: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
        .tc-nav-links > li { position: relative; }
        .tc-nav-links a { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(240,235,226,0.55); text-decoration: none; position: relative; padding: 4px 0; transition: color 0.25s var(--cubic); display: inline-flex; align-items: center; gap: 5px; }
        .tc-nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--red); transition: width 0.3s var(--cubic); }
        .tc-nav-links a:hover { color: var(--cream); }
        .tc-nav-links a:hover::after { width: 100%; }
        .tc-nav-links a.tc-active { color: var(--red); }
        .tc-nav-links a.tc-active::after { width: 100%; }
        .tc-nav-links a .tc-chevron { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; flex-shrink: 0; transition: transform 0.25s var(--cubic); }
        .tc-has-dropdown { position: relative; }
        .tc-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(10,9,8,0.98); border: 1px solid rgba(255,255,255,0.08); border-top: 2px solid var(--red); list-style: none; margin: 0; padding: 6px 0; min-width: 230px; opacity: 0; pointer-events: none; transition: opacity 0.22s var(--cubic), transform 0.22s var(--cubic); box-shadow: 0 20px 60px rgba(0,0,0,0.6); z-index: 100; }
        .tc-dropdown::before { content: ''; position: absolute; top: -14px; left: 0; width: 100%; height: 14px; background: transparent; }
        .tc-has-dropdown:hover .tc-dropdown, .tc-has-dropdown:focus-within .tc-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
        .tc-has-dropdown:hover > a .tc-chevron, .tc-has-dropdown:focus-within > a .tc-chevron { transform: rotate(225deg) translateY(2px); }
        .tc-dropdown li { margin: 0; }
        .tc-dropdown li a { display: block; padding: 11px 22px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,235,226,0.5); text-decoration: none; white-space: nowrap; position: relative; transition: color 0.2s var(--cubic), padding-left 0.2s var(--cubic), background 0.2s; }
        .tc-dropdown li a::after { content: none; }
        .tc-dropdown li a:hover { color: var(--cream); padding-left: 28px; background: rgba(255,255,255,0.03); }
        .tc-dropdown li + li { border-top: 1px solid rgba(255,255,255,0.04); }
        .tc-dropdown li a .tc-dd-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--red); margin-right: 10px; vertical-align: middle; flex-shrink: 0; }
        .tc-nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
        .tc-nav-cta { display: inline-block; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; background: var(--red); color: #fff; text-decoration: none; padding: 10px 24px; white-space: nowrap; transition: background 0.25s var(--cubic), color 0.25s var(--cubic), transform 0.2s var(--cubic); }
        .tc-nav-cta:hover { background: var(--cream); color: var(--black); transform: translateY(-1px); }

        /* Hamburger */
        .tc-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 48px; height: 48px; background: none; border: none; padding: 0; gap: 5px; position: relative; z-index: 10004; cursor: pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .tc-hamburger span { display: block; width: 26px; height: 1.5px; background: var(--cream); transition: transform 0.35s var(--cubic), opacity 0.25s, width 0.3s var(--cubic); transform-origin: center; pointer-events: none; }
        .tc-hamburger span:nth-child(2) { width: 18px; }
        .tc-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 26px; }
        .tc-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .tc-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 26px; }

        @media (max-width: 1024px) and (min-width: 769px) { .tc-nav-inner { padding: 0 28px; } .tc-nav-links { gap: 20px; } .tc-nav-links a { font-size: 0.64rem; } .tc-nav-cta { padding: 9px 18px; font-size: 0.64rem; } }
        @media (max-width: 768px) {
            :root { --header-h: 64px; }
            .tc-nav-inner { padding: 0 20px; }
            .tc-nav-links { display: none; }
            .tc-nav-cta { display: none; }
            .tc-hamburger { display: flex; }
        }

        /* OVERLAY */
        .tc-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity 0.35s ease; -webkit-tap-highlight-color: transparent; }
        .tc-overlay.open { opacity: 1; pointer-events: auto; }

        /* DRAWER */
        .tc-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 85vw); z-index: 10001; background: #0c0b09; border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.45s var(--cubic); will-change: transform; overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .tc-drawer.open { transform: translateX(0); }
        .tc-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: var(--header-h); border-bottom: 1px solid var(--border); flex-shrink: 0; }
        .tc-drawer-head-logo img { height: 20px; }
        .tc-drawer-close { width: 44px; height: 44px; background: none; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; cursor: pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .tc-drawer-close:hover { border-color: var(--red); background: rgba(223,38,33,0.08); }
        .tc-drawer-close svg { stroke: var(--cream); width: 16px; height: 16px; pointer-events: none; }
        .tc-drawer-eyebrow { padding: 28px 24px 14px; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin: 0; display: flex; align-items: center; gap: 10px; }
        .tc-drawer-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--red); }
        .tc-drawer-nav { flex: 1; padding: 0 24px 24px; display: flex; flex-direction: column; gap: 2px; }

        /* FIX 2: Removed role="listitem" from <a> elements (it overrides the implicit link role,
           breaking screen-reader link announcement). The <nav> landmark is sufficient. */
        .tc-drawer-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif;
            font-size: 2rem;
            letter-spacing: 0.04em;
            color: rgba(240,235,226,0.75);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: color 0.25s var(--cubic), padding-left 0.25s var(--cubic);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 44px;
        }
        .tc-drawer-nav a svg { opacity: 0; transform: translateX(-6px); flex-shrink: 0; stroke: var(--red); width: 20px; height: 20px; transition: opacity 0.2s, transform 0.25s var(--cubic); pointer-events: none; }
        .tc-drawer-nav a:hover { color: var(--cream); padding-left: 8px; }
        .tc-drawer-nav a:hover svg { opacity: 1; transform: translateX(0); }
        .tc-drawer-nav a.tc-active { color: var(--red); }
        .tc-drawer-nav a.tc-active svg { opacity: 1; transform: translateX(0); }
        .tc-drawer-subnav { font-size: 1.1rem !important; padding: 12px 0 12px 18px !important; color: rgba(240,235,226,0.4) !important; border-bottom-color: rgba(255,255,255,0.03) !important; letter-spacing: 0.06em !important; position: relative; }
        .tc-drawer-subnav::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 1px; background: var(--red); }
        .tc-drawer-subnav:hover { color: var(--red) !important; }
        .tc-drawer.open .tc-drawer-nav a { opacity: 1; transform: none; }

        .tc-drawer-contact { padding: 0 24px 20px; flex-shrink: 0; }
        .tc-drawer-contact p { font-size: 0.72rem; color: var(--muted); margin: 0 0 6px; line-height: 1.5; }
        .tc-drawer-contact a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
        .tc-drawer-contact a:hover { color: var(--cream); }
        .tc-drawer-footer { padding: 24px; border-top: 1px solid var(--border); flex-shrink: 0; }

        .tc-drawer-cta { display: block; width: 100%; text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; background: var(--red); color: #fff; text-decoration: none; padding: 16px; margin-bottom: 10px; transition: background 0.25s, color 0.25s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 44px; }
        .tc-drawer-cta:hover { background: var(--cream); color: var(--black); }
        .tc-drawer-wa { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; text-align: center; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--border); color: var(--muted); text-decoration: none; padding: 14px; transition: border-color 0.25s, color 0.25s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 44px; }
        .tc-drawer-wa:hover { border-color: #25D366; color: #25D366; }
        .tc-drawer-wa svg { width: 16px; height: 16px; fill: currentColor; pointer-events: none; }
        .tc-header-spacer { height: var(--header-h); }
        #tc-nav-placeholder { display: block; min-height: var(--header-h); }

        /* HERO */
        .torch-hero { min-height: 100vh; display: flex; align-items: center; justify-content: flex-end; position: relative; overflow: hidden; padding: 140px 80px 80px; background-color: #080808; }
        .torch-hero::before { content: ""; position: absolute; inset: 0; background-image: url('https://torchceramics.ae/wp-content/uploads/2026/04/porcelain-tiles-uae.webp'); background-size: cover; background-position: center; z-index: 0; }
        .torch-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to left, rgba(8,8,8,0.95) 25%, rgba(8,8,8,0.4) 100%); z-index: 1; }
        .hero-bg-text { position: absolute; left: 20px; bottom: 20px; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: clamp(6rem, 18vw, 22rem); color: rgba(255,255,255,0.05); line-height: 1; z-index: 2; user-select: none; pointer-events: none; white-space: nowrap; letter-spacing: 0.05em; }
        .hero-content-wrapper { position: relative; z-index: 10; max-width: 1100px; text-align: right; }
        .hero-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: #DF2621; font-weight: 600; margin-bottom: 25px; display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
        .hero-eyebrow-line { display: inline-block; width: 35px; height: 2px; background: #DF2621; flex-shrink: 0; }
        .hero-heading { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: clamp(4rem, 11vw, 9.5rem); line-height: 0.85; color: #f2f2f2; margin-bottom: 15px; text-transform: uppercase; letter-spacing: -0.01em; }
        .hero-heading span { color: #DF2621; }
        .hero-tagline { display: block; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: clamp(1.4rem, 3.5vw, 2.8rem); color: #DF2621; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 25px 0; line-height: 1; font-weight: 400; }
        .hero-description { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.5; font-weight: 400; max-width: 750px; margin-bottom: 35px; margin-left: auto; letter-spacing: 0.01em; }
        .hero-btn-group { display: flex; gap: 12px; justify-content: flex-end; margin-top: 30px; margin-bottom: 60px; }
        .btn-torch { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 14px 28px; text-decoration: none; transition: all 0.3s ease; display: inline-block; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .btn-primary { background: #DF2621; color: #fff; border: 2px solid #DF2621; }
        .btn-primary:hover { background: transparent; }
        .btn-secondary { color: #fff; border: 2px solid rgba(255,255,255,0.3); }
        .btn-secondary:hover { background: #fff; color: #080808; }

        /* FIX 1: Hero stats — .stat-item uses flex-direction: column-reverse.
           For the number to appear above the label visually, <dt> (label) must come
           first in the DOM and <dd> (number) second. column-reverse then places <dd>
           at the top and <dt> at the bottom. The original code had dd before dt which
           rendered the label on top and the number on the bottom — the wrong order. */
        .hero-stats { display: flex; justify-content: flex-end; align-items: center; gap: 0; margin: 0; padding: 0; flex-wrap: nowrap; }
        .stat-item { padding: 0 45px; position: relative; text-align: center; display: flex; flex-direction: column-reverse; flex: 0 0 auto; }
        .stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.15); }
        .stat-number { display: block; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); color: #DF2621; line-height: 1; margin: 0; }
        .stat-label { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 8px; font-weight: 500; }
        @media (max-width: 768px) { .torch-hero { padding: 100px 24px 60px; justify-content: center; } .hero-content-wrapper { text-align: center; } .hero-eyebrow { justify-content: center; } .hero-bg-text { display: none; } .hero-btn-group { flex-direction: column; align-items: center; justify-content: center; margin-bottom: 40px; } .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; } .stat-item { padding: 0 20px; } .stat-item:not(:last-child)::after { display: none; } .btn-torch { width: 100%; max-width: 280px; text-align: center; } .hero-description { margin-left: auto; margin-right: auto; } }
        @media (max-width: 1024px) and (min-width: 769px) { .torch-hero { padding: 110px 48px 70px; } }

        /* TICKER */
        .tc-wrapper { overflow: hidden; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 18px 0; background: #0f0e0c; }
        .tc-track { display: flex; white-space: nowrap; animation: tcroll 28s linear infinite; }
        @media (prefers-reduced-motion: reduce) { .tc-track { animation: none; } }
        @keyframes tcroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .tc-item { flex-shrink: 0; padding: 0 40px; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,235,226,0.45); font-weight: 500; display: flex; align-items: center; gap: 20px; }
        .tc-dot { width: 4px; height: 4px; border-radius: 50%; background: #DF2621; display: inline-block; flex-shrink: 0; }

        /* TRUST BADGES */
        .torch-trust-badges { padding: 60px 80px; background: #080808; display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
        .badge-card { padding: 35px 20px; background: #111111; display: flex; flex-direction: column; align-items: center; text-align: center; border-top: 2px solid transparent; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: default; }
        .badge-card:hover { border-top: 2px solid #DF2621; background: #161616; transform: translateY(-8px); }
        @media (prefers-reduced-motion: reduce) { .badge-card { transition: none; } .badge-card:hover { transform: none; } }
        .badge-icon-wrapper { width: 60px; height: 60px; border-radius: 50%; background: rgba(223,38,33,0.05); border: 1px solid rgba(223,38,33,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
        .badge-card:hover .badge-icon-wrapper { background: rgba(223,38,33,0.15); border-color: #DF2621; box-shadow: 0 0 15px rgba(223,38,33,0.2); }
        .torch-icon { width: 28px; height: 28px; fill: none; stroke: #DF2621; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .badge-title { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 1.15rem; letter-spacing: 0.05em; color: #f2f2f2; margin: 0 0 6px 0; text-transform: uppercase; }
        .badge-subtitle { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 500; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }
        .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
        @media (max-width: 1024px) { .torch-trust-badges { grid-template-columns: repeat(3, 1fr); padding: 40px; } }
        @media (max-width: 768px) { .torch-trust-badges { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; } .badge-card { padding: 25px 15px; } }
        @media (max-width: 480px) { .torch-trust-badges { grid-template-columns: 1fr; } }

        /* SPLIT SECTION */
        .torch-split-section-wrap { background-color: var(--torch-black); }
        .torch-split-section { padding: 100px 60px; font-family: 'DM Sans', sans-serif; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; max-width: 1600px; margin: 0 auto; position: relative; overflow: hidden; }
        .torch-left-content { position: relative; z-index: 2; }
        .torch-section-number { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: clamp(120px, 15vw, 200px); line-height: 0.8; letter-spacing: -5px; color: var(--torch-number-bg); position: absolute; top: -40px; left: -20px; z-index: -1; pointer-events: none; opacity: 0.8; user-select: none; }
        .torch-main-heading { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 800; line-height: 1.05; text-transform: capitalize; color: var(--torch-white); margin-bottom: 30px; overflow-wrap: break-word; hyphens: auto; }
        .torch-heading-accent { color: var(--torch-red); font-style: italic; }
        .torch-body-text { font-size: 1.05rem; color: var(--torch-text-muted); line-height: 1.7; margin-bottom: 40px; }
        .torch-right-container { display: flex; flex-direction: column; gap: 30px; }
        .torch-right-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .bento-item { background: var(--torch-card-bg); padding: 35px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease; }
        .bento-item:hover { border-color: var(--torch-red); transform: translateY(-5px); background: #1a1816; }
        .bento-item h4 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--torch-white); margin-top: 0; margin-bottom: 15px; text-transform: uppercase; }
        .bento-item p { font-size: 0.9rem; line-height: 1.6; color: var(--torch-text-muted); margin: 0; }
        @media (prefers-reduced-motion: reduce) { .bento-item { transition: none; } .bento-item:hover { transform: none; } }
        @media (max-width: 1200px) { .torch-split-section { padding: 80px 40px; gap: 40px; } }
        @media (max-width: 1024px) { .torch-split-section { grid-template-columns: 1fr; padding: 80px 30px; } .torch-section-number { font-size: clamp(80px, 12vw, 150px); } }
        @media (max-width: 768px) { .torch-split-section { padding: 60px 20px; } .torch-right-grid { grid-template-columns: 1fr; } .bento-item { padding: 25px; } }

        /* TILE GRID */
        .torch-grid-container { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; gap: 4px; background: #080808; }
        .torch-tile-card { position: relative; overflow: hidden; background: #141210; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
        .torch-tile-card img { transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); filter: grayscale(20%); width: 100%; height: 100%; object-fit: cover; }
        .torch-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; }
        .tile-title-group { opacity: 1; transform: translateY(0); transition: transform 0.4s ease; }
        .tile-desc { opacity: 0; max-height: 0; overflow: hidden; transform: translateY(10px); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        .torch-tile-card:hover .tile-desc, .torch-tile-card:focus-within .tile-desc { opacity: 1; max-height: 200px; transform: translateY(0); margin-top: 10px; }
        .torch-tile-card:hover img, .torch-tile-card:focus-within img { transform: scale(1.1); filter: grayscale(0%); }
        @media (max-width: 1024px) { .torch-grid-container { grid-template-columns: repeat(2, 1fr); } .large-card { grid-column: span 2 !important; grid-row: span 1 !important; min-height: 400px !important; } .tile-desc { opacity: 1; max-height: none; transform: translateY(0); } }
        @media (max-width: 600px) { .torch-grid-container { grid-template-columns: 1fr; } .large-card, .wide-card { grid-column: span 1 !important; } }

        /* TICKER MARQUEE */
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .torch-ticker-wrapper { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%); }
        .torch-ticker-track { animation: marquee 40s linear infinite; }
        .torch-ticker-track:hover { animation-play-state: paused; }
        @media (prefers-reduced-motion: reduce) { .torch-ticker-track { animation: none; } }

        /* PROJECT CASES */
        .project-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; background: #080808; }
        .project-card { position: relative; overflow: hidden; background: #141210; transition: all 0.5s ease; }
        .project-card img { transition: transform 1.2s cubic-bezier(0.15, 0, 0.05, 1); filter: brightness(0.8); }
        .project-card:hover img { transform: scale(1.1); filter: brightness(1); }
        .project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,14,12,0.95) 0%, rgba(15,14,12,0.4) 40%, transparent 100%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; }
        @media (max-width: 1024px) { .project-case-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .project-case-grid { grid-template-columns: 1fr; } }

        /* TESTIMONIALS */
        .torch-container { padding: 60px 20px; background: #0f0e0c; color: #f0ebe2; }
        .torch-google-header { background: #141210; border-left: 4px solid #DF2621; padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-radius: 0 4px 4px 0; }
        .google-brand-side { display: flex; align-items: center; gap: 16px; }
        .g-icon-bg { background: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .stars-row { color: #FBBC05; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
        .write-btn { background: #DF2621; color: #fff; text-decoration: none; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 1rem; padding: 10px 20px; letter-spacing: 1px; transition: 0.3s; text-transform: uppercase; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .write-btn:hover { background: #f0ebe2; color: #DF2621; }
        .torch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; background: #080808; }
        .torch-card { background: #141210; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; border-top: 2px solid transparent; transition: 0.3s; }
        .torch-card:hover { border-top: 2px solid #DF2621; background: #1a1816; }
        .quote-mark { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 4rem; color: #DF2621; line-height: 1; opacity: 0.2; margin-bottom: -20px; }
        .t-text { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; line-height: 1.7; color: rgba(240,235,226,0.7); font-style: italic; margin-bottom: 25px; }
        .t-author h4 { font-family: 'Syne', sans-serif; margin: 0; font-size: 1.1rem; color: #ffffff; font-weight: 700; }
        .t-author span { font-family: 'DM Sans', sans-serif; color: #DF2621; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
        @media (max-width: 1024px) { .torch-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .torch-grid { grid-template-columns: 1fr; } .torch-google-header { flex-direction: column; text-align: center; gap: 20px; } }

        /* SHARP CARDS */
        .sharp-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); width: 100%; background-color: #000; gap: 1px; }
        .sharp-card { position: relative; height: 600px; overflow: hidden; color: white; cursor: pointer; background: #111; animation: fadeInUp 0.8s var(--cubic) both; }
        .sharp-card:nth-child(1) { animation-delay: 0.1s; } .sharp-card:nth-child(2) { animation-delay: 0.3s; } .sharp-card:nth-child(3) { animation-delay: 0.5s; }
        .card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.1); transition: transform 1.2s var(--cubic), filter 0.8s ease; }
        .sharp-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.9) 100%); z-index: 1; transition: opacity 0.5s ease; }
        .sharp-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(223,38,33,0.35) 0%, rgba(0,0,0,0.65) 100%); z-index: 2; opacity: 0; transition: opacity 0.6s var(--cubic); }
        .sharp-card:hover::after, .sharp-card:focus-within::after { opacity: 1; }
        .sharp-card:hover .card-bg, .sharp-card:focus-within .card-bg { transform: scale(1); }
        .card-content-overlay { position: absolute; bottom: 0; left: 0; padding: 50px; z-index: 3; width: 100%; box-sizing: border-box; transition: transform 0.5s var(--cubic); }
        .sharp-card:hover .card-content-overlay, .sharp-card:focus-within .card-content-overlay { transform: translateY(-10px); }
        .card-number { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; color: var(--accent-red); font-size: 1.4rem; margin-bottom: 12px; display: block; }
        .sharp-card h3 { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 2.8rem; line-height: 1; margin: 0 0 20px 0; text-transform: uppercase; letter-spacing: 1px; color: #ffffff; }
        .sharp-card p { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 300; line-height: 1.5; margin-bottom: 35px; color: rgba(255,255,255,0.85); max-width: 90%; }
        .read-more-link { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; text-decoration: none; color: #ffffff; font-size: 1.1rem; letter-spacing: 3px; position: relative; padding-bottom: 8px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .read-more-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent-red); transition: width 0.4s var(--cubic); }
        .sharp-card:hover .read-more-link::after, .sharp-card:focus-within .read-more-link::after { width: 100%; background: #fff; }
        @media (prefers-reduced-motion: reduce) { .sharp-card { animation: none; } .card-bg { transform: scale(1); transition: none; } .sharp-card:hover .card-content-overlay, .sharp-card:focus-within .card-content-overlay { transform: none; } }
        @media (max-width: 768px) { .sharp-card { height: 500px; } .sharp-card h3 { font-size: 2.2rem; } .card-content-overlay { padding: 30px; } .sharp-card-grid { grid-template-columns: 1fr; } }

        /* SHOWROOMS */
        .showroom-compact-section { background: #0f0e0c; padding: 80px 40px; font-family: 'DM Sans', sans-serif; }
        .showroom-header { max-width: 1400px; margin: 0 auto 40px auto; }
        .showroom-compact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 1400px; margin: 0 auto; }
        .compact-card { position: relative; height: 420px; overflow: hidden; background: #141210; border: 1px solid rgba(255,255,255,0.05); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .compact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; transition: transform 0.8s ease, opacity 0.5s ease; }
        .compact-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #080808 5%, rgba(8,8,8,0.2) 60%, transparent 100%); z-index: 2; }
        .compact-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 3; transition: transform 0.4s ease; }
        .compact-label { font-size: 0.6rem; color: #DF2621; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 8px; display: block; }
        .compact-title { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 2rem; color: #f0ebe2; margin-bottom: 5px; line-height: 1; letter-spacing: 1px; }
        .compact-details { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; font-size: 0.85rem; color: rgba(240,235,226,0.5); line-height: 1.5; font-weight: 300; }
        .compact-btn { display: inline-block; margin-top: 15px; color: #DF2621; text-decoration: none; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .compact-card:hover, .compact-card:focus-within { border-color: rgba(223,38,33,0.5); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .compact-card:hover .compact-bg, .compact-card:focus-within .compact-bg { opacity: 0.6; transform: scale(1.1); }
        .compact-card:hover .compact-details, .compact-card:focus-within .compact-details { max-height: 80px; opacity: 1; margin-top: 10px; }
        .compact-btn:hover { color: #f0ebe2; padding-left: 5px; }
        @media (max-width: 1100px) { .showroom-compact-grid { grid-template-columns: repeat(2, 1fr); } .compact-details { max-height: none; opacity: 1; } }
        @media (max-width: 600px) { .showroom-compact-section { padding: 60px 20px; } .showroom-compact-grid { grid-template-columns: 1fr; } .compact-card { height: 350px; } }

        /* FAQ */
        .tc-faq details { border-bottom: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
        .tc-faq summary { list-style: none; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: #f0ebe2; gap: 16px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .tc-faq summary::marker { content: ''; display: none; } .tc-faq summary::-webkit-details-marker { display: none; }
        .tc-faq summary::after { content: '+'; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 1.8rem; color: #DF2621; flex-shrink: 0; line-height: 1; transition: transform 0.3s ease; }
        .tc-faq details[open] summary::after { content: '\2212'; }
        .tc-faq details[open] summary { color: #DF2621; }
        .tc-faq .faq-body { font-family: 'DM Sans', sans-serif; font-size: .88rem; color: rgba(240,235,226,0.65); line-height: 1.8; font-weight: 300; padding-bottom: 24px; }
        .faq-accordion-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: #f0ebe2; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; opacity: 0.9; }
        .faq-cta-btn { display: inline-block; margin-top: 30px; padding: 14px 32px; background-color: #DF2621; color: #ffffff; font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 1.2rem; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; transition: all 0.3s ease; border: 2px solid #DF2621; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .faq-cta-btn:hover { background-color: transparent; color: #ffffff; transform: translateY(-3px); }
        @media (max-width: 991px) { .faq-grid { grid-template-columns: 1fr !important; gap: 40px !important; } .faq-cta-btn { width: 100%; text-align: center; } }

        /* CTA FOOTER */
        .torch-cta-footer { position: relative; overflow: hidden; padding: 100px 80px; background: #0f0e0c; display: flex; align-items: center; min-height: 450px; }
        .torch-cta-bg-text { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: clamp(100px, 18vw, 220px); line-height: 1; color: #DF2621; opacity: 0.04; pointer-events: none; white-space: nowrap; user-select: none; }
        .torch-btn-main { display: inline-block; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px; background: #DF2621; color: #080808; padding: 18px 40px; transition: all 0.3s ease; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .torch-btn-main:hover { background: #f0ebe2; transform: translateY(-3px); }
        .torch-btn-outline { display: inline-block; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px; border: 1px solid rgba(240,235,226,0.3); color: #f0ebe2; padding: 17px 39px; transition: all 0.3s ease; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .torch-btn-outline:hover { background: rgba(240,235,226,0.1); border-color: #f0ebe2; transform: translateY(-3px); }
        .torch-btn-wa { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: #fff; padding: 18px 32px; border-radius: 2px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: all 0.3s ease; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .torch-btn-wa:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.15); }
        @media (max-width: 768px) { .torch-cta-footer { padding: 80px 24px; text-align: center; justify-content: center; } .torch-cta-content { display: flex; flex-direction: column; align-items: center; } .torch-btn-flex { width: 100%; flex-direction: column; } .torch-btn-main, .torch-btn-outline, .torch-btn-wa { width: 100%; justify-content: center; box-sizing: border-box; } .torch-cta-bg-text { opacity: 0.02; right: -20px; } }

        /* FOOTER */
        .torch-footer { background: #080808; color: #f0ebe2; padding: 70px 60px 30px 60px; font-family: 'DM Sans', sans-serif; position: relative; border-top: 1px solid rgba(255,255,255,0.03); }
        .torch-footer::before { content: ''; position: absolute; top: 0; left: 60px; width: 40px; height: 2px; background: #DF2621; }
        .footer-wrapper { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; gap: 100px; }
        .footer-left { flex: 1; }
        .footer-logo { height: 24px; width: auto; margin-bottom: 25px; opacity: 1; transition: 0.4s ease; }
        .footer-about { font-size: 0.78rem; line-height: 1.8; color: rgba(240,235,226,0.55); max-width: 260px; font-weight: 300; }
        .footer-right { flex: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .footer-title { font-family: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif; font-size: 1rem; letter-spacing: 4px; color: rgba(240,235,226,0.9); margin-bottom: 25px; text-transform: uppercase; }
        .footer-link-list { list-style: none; padding: 0; margin: 0; }
        .footer-link-list li { margin-bottom: 10px; font-size: 0.8rem; color: rgba(240,235,226,0.6); line-height: 1.5; }
        .footer-link-list a { color: inherit; text-decoration: none; transition: 0.3s; }
        .footer-link-list a:hover { color: #DF2621; }
        .footer-social-box { margin-top: 35px; display: flex; gap: 16px; }
        .footer-social-box a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: rgba(240,235,226,0.5); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; border: 1px solid rgba(240,235,226,0.1); border-radius: 50%; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .footer-social-box a svg { width: 16px; height: 16px; fill: currentColor; pointer-events: none; }
        .footer-social-box a:hover { color: #DF2621; border-color: #DF2621; transform: scale(1.1) translateY(-2px); }
        .footer-bottom { margin-top: 70px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
        .footer-bottom p { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,235,226,0.35); }
        @media (max-width: 1024px) { .footer-wrapper { flex-direction: column; gap: 50px; } .footer-right { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .torch-footer { padding: 50px 30px 30px 30px; } .torch-footer::before { left: 30px; } .footer-right { grid-template-columns: 1fr; gap: 40px; } }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        /* WHATSAPP WIDGET */
        @keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.6; } 70% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }
        #wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 99990; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-family: 'DM Sans', sans-serif; pointer-events: none; } #wa-fab { pointer-events: auto; }
        #wa-card { width: 300px; background: #141210; border: 1px solid rgba(255,255,255,0.08); border-top: 2px solid #DF2621; box-shadow: 0 24px 60px rgba(0,0,0,0.75); overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(16px) scale(0.96); transform-origin: bottom right; transition: opacity 0.3s cubic-bezier(0.23,1,0.32,1), transform 0.3s cubic-bezier(0.23,1,0.32,1); }
        #wa-card.wa-open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
        .wa-card-header { background: #25D366; padding: 16px 18px; display: flex; align-items: center; gap: 12px; position: relative; }
        .wa-card-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .wa-card-avatar svg { width: 22px; height: 22px; fill: #fff; pointer-events: none; }
        .wa-card-brand h4 { margin: 0; font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
        .wa-card-brand p { margin: 2px 0 0; font-size: 0.68rem; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; }
        .wa-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.3); margin-left: auto; flex-shrink: 0; }
        .wa-card-close { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(0,0,0,0.2); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .wa-card-close:hover { background: rgba(0,0,0,0.4); }
        .wa-card-close svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2; fill: none; pointer-events: none; }
        .wa-card-body { padding: 20px 18px; }
        .wa-bubble { background: #1e1c19; border: 1px solid rgba(255,255,255,0.06); border-radius: 0 10px 10px 10px; padding: 14px 16px; margin-bottom: 16px; font-size: 0.83rem; color: rgba(240,235,226,0.75); line-height: 1.65; position: relative; }
        .wa-bubble::before { content: ''; position: absolute; top: 0; left: -8px; width: 0; height: 0; border-top: 8px solid #1e1c19; border-left: 8px solid transparent; }
        .wa-bubble strong { display: block; color: #f0ebe2; font-size: 0.85rem; margin-bottom: 4px; }
        .wa-time { font-size: 0.62rem; color: rgba(240,235,226,0.35); text-align: right; margin-top: 6px; letter-spacing: 0.06em; }
        .wa-chips { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
        .wa-chip { display: flex; align-items: center; gap: 8px; padding: 9px 13px; background: transparent; border: 1px solid rgba(37,211,102,0.22); color: rgba(240,235,226,0.7); font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.03em; cursor: pointer; text-decoration: none; transition: border-color 0.2s, background 0.2s, color 0.2s; text-align: left; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .wa-chip:hover { border-color: #25D366; background: rgba(37,211,102,0.07); color: #f0ebe2; }
        .wa-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: #25D366; flex-shrink: 0; pointer-events: none; }
        .wa-cta-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; background: #25D366; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: none; transition: background 0.25s, transform 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        .wa-cta-btn:hover { background: #20ba5a; transform: translateY(-1px); }
        .wa-cta-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; pointer-events: none; }
        #wa-fab { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.4); transition: background 0.25s, transform 0.25s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s; flex-shrink: 0; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        #wa-fab:hover { background: #20ba5a; transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4); }
        #wa-fab:active { transform: scale(0.96); }
        #wa-fab svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; transition: transform 0.3s cubic-bezier(0.23,1,0.32,1); pointer-events: none; }
        #wa-fab .wa-icon-close { display: none; }
        #wa-fab.wa-open .wa-icon-wa { display: none; }
        #wa-fab.wa-open .wa-icon-close { display: block; }
        #wa-fab.wa-open { background: #1a1a1a; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
        #wa-fab::before, #wa-fab::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: wa-pulse 2.4s ease-out infinite; pointer-events: none; }
        #wa-fab::after { animation-delay: 1.2s; }
        #wa-fab.wa-open::before, #wa-fab.wa-open::after { display: none; }
        @media (max-width: 480px) { #wa-widget { bottom: 18px; right: 16px; } #wa-card { width: calc(100vw - 32px); max-width: 320px; } }
        @media (prefers-reduced-motion: reduce) { #wa-fab::before, #wa-fab::after { animation: none; } #wa-card { transition: none; } }

        .torch-tile-card:focus { outline: 2px solid var(--red); outline-offset: -2px; }

        /* ── RESPONSIVE FIXES ────────────────────────────────── */

        /* Footer bottom — stack on small screens */
        @media (max-width: 600px) {
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

        /* Large tile card — reduce height on tablet/mobile */
        @media (max-width: 1024px) {
            .torch-tile-card.large-card { min-height: 340px !important; }
        }
        @media (max-width: 600px) {
            .torch-tile-card.large-card { min-height: 260px !important; }
            .torch-tile-card.wide-card { height: 200px !important; }
        }

        /* Collections section — fix inline padding on mobile */
        @media (max-width: 768px) {
            section[aria-labelledby="collections-heading"] { padding: 60px 20px !important; }
            section[aria-labelledby="collections-heading"] > div:first-child { padding: 0 !important; }
        }

        /* New arrivals section — fix header padding on mobile */
        @media (max-width: 768px) {
            section[aria-labelledby="new-arrivals-heading"] > div:first-child { padding: 0 20px !important; }
        }

        /* FAQ section — reduce side padding on mobile */
        @media (max-width: 768px) {
            section[aria-labelledby="faq-heading"] { padding: 60px 20px !important; }
        }

        /* What we offer section — reduce side padding on mobile */
        @media (max-width: 768px) {
            section[aria-labelledby="what-we-offer-heading"] > div:first-child { padding: 0 20px !important; }
        }

        /* Testimonials section heading — scale down on mobile */
        @media (max-width: 600px) {
            .torch-container > div:first-child h2 { font-size: 2.8rem !important; }
        }

        /* Showroom heading — scale down on mobile */
        @media (max-width: 600px) {
            .showroom-header h2 { font-size: 2.2rem !important; }
        }

        /* Stat items — min-width on mobile to prevent collapse */
        @media (max-width: 480px) {
            .stat-item { min-width: 80px; }
        }

        /* Hero description — text-align center on mobile */
        @media (max-width: 768px) {
            .hero-description { text-align: center; }
            .hero-tagline { text-align: center; }
        }

        /* Nav inner — fix gap on wide tablet */
        @media (max-width: 900px) and (min-width: 769px) {
            .tc-nav-links { gap: 16px; }
            .tc-nav-links a { font-size: 0.6rem; }
        }

        /* ── ADDITIONAL MOBILE FIXES (from PDF review) ────────── */

        /* Project cases section — reduce padding & fix right-side description */
        @media (max-width: 768px) {
            section[aria-labelledby="project-cases-heading"] { padding: 60px 20px !important; }
            section[aria-labelledby="project-cases-heading"] > div:first-child > div:last-child {
                text-align: left !important;
                max-width: 100% !important;
            }
        }

        /* What We Offer section — reduce side padding on mobile */
        @media (max-width: 768px) {
            section[aria-labelledby="what-we-offer-heading"] > div:first-child { padding: 60px 20px 30px !important; }
        }

        /* Hero eyebrow — scale down on very small screens */
        @media (max-width: 480px) {
            .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; gap: 10px; }
        }

        /* Stats — ensure they don't overflow on narrow screens */
        @media (max-width: 480px) {
            .hero-stats { gap: 0; }
            .stat-item { padding: 0 14px; }
            .stat-number { font-size: clamp(2rem, 10vw, 3rem); }
        }

        /* Project case grid — fix card span on mobile */
        @media (max-width: 600px) {
            .project-card[style*="grid-column:span 2"],
            .project-card[style*="grid-column: span 2"] {
                grid-column: span 1 !important;
                min-height: 200px !important;
            }
        }

        /* Testimonials heading — scale down on small */
        @media (max-width: 480px) {
            section[aria-labelledby="testimonials-heading"] > div:first-child h2 { font-size: 2.6rem !important; }
        }

        /* Bento items — less padding on mobile */
        @media (max-width: 480px) {
            .bento-item { padding: 20px !important; }
        }

        /* Collections view-all button — full width on mobile */
        @media (max-width: 480px) {
            section[aria-labelledby="collections-heading"] a[href*="tiles-uae"] { width: 100%; text-align: center; box-sizing: border-box; display: block !important; }
        }

        /* New arrivals explore link — visible on mobile */
        @media (max-width: 480px) {
            section[aria-labelledby="new-arrivals-heading"] a[href*="new-arrival"] { font-size: 0.65rem !important; }
        }

        /* Sharp card grid — full width single col on small mobile */
        @media (max-width: 480px) {
            .sharp-card-grid { grid-template-columns: 1fr !important; }
            .sharp-card { height: 420px !important; }
        }

        /* Footer bottom text — prevent overflow */
        @media (max-width: 768px) {
            .footer-bottom p { font-size: 0.55rem !important; }
        }

        /* Torch container — fix padding on tiny screens */
        @media (max-width: 480px) {
            .torch-container { padding: 40px 16px; }
            .torch-google-header { padding: 18px 16px; }
            .torch-card { padding: 28px 20px; }
        }

        /* ============================================================
           SCROLL-REVEAL SYSTEM
           Base hidden states — applied via JS to avoid FOUC on no-JS
           ============================================================ */

        /* Base reveal atom */
        .reveal {
            opacity: 0;
            will-change: opacity, transform;
            transition:
                opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Direction variants */
        .reveal-up      { transform: translateY(42px); }
        .reveal-down    { transform: translateY(-28px); }
        .reveal-left    { transform: translateX(-48px); }
        .reveal-right   { transform: translateX(48px); }
        .reveal-scale   { transform: scale(0.93); }
        .reveal-clip    { clip-path: inset(0 100% 0 0); transition: clip-path 0.85s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1); }

        /* In-view: all variants resolve to identity */
        .reveal.in-view {
            opacity: 1;
            transform: none;
            clip-path: inset(0 0% 0 0);
        }

        /* Stagger delay helpers */
        .reveal-delay-1 { transition-delay: 0.10s; }
        .reveal-delay-2 { transition-delay: 0.20s; }
        .reveal-delay-3 { transition-delay: 0.32s; }
        .reveal-delay-4 { transition-delay: 0.46s; }
        .reveal-delay-5 { transition-delay: 0.62s; }

        /* Section-heading accent line sweep */
        .reveal-line {
            display: inline-block;
            width: 0;
            height: 1px;
            background: var(--red);
            flex-shrink: 0;
            transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.25s;
        }
        .in-view .reveal-line,
        .reveal-line.in-view { width: 28px; }

        /* Wide lines (What We Offer) */
        .reveal-line-wide {
            width: 0;
            transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
        }
        .in-view .reveal-line-wide,
        .reveal-line-wide.in-view { width: 40px; }

        /* Honour reduced-motion preference */
        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-clip { transition: opacity 0.01ms !important; transform: none !important; clip-path: none !important; }
            .reveal-line, .reveal-line-wide { transition: width 0.01ms !important; }
        }
