   :root {
            --text: #111;
            --muted: #666;
            --line: #d9d6d0;
            --white: #fff;
            --bg: #f8f6f1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* HERO */
        .tf-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: center;
            padding: 10% 0 0;
            flex-direction: column;
        }

        .tf-hero-inner {
            max-width: 520px;
            padding: 0 10px;
        }

        .tf-hero-sub {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 24px;
            color: var(--muted);
        }

        .tf-hero h1 {
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 300;
            line-height: 1;
            letter-spacing: -2px;
            margin: 0 0 36px;
        }

        .tf-hero p {
            font-size: 14px;
            line-height: 2;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #444;
            margin: 0;
        }

        /* CATEGORY */
        .tf-categories {
            margin: 60px;
            display: flex;
            justify-content: center;
            gap: 0;
            flex-wrap: wrap;
            width: 100%;
            border: 1px solid var(--line);
        }

        .tf-cat {
            min-width: 120px;
            text-decoration: none;
            color: var(--text);
            transition: transform 0.3s ease, background 0.3s ease;
            flex: 1;
            text-align: center;
            padding: 24px;
            border-right: 1px solid var(--line);
        }

        .tf-cat:last-child {
            border-right: none;
        }

        .tf-cat:hover {
            background: rgba(255, 255, 255, 0.45);
        }

        .tf-cat-icon {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .tf-cat-icon img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .tf-cat-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* PARALLAX - PURE CSS */
        .tf-parallax-section {
            padding: 100vh;
            position: relative;
            height: auto;
            background-size: cover;
            background-attachment: fixed;
            clip-path: inset(0px 0px 0px 0px);
            display: flex;
            justify-content: center;
        }

        .tf-sticky {
            position: fixed;
            top: 50px;
            height: auto;
            display: flex;
            justify-content: center;
            overflow: hidden;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        .tf-parallax-content {
            position: relative;
            z-index: 30;
            text-align: center;
            max-width: 565px;
            pointer-events: none;
            padding: 0 15px;
        }

        .tf-section-title {
            font-size: clamp(38px, 7vw, 70px);
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1.1;
            margin: 0 0 30px;
        }

        .tf-section-desc {
            font-size: 14px;
            line-height: 2;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #444;
            margin: 0;
        }

        .tf-parallax-image {
            position: relative;
            z-index: 20;
            width: 100%;
            max-width: 550px;
            text-align: center;
        }

        .tf-parallax-image img {
            width: 100%;
            object-fit: contain;
        }

        /* Pure CSS Parallax using background fixed */
        .tf-parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 10;
            opacity: 0.15;
        }

        /* STATS BAR */
        .tf-stats-bar {
            display: flex;
            justify-content: center;
            gap: 0;
            padding: 0 8%;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .tf-stat-item {
            flex: 1;
            text-align: center;
            padding: 48px 24px;
            border-right: 1px solid var(--line);
        }

        .tf-stat-item:last-child {
            border-right: none;
        }

        .tf-stat-num {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 300;
            letter-spacing: -1.5px;
            line-height: 1;
            margin-bottom: 10px;
        }

        .tf-stat-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 500;
        }

        /* TESTIMONIALS */
        .tf-testimonials {
            padding: 100px 5%;
            border-top: 1px solid var(--line);
        }

        .tf-testimonials-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .tf-testimonials-header h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
        }

        .tf-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .tf-testimonial-card {
            padding: 36px 28px;
            background: var(--white);
            border-radius: 2px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--line);
            display: flex;
            flex-direction: column;
        }

        .tf-testimonial-card .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .tf-testimonial-card .stars svg {
            width: 14px;
            height: 14px;
            fill: #d4af37;
        }

        .tf-testimonial-card blockquote {
            font-size: 14px;
            line-height: 1.9;
            color: #444;
            margin: 0 0 28px;
            font-style: italic;
            flex: 1;
        }

        .tf-testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .tf-testimonial-card .author-photo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .tf-testimonial-card .author-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tf-testimonial-card .author-info h4 {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin: 0;
        }

        .tf-testimonial-card .author-info span {
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--muted);
        }
        
        /* Swiper Container */
        .tf-testimonials-swiper {
            position: relative;
        }
        
        /* Navigation Arrows */
        .tf-testimonials-swiper .swiper-button-prev,
        .tf-testimonials-swiper .swiper-button-next {
            width: 44px;
            height: 44px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,.12);
            color: #111;
            display: none;
        }
        
        .tf-testimonials-swiper .swiper-button-prev:after,
        .tf-testimonials-swiper .swiper-button-next:after {
            font-size: 18px;
            font-weight: 700;
            display: none;
        }
        
        /* Position arrows */
        .tf-testimonials-swiper .swiper-button-prev {
            left: 0;
        }
        
        .tf-testimonials-swiper .swiper-button-next {
            right: 0;
        }
        
        /* Pagination */
        .tf-testimonials-swiper .swiper-pagination {
            position: relative;
            margin-top: 30px;
        }
        
        .tf-testimonials-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #bbb;
            opacity: 1;
        }
        
        .tf-testimonials-swiper .swiper-pagination-bullet-active {
            background: #000;
        }
        .swiper-pagination-lock {
            display: block !important;
        }

        /* CONTACT */
        .tf-contact {
            padding: 100px 5%;
            border-top: 1px solid var(--line);
        }

        .tf-contact-eyebrow {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 56px;
            color: var(--muted);
        }

        .tf-contact-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 20px;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--line);
            padding: 28px 0;
        }

        .tf-contact-value {
            flex: 1;
            min-width: 0;
        }

        .tf-contact-value a {
            font-size: clamp(32px, 8vw, 56px);
            font-weight: 300;
            letter-spacing: -1.5px;
            line-height: 1.1;
            color: var(--text);
            text-decoration: none;
            word-break: break-word;
            transition: opacity 0.3s ease;
        }

        .tf-contact-value a:hover {
            opacity: 0.6;
        }

        .tf-contact-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            padding-top: 12px;
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .tf-why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .tf-testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .tf-categories {
                margin: 56px 0 0;
            }

            .tf-cat {
                flex: 1 1 50%;
                border-bottom: 1px solid var(--line);
                padding: 36px 18px;
            }

            .tf-cat:nth-child(2n) {
                border-right: none;
            }

            .tf-cat:last-child {
                flex-basis: 100%;
                border-bottom: none;
            }

            .tf-parallax-section {
                height: 160vh;
                padding: 50px 10px;
            }

            .tf-sticky {
                gap: 30px;
            }

            .tf-why {
                padding: 60px 5%;
            }

            .tf-why-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .tf-stats-bar {
                flex-wrap: wrap;
                padding: 0;
            }

            .tf-stat-item {
                flex: 1 1 50%;
                border-bottom: 1px solid var(--line);
                padding: 32px 16px;
            }

            .tf-stat-item:nth-child(2) {
                border-right: none;
            }

            .tf-stat-item:nth-child(3),
            .tf-stat-item:nth-child(4) {
                border-bottom: none;
            }

            .tf-testimonials {
                padding: 60px 5%;
            }

            .tf-testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .tf-contact-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .tf-contact-label {
                padding-top: 0;
            }
        }