﻿        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            /* Primary Blues - Professional & Calming - Enhanced */
            --deep: #0a3142;
            --mid: #1a5f7a;
            --teal: #2b7a99;
            --teal-light: #3fa0c8;
            
            /* Secondary Accents - Modern & Energetic - Enhanced */
            --accent: #e84a48;
            --accent-hover: #d43a38;
            --accent-light: #f5b2b0;
            --accent-bright: #ff6b6b;
            
            /* Supporting Colors - Refined */
            --sage: #6db3a0;
            --sage-light: #8ecab0;
            --coral: #e8a89d;
            --gold: #daa050;
            
            /* Neutral Palette - Sophisticated */
            --sand: #e8d5ce;
            --cream: #f3ebe2;
            --warm-white: #faf8f6;
            --white: #ffffff;
            
            /* Text Colors - Better accessibility */
            --text-dark: #0a1f28;
            --text-mid: #2d5165;
            --text-light: #7fa3b0;
            --text-muted: #999a9f;
            
            /* Gradients & Effects */
            --pink: #e84a48;
            --pink-hover: #d43a38;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Questrial', 'Segoe UI', sans-serif;
            --shadow-sm: 0 2px 12px rgba(10,49,66,.08);
            --shadow-md: 0 8px 28px rgba(10,49,66,.12);
            --shadow-lg: 0 12px 48px rgba(10,49,66,.16);
            --shadow-xl: 0 16px 64px rgba(10,49,66,.18);
            --radius: 12px;
            --radius-lg: 20px;
            --max-w: 1200px;
            --transition: .3s cubic-bezier(0.34, 1.56, 0.64, 1);
            --transition-smooth: .25s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: linear-gradient(135deg, #faf8f6 0%, #f5f1ea 100%);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; transition: color var(--transition-smooth); }
        h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--text-dark); }
        h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.015em; }
        h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
        h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
        .th-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
        .centered { text-align: center; }
        .btn {
            display: inline-block; padding: .85rem 2rem; border-radius: 50px;
            font-family: var(--font-body); font-size: .9rem; letter-spacing: .04em;
            text-transform: uppercase; cursor: pointer; transition: all var(--transition-smooth); border: none;
            font-weight: 600; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(232, 74, 72, 0.2);
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,.35);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width .6s, height .6s;
        }
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* ===== HEADER ===== */
        .th-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition-smooth), box-shadow var(--transition-smooth); }
        .th-header.scrolled { background: rgba(15,57,72,.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); }
        .th-nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 1rem 1.5rem; }
        .logo-container { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; transition: all var(--transition-smooth); }
        .logo-container:hover { transform: translateX(1px); }
        .logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: 2px solid rgba(255,255,255,.9); border-radius: 6px; font-size: 1rem; color: var(--white); font-weight: 700; letter-spacing: -0.03em; transition: all var(--transition-smooth); position: relative; }
        .logo-icon::before { content: ''; display: none; }
        .logo-icon::after { content: 'RH'; font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.03em; z-index: 1; }
        .logo-icon i { display: none; }
        .logo-text { display: flex; flex-direction: column; gap: 0.08rem; }
        .logo-container:hover .logo-icon { border-color: var(--white); }
        .logo-name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; color: var(--white); letter-spacing: -0.018em; transition: all var(--transition-smooth); }
        .logo-tagline { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.8); transition: all var(--transition-smooth); font-weight: 500; }
        .logo-container:hover .logo-name { opacity: 0.95; }
        .logo-container:hover .logo-tagline { opacity: 0.95; }
        .th-nav-links { display: flex; list-style: none; gap: 2rem; }
        .th-nav-links a { color: rgba(255,255,255,.88); font-size: .9rem; position: relative; font-weight: 500; }
        .th-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2.5px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%); transition: width var(--transition-smooth); border-radius: 2px; }
        .th-nav-links a:hover { color: var(--white); }
        .th-nav-links a:hover::after { width: 100%; }
        .th-home-nav-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); color: var(--white); font-size: .8rem; padding: .7rem 1.8rem; font-weight: 600; box-shadow: 0 6px 18px rgba(232,74,72,.3); transition: all var(--transition-smooth); text-transform: capitalize; letter-spacing: 0.02em; }
        .th-home-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,74,72,.42); }
        .mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
        .mobile-nav { display: none; position: fixed; inset: 0; background: var(--deep); z-index: 10000; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
        .mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
        .mobile-nav ul { list-style: none; text-align: center; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { color: var(--white); font-size: 1.3rem; font-family: var(--font-display); }
        .mobile-cta { background: var(--accent) !important; color: var(--white) !important; margin-top: 1rem; }

        /* ===== HERO ===== */
        .th-home-hero { position: relative; background: linear-gradient(135deg, #0a3142 0%, #1a5f7a 35%, #2b7a99 70%, #3fa0c8 100%); min-height: 100vh; overflow: hidden; }
        .th-home-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 100% 80% at 80% 20%, rgba(127,168,160,.25) 0%, transparent 50%), radial-gradient(ellipse 60% 60% at 15% 85%, rgba(196,154,108,.15) 0%, transparent 55%); pointer-events: none; }
        .th-home-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; max-width: var(--max-w); margin: 0 auto; padding: 10rem 1.5rem 8rem; position: relative; z-index: 2; }
        .th-home-kicker { display: inline-block; font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent-bright); margin-bottom: 1rem; padding: .5rem 1.2rem; background: linear-gradient(135deg, rgba(232,74,72,.15) 0%, rgba(232,74,72,.08) 100%); border-radius: 50px; border: 1.5px solid rgba(232,74,72,.35); font-weight: 600; }
        .th-home-copy h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 700; letter-spacing: -.01em; text-shadow: 0 4px 12px rgba(0,0,0,.15); }
        .th-home-copy > p { color: rgba(255,255,255,.92); font-size: 1.08rem; max-width: 520px; margin-bottom: 2rem; line-height: 1.8; text-shadow: 0 2px 8px rgba(0,0,0,.1); }
        .th-home-secondary-btn { background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.08) 100%); color: var(--white); border: 2px solid rgba(255,255,255,.6); font-weight: 600; transition: all var(--transition-smooth); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
        .th-home-secondary-btn:hover { background: rgba(255,255,255,.98); color: var(--deep); border-color: var(--white); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.25); }
        .th-home-image { width: 100%; max-height: 520px; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.35); overflow: hidden; position: relative; transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .th-home-image:hover { transform: translateY(-12px); box-shadow: 0 32px 80px rgba(0,0,0,.4); }
        .th-home-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; border-radius: var(--radius-lg); transition: transform .6s ease; }
        .th-home-image:hover img { transform: scale(1.03); }
        .th-home-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.2); pointer-events: none; }

        /* ===== SECTIONS ===== */
        .th-section { padding: 6rem 0; }
        .th-section-dark { background: linear-gradient(180deg, #1a6378 0%, #2b7a99 50%, #3fa0c8 100%); color: var(--white); margin-top: -2px; }
        .th-section-light { background: linear-gradient(135deg, #faf8f6 0%, #f5f1ea 100%); color: var(--text-dark); }
        .th-section-soft { background: linear-gradient(135deg, #f3ebe2 0%, #e8d5ce 100%); color: var(--text-dark); }
        .th-eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin-bottom: .75rem; font-weight: 600; }
        .th-section-dark .th-eyebrow { color: rgba(255,255,255,.85); }
        .th-intro h2 { margin-bottom: 1rem; }
        .th-intro > p { max-width: 640px; margin: 0 auto 2.5rem; opacity: .88; line-height: 1.85; font-weight: 500; }

        /* ===== ACCORDION ===== */
        .th-accordion-wrap { max-width: 800px; margin: 0 auto; }
        .th-accordion details { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; transition: all var(--transition-smooth); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
        .th-accordion details:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2); box-shadow: 0 4px 12px rgba(0,0,0,.12); }
        .th-accordion details[open] { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.25); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
        .th-accordion summary { padding: 1.5rem 1.75rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; user-select: none; color: #0a3142; }
        .th-accordion summary::-webkit-details-marker { display: none; }
        .th-accordion summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: #1a5f7a; transition: transform var(--transition-smooth); }
        .th-accordion details[open] summary::after { content: '\2212'; transform: rotate(90deg); }
        .th-accordion details > div { padding: 0 1.75rem 1.5rem; animation: fadeInDown .3s ease; }
        .th-accordion details > div p { color: #2d5165; line-height: 1.85; margin-bottom: 1rem; font-weight: 500; }
        .th-accordion details > div a { color: #1a5f7a; font-size: .9rem; border-bottom: 2px solid #1a5f7a; padding-bottom: 2px; transition: all var(--transition-smooth); font-weight: 600; }
        .th-accordion details > div a:hover { color: #0a3142; border-color: #0a3142; }

        /* ===== WHAT WE DO (image + text) ===== */
        .th-about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .th-image-card { width: 100%; border-radius: 24px; box-shadow: 0 12px 40px rgba(10,49,66,.14); overflow: hidden; position: relative; transition: all var(--transition); border: 1px solid rgba(255,255,255,.15); }
        .th-image-card:hover { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(10,49,66,.2); }
        .th-image-card img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; border-radius: 24px; transition: transform .5s ease; }
        .th-image-card:hover img { transform: scale(1.04); }
        .th-about-preview > div h2 { margin-bottom: 1rem; color: var(--text-dark); }
        .th-about-preview > div p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.85; font-weight: 500; }
        .th-ghost-btn { background: transparent; color: var(--teal); border: 2px solid var(--teal); font-weight: 600; transition: all var(--transition-smooth); box-shadow: 0 4px 12px rgba(43,122,153,.12); }
        .th-ghost-btn:hover { background: linear-gradient(135deg, var(--teal) 0%, #2b7a99 100%); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(43,122,153,.28); }

        /* ===== PROVIDER ===== */
        .th-provider-grid { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: center; max-width: 960px; margin: 0 auto; }
        .th-provider-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(10,49,66,.15); position: relative; border: 1px solid rgba(10,49,66,.08); transition: all var(--transition-smooth); }
        .th-provider-photo:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,49,66,.22); }
        .th-provider-photo img { width: 100%; height: 480px; object-fit: cover; }
        .th-provider-photo::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid rgba(10,49,66,.1); pointer-events: none; }
        .th-provider-info .th-eyebrow { text-align: left; }
        .th-provider-info h2 { margin-bottom: 1.2rem; text-align: left; }
        .th-provider-info p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; font-weight: 500; }
        .th-provider-info .btn { margin-top: .75rem; }

        .th-home-provider-section {
            position: relative;
            background: linear-gradient(135deg, #dcccc5 0%, #e5d3ce 50%, #ede4db 100%);
            padding: 6rem 0 7rem;
            overflow: hidden;
        }

        /* Provider Showcase Grid */
        .th-provider-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3.5rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .th-provider-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(10,49,66,.12);
            border: 1px solid rgba(10,49,66,.08);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }

        .th-provider-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(10,49,66,.2);
            border-color: rgba(232,74,72,.2);
        }

        .th-provider-image {
            width: 100%;
            height: 460px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            padding-top: 10%;
        }

        .th-provider-portrait {
            width: 100%;
            height: 145%;
            display: block;
            object-fit: contain;
            object-position: center top;
        }

        .th-provider-one .th-provider-portrait {
            object-position: center top;
        }

        .th-provider-two .th-provider-portrait {
            object-position: center top;
        }

        .th-provider-card-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .th-provider-card h3 {
            color: var(--text-dark);
            font-size: 1.35rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .th-provider-card p {
            color: var(--text-mid);
            line-height: 1.7;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .th-provider-card p:last-of-type {
            font-size: 0.85rem;
            color: #7fa3b0;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .th-provider-card .th-ghost-btn {
            margin-top: auto;
            align-self: flex-start;
            border-color: var(--teal);
            color: var(--teal);
            background: transparent;
            padding: 0.8rem 2rem;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .th-provider-card .th-ghost-btn:hover {
            background: linear-gradient(135deg, var(--teal) 0%, #2b7a99 100%);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(43,122,153,.2);
        }

        .th-provider-card-actions {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }

        .th-provider-card .th-provider-card-actions .th-ghost-btn {
            margin-top: 0;
        }

        .th-provider-book-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.4rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #c98f83 0%, #b5756a 100%);
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 10px 24px rgba(181,117,106,.24);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), filter var(--transition-smooth);
        }

        .th-provider-book-btn:hover {
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(181,117,106,.3);
            filter: saturate(1.05);
        }

        .th-home-provider-section .th-provider-grid {
            max-width: 1120px;
            grid-template-columns: minmax(320px, 460px) 1fr;
            gap: 5rem;
            align-items: center;
        }

        .th-home-provider-section .th-provider-photo {
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(28, 63, 82, 0.12);
            box-shadow: 0 12px 40px rgba(28, 63, 82, .15);
            overflow: hidden;
            transition: all .3s ease;
        }
        .th-home-provider-section .th-provider-photo:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(28, 63, 82, .2);
        }

        .th-home-provider-section .th-provider-photo img {
            width: 100%;
            height: 640px;
            object-fit: cover;
            object-position: center top;
            border-radius: 32px;
        }

        .th-home-provider-section .th-provider-info .th-eyebrow {
            color: var(--deep);
            font-size: 1rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .th-home-provider-section .th-provider-info h2 {
            color: var(--deep);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            line-height: 1.1;
            font-weight: 600;
        }

        .th-home-provider-section .th-provider-info p {
            color: var(--mid);
            font-size: 1rem;
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .th-home-provider-section .th-ghost-btn {
            border-color: var(--mid);
            color: var(--mid);
            background: transparent;
            padding: .8rem 2.1rem;
            font-weight: 600;
        }

        .th-home-provider-section .th-ghost-btn:hover {
            background: var(--mid);
            color: var(--warm-white);
        }

        .cookie-banner {
            position: fixed;
            left: 14px;
            right: 14px;
            bottom: 12px;
            z-index: 1400;
            background: #f5f4f3;
            border-top: 1px solid #ddd8d4;
            border-radius: 14px;
            box-shadow: 0 -10px 24px rgba(2, 26, 38, 0.12);
            opacity: 0;
            transform: translateY(18px);
            pointer-events: none;
            transition: opacity 0.24s ease, transform 0.24s ease;
        }

        .cookie-banner.is-active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .cookie-banner.is-hiding {
            opacity: 0;
            transform: translateY(18px);
            pointer-events: none;
        }

        .cookie-banner-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .cookie-banner-text {
            margin: 0;
            color: #224354;
            font-size: 14px;
            line-height: 1.35;
            max-width: 920px;
        }

        .cookie-banner-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .cookie-btn {
            border-radius: 999px;
            min-height: 40px;
            min-width: 118px;
            padding: 8px 14px;
            border: 2px solid transparent;
            background: #fff;
            color: #122333;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .cookie-btn-manage {
            background: #d5aaa3;
            color: #fff;
            border-color: #d5aaa3;
        }

        .cookie-btn-decline {
            border-color: #2e4e5b;
            color: #2e4e5b;
        }

        .cookie-btn-accept {
            background: #29586a;
            color: #fff;
            border-color: #29586a;
        }

        .cookie-btn-hide {
            background: transparent;
            border-color: #c7d2d9;
            color: #35576a;
        }

        .cookie-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(12, 34, 49, 0.16);
        }

        .cookie-modal {
            position: fixed;
            inset: 0;
            background: rgba(8, 23, 32, 0.55);
            z-index: 1500;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.24s ease;
        }

        .cookie-modal.active {
            display: flex;
        }

        .cookie-modal.is-active {
            opacity: 1;
        }

        .cookie-modal-card {
            width: min(720px, 100%);
            max-height: min(90vh, 760px);
            overflow-y: auto;
            background: #fff;
            border-radius: 18px;
            border: 1px solid rgba(28, 63, 80, 0.12);
            box-shadow: 0 20px 40px rgba(2, 26, 38, 0.2);
            padding: 24px;
            transform: translateY(18px) scale(0.98);
            transition: transform 0.24s ease;
        }

        .cookie-modal.is-active .cookie-modal-card {
            transform: translateY(0) scale(1);
        }

        .cookie-modal-card h3 {
            margin: 0 0 6px;
            color: var(--deep);
        }

        .cookie-modal-subtitle {
            margin: 0 0 18px;
            color: var(--text-mid);
            font-size: 14px;
        }

        .cookie-option {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 14px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid rgba(28, 63, 80, 0.12);
        }

        .cookie-option h4 {
            margin: 0 0 4px;
            font-size: 15px;
            color: var(--text-dark);
        }

        .cookie-option p {
            margin: 0;
            font-size: 13px;
            color: var(--text-mid);
        }

        .cookie-option input[type="checkbox"] {
            width: 20px;
            height: 20px;
        }

        .cookie-modal-actions {
            margin-top: 20px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .cookie-settings-trigger {
            position: fixed;
            left: 18px;
            bottom: 18px;
            z-index: 1350;
            border: 1px solid #b7c5cd;
            background: #fff;
            color: #16394b;
            border-radius: 999px;
            padding: 8px 13px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(8, 23, 32, 0.18);
        }

        .cookie-settings-trigger:hover {
            background: #eef5f8;
        }

        .cookie-banner-visible .cookie-settings-trigger {
            bottom: 86px;
        }


        /* ===== STEPS ===== */
        .th-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 1rem; }
        .th-steps article { background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 100%); border-radius: 16px; padding: 2.5rem 2rem; box-shadow: 0 6px 24px rgba(10,49,66,.1); border: 1px solid rgba(10,49,66,.08); transition: all var(--transition-smooth); }
        .th-steps article:hover { transform: translateY(-10px); box-shadow: 0 16px 48px rgba(10,49,66,.18); border-color: rgba(232,74,72,.15); }
        .th-step-link { display: flex; flex-direction: column; align-items: center; height: 100%; text-align: center; }
        .th-step-link:focus-visible { outline: 3px solid rgba(232, 74, 72, .32); outline-offset: 6px; border-radius: 12px; }
        .th-steps span { display: inline-block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 auto .75rem; }
        .th-steps h3 { margin: 0 0 .75rem; color: var(--text-dark); font-weight: 700; text-align: center; }
        .th-steps p { color: var(--text-mid); font-size: .95rem; line-height: 1.8; font-weight: 500; text-align: center; }
/* ===== CTA BAND â€” frosted white card on sand dollar bg ===== */
        .th-contact-band {
            position: relative;
            padding: 5rem 0;
            padding-top: calc(clamp(50px, 7vw, 100px) + 3rem);
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .th-contact-band-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .th-contact-band-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .th-contact-band-image {
            filter: sepia(.15) saturate(.8) brightness(.95);
        }
        .th-contact-card {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, .97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3.5rem 3rem;
            max-width: 620px;
            margin: 0 auto;
            text-align: center;
            box-shadow: 0 24px 64px rgba(10, 49, 66, .22);
            border: 1px solid rgba(255,255,255,.7);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .th-contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 32px 80px rgba(10, 49, 66, .28);
        }
        .th-contact-card h2 {
            color: var(--deep);
            margin-bottom: 1rem;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
        }
        .th-contact-card p {
            color: var(--mid);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: .98rem;
            font-weight: 500;
        }
        .th-pink-btn {
            background: linear-gradient(135deg, var(--pink) 0%, var(--pink-hover) 100%);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-size: .85rem;
            letter-spacing: .06em;
            font-weight: 600;
            transition: all var(--transition-smooth);
            box-shadow: 0 8px 20px rgba(232, 74, 72, .28);
        }
        .th-pink-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(232, 74, 72, .38);
        }

        /* ===== FOOTER ===== */
        .th-footer {
            background: linear-gradient(135deg, #2a7f94 0%, #318ba3 50%, #3a97b1 100%);
            color: rgba(255, 255, 255, .98);
            padding: 4.7rem 0 0;
            box-shadow: inset 0 2px 8px rgba(0,0,0,.08);
        }
        .th-footer-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(260px, .9fr);
            gap: 4rem;
            align-items: start;
        }
        .th-footer-brand {
            max-width: 30rem;
        }
        .th-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: #fff5ee;
            text-decoration: none !important;
            margin-bottom: 1.35rem;
        }
        .th-footer-logo-icon {
            width: 4.5rem;
            height: 4.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 1.35rem;
            background: rgba(255, 245, 238, .1);
            border: 1px solid rgba(255, 245, 238, .18);
            font-family: var(--font-body);
            font-size: 1.45rem;
            font-weight: 700;
            letter-spacing: .04em;
            color: #fff5ee;
            box-shadow: inset 0 0 0 1px rgba(255, 245, 238, .05);
        }
        .th-footer-logo-text {
            display: flex;
            flex-direction: column;
            gap: .15rem;
        }
        .th-footer-logo-name {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(2.45rem, 4vw, 4rem);
            line-height: .92;
            color: #fff5ee;
            letter-spacing: -.02em;
        }
        .th-footer-logo-subtitle {
            display: block;
            font-family: var(--font-body);
            font-size: .82rem;
            text-transform: uppercase;
            letter-spacing: .24em;
            color: #e2b2a0;
            margin-top: .2rem;
        }
        .th-footer h4 {
            color: #fff5ee;
            font-size: 1.1rem;
            font-family: var(--font-body);
            font-weight: 400;
            margin-bottom: 1.25rem;
        }
        .th-footer-tagline {
            font-size: 1.05rem;
            max-width: 24rem;
            margin-bottom: 1.8rem;
            color: rgba(255, 245, 238, .92);
            line-height: 1.55;
        }
        .th-footer p {
            margin-bottom: .7rem;
            font-size: 1rem;
            color: rgba(255, 245, 238, .92);
            line-height: 1.55;
            font-weight: 500;
        }
        .th-footer a {
            color: rgba(255, 245, 238, .98);
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: rgba(255, 245, 238, .45);
            transition: all var(--transition-smooth);
            font-weight: 500;
        }
        .th-footer a:hover {
            color: #fff5ee;
            text-decoration-color: #fff5ee;
        }

        .th-footer-links-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }
        .th-footer-links p { margin-bottom: .85rem; }
        .th-footer-links-secondary {
            padding-top: 2.45rem;
        }
        .th-footer-links-secondary h4 {
            display: none;
        }

        .th-footer-contact {
            max-width: 18rem;
        }

        .th-footer-social {
            display: flex;
            gap: 1rem;
            margin-top: .4rem;
        }
        .th-footer-social a {
            width: 2.4rem;
            height: 2.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: rgba(255, 245, 238, .98);
            font-size: 1.15rem;
            transition: all var(--transition-smooth);
            text-decoration: none !important;
            background: rgba(255, 245, 238, .12);
            border: 1.5px solid rgba(255, 245, 238, .22);
            box-shadow: 0 4px 12px rgba(0,0,0,.1);
        }
        .th-footer-social a:hover { 
            color: #fff5ee; 
            background: rgba(255, 200, 180, .25); 
            transform: translateY(-4px) scale(1.12); 
            box-shadow: 0 10px 28px rgba(232,74,72,.22);
            border-color: rgba(255, 200, 180, .4);
        }

        .th-footer-rule {
            height: 1px;
            background: rgba(255, 245, 238, .3);
            margin: 3rem 1.5rem 0;
        }
        .th-footer-bottom {
            text-align: center;
            padding: 1.9rem 1.5rem 2.25rem;
            font-size: .8rem;
            color: rgba(255, 245, 238, .68);
        }
        .th-footer-bottom p { margin-bottom: .55rem; }
        .th-disclaimer {
            font-size: .72rem;
            max-width: 64rem;
            margin: .85rem auto 0;
            line-height: 1.65;
        }

        /* ===== SCROLL TOP ===== */
        .scroll-top { 
            position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; 
            display: flex; align-items: center; justify-content: center; 
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); 
            color: var(--white); border-radius: 50%; cursor: pointer; 
            opacity: 0; transform: translateY(10px) scale(0.8); 
            transition: all var(--transition-smooth); 
            box-shadow: 0 8px 28px rgba(10,49,66,.28); 
            z-index: 100; border: 0; padding: 0; font-size: 1.2rem; 
        }
        .scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); }
        .scroll-top:hover { 
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); 
            transform: translateY(-6px) scale(1.12); 
            box-shadow: 0 14px 40px rgba(232,74,72,.34); 
        }
        .th-contact-cta-row { margin-top: 2.5rem; }
        .th-contact-phone { margin-top: .75rem; }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .fade-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
        .fade-in.visible { opacity: 1; transform: none; }
        .th-home-copy { animation: fadeUp .8s ease .2s both; }
        .th-home-image { animation: fadeUp .8s ease .5s both; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .th-provider-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
            .th-provider-image { height: 360px; }
            .th-home-hero-grid { grid-template-columns: 1fr; padding: 8rem 1.5rem 6rem; text-align: center; }
            .th-home-copy > p { margin-left: auto; margin-right: auto; }
            .th-home-image { max-width: 480px; margin: 0 auto; }
            .th-about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
            .th-image-card { max-width: 500px; margin: 0 auto; }
            .th-provider-grid { grid-template-columns: 1fr; text-align: center; max-width: 600px; }
            .th-provider-photo img { height: 400px; }
            .th-provider-info .th-eyebrow, .th-provider-info h2 { text-align: center; }
            .th-home-provider-section .th-provider-grid { gap: 1.4rem; }
            .th-home-provider-section .th-provider-photo { max-width: 470px; margin: 0 auto; }
            .th-home-provider-section .th-provider-photo img { height: 360px; object-position: center top; }
            .th-home-provider-section .th-provider-info p { margin-left: auto; margin-right: auto; }
            .th-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
            .th-footer-brand { grid-column: 1 / -1; max-width: 38rem; }
            .th-footer-contact { max-width: none; }
        }
        @media (max-width: 768px) {
            .th-provider-showcase { gap: 1.8rem; }
            .th-provider-card { padding: 0; }
            .th-provider-card-content { padding: 1.5rem; }
            .th-provider-image { height: 300px; }
            .th-nav-links, .th-home-nav-cta { display: none; }
            .mobile-menu-btn { display: block; }
            .th-steps { grid-template-columns: 1fr; gap: 1.5rem; }
            .th-home-process .th-intro { margin-bottom: 1.4rem; }
            .th-home-process .th-intro h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); line-height: 1.12; }
            .th-home-process .th-steps { gap: 1rem; margin-top: 0; }
            .th-home-process .th-steps article {
                display: grid;
                grid-template-columns: auto minmax(0, 1fr);
                gap: .65rem .95rem;
                align-items: start;
                padding: 1.35rem 1.1rem;
                border-radius: 18px;
            }
            .th-home-process .th-step-link {
                display: grid;
                grid-template-columns: auto minmax(0, 1fr);
                gap: inherit;
                align-items: inherit;
            }
            .th-home-process .th-steps span {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 2.65rem;
                min-width: 2.65rem;
                height: 2.65rem;
                margin: 0;
                border-radius: 999px;
                background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
                -webkit-text-fill-color: initial;
                color: var(--white);
                font-size: 1rem;
                letter-spacing: .08em;
                line-height: 1;
                box-shadow: 0 8px 18px rgba(232, 74, 72, .22);
            }
            .th-home-process .th-steps h3 {
                margin: .1rem 0 0;
                font-size: clamp(1.15rem, 5vw, 1.4rem);
                line-height: 1.2;
            }
            .th-home-process .th-steps p {
                grid-column: 1 / -1;
                font-size: .98rem;
                line-height: 1.65;
            }
            .th-home-hero-grid { padding: 7rem 1.5rem 5rem; }
            .th-section { padding: 4rem 0; }
            .th-contact-card { padding: 2.5rem 1.5rem; margin: 0 1rem; }
            .th-footer { padding-top: 3.6rem; }
            .th-footer-grid { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; }
            .th-footer-links-group { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
            .th-footer-links-secondary { padding-top: 0; }
            .th-footer-contact, .th-footer-brand { max-width: none; }
            .th-footer-logo { justify-content: center; }
            .th-footer-social { justify-content: center; }
            .th-footer-grid { gap: 2rem; }
            .th-footer-logo-icon { width: 3.8rem; height: 3.8rem; border-radius: 1.1rem; font-size: 1.2rem; }
            .th-footer-logo-name { font-size: clamp(2.1rem, 10vw, 2.9rem); }
            .th-footer-logo-subtitle { font-size: .74rem; letter-spacing: .18em; }
            .th-footer-tagline { margin-bottom: 1.2rem; font-size: .97rem; max-width: 22rem; }
            .th-footer p { font-size: .95rem; }
            .th-footer-social a { width: 2.1rem; height: 2.1rem; font-size: 1rem; }
            .th-provider-photo img { height: 340px; }
        }
        @media (max-width: 480px) {
            .th-provider-showcase { gap: 1.5rem; margin-top: 2rem; }
            .th-provider-image { height: 240px; }
            .th-provider-card h3 { font-size: 1.1rem; }
            .th-provider-card-content { padding: 1.2rem; }
            .th-home-hero-grid { padding: 6rem 1rem 4rem; }
            h1 { font-size: 2rem; }
            .th-footer-grid { text-align: left; }
            .th-footer-logo { justify-content: flex-start; }
            .th-footer-links-group { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
            .th-footer-links-secondary { padding-top: 0; }
            .th-footer-social { justify-content: flex-start; }
            .th-footer-contact { max-width: 100%; }
            .th-footer-bottom { padding-left: 1rem; padding-right: 1rem; }
            .th-footer-links p { margin-bottom: .7rem; }
            .th-footer a { text-underline-offset: 3px; }
            .th-footer { padding-top: 3rem; }
            .th-footer-grid { gap: 1.75rem; }
            .th-footer-logo { gap: .75rem; margin-bottom: .9rem; }
            .th-footer-logo-icon { width: 3.1rem; height: 3.1rem; border-radius: .95rem; font-size: 1rem; }
            .th-footer-logo-name { font-size: clamp(1.85rem, 10vw, 2.3rem); }
            .th-footer-logo-subtitle { font-size: .66rem; letter-spacing: .14em; }
            .th-footer-tagline { margin-bottom: 1rem; font-size: .92rem; }
            .th-footer p { font-size: .9rem; line-height: 1.5; }
            .th-footer-social a { width: 2rem; height: 2rem; font-size: .95rem; }
            .th-disclaimer { font-size: .7rem; line-height: 1.6; }
        }

        /* ===== Tide-style hero/nav override (design-only) ===== */
        body {
            background: linear-gradient(135deg, #f6f2ed 0%, #f0e8e0 100%);
            color: #0a1f28;
        }

        h1, h2, h3, h4 {
            color: #0a3142;
        }

        .btn {
            text-transform: none;
            letter-spacing: 0;
            border-radius: 999px;
        }

        .th-announcement {
            display: none;
        }

        .th-header {
            position: fixed;
            top: 30px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
        }

        .th-header.scrolled {
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
        }

        .th-nav {
            position: relative;
            z-index: 1001;
            width: calc(100% - 56px);
            max-width: 1720px;
            margin: 0 auto;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(251, 248, 244, 0.95);
            border: 1px solid rgba(35, 69, 82, 0.09);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 18px rgba(18, 46, 58, 0.06);
            backdrop-filter: blur(8px);
        }

        .logo-icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: linear-gradient(135deg, #1a3a48 0%, #0a3142 100%);
            border: 1.5px solid rgba(26, 58, 72, 0.3);
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(10, 49, 66, 0.2);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        .logo-icon::before {
            content: 'RH';
            color: #ffffff;
        }

        .logo-name {
            color: #0a3142;
            font-size: 33px;
            font-weight: 600;
            line-height: .94;
            letter-spacing: -0.028em;
            transition: all var(--transition-smooth);
        }

        .logo-tagline {
            display: block;
            font-family: var(--font-body);
            font-size: 9.5px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #2b5f70;
            transition: all var(--transition-smooth);
            font-weight: 600;
        }

        .logo-container:hover .logo-icon,
        .logo-container:focus-visible .logo-icon {
            transform: translateY(-3px) scale(1.1) rotate(-4deg);
            background: linear-gradient(135deg, #0a3142 0%, #082535 100%);
            box-shadow: 0 12px 28px rgba(10, 49, 66, 0.32);
            border-color: rgba(10, 49, 66, 0.5);
        }

        .logo-container:hover .logo-name,
        .logo-container:focus-visible .logo-name {
            color: #082535;
            transform: translateX(2px);
        }

        .logo-container:hover .logo-tagline,
        .logo-container:focus-visible .logo-tagline {
            color: #406878;
        }

        .th-nav-links {
            margin: 0;
            justify-self: center;
            gap: 34px;
            align-items: center;
        }

        .th-nav-links a {
            color: #2d5165;
            font-size: 15px;
            font-family: var(--font-body);
            font-weight: 500;
            letter-spacing: .01em;
            position: relative;
        }

        .th-nav-links a::after {
            background: linear-gradient(90deg, #355f70 0%, #1a3a48 100%);
            height: 2px;
            bottom: -6px;
            border-radius: 1px;
        }

        .th-nav-links a:hover {
            color: #0a3142;
            font-weight: 600;
        }

        .th-home-nav-cta {
            background: linear-gradient(135deg, #2b4f5f 0%, #1a3a48 100%);
            border: 1.5px solid #2b4f5f;
            color: #f7f2ed;
            font-size: 14px;
            font-family: var(--font-body);
            padding: 11px 28px;
            white-space: nowrap;
            font-weight: 600;
            box-shadow: 0 6px 16px rgba(43,79,95,.24);
            transition: all var(--transition-smooth);
        }

        .th-home-nav-cta:hover {
            background: linear-gradient(135deg, #1a3a48 0%, #0a2a36 100%);
            border-color: #0a2a36;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(43,79,95,.32);
        }

        .mobile-menu-btn {
            display: none;
            color: #1c3f50;
            background: transparent;
            border: 0;
            padding: 0;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1002;
        }

        .mobile-menu-icon {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 22px;
            height: 16px;
            position: relative;
            transition: width var(--transition), height var(--transition);
        }

        .mobile-menu-icon span {
            display: block;
            width: 100%;
            height: 1.5px;
            border-radius: 999px;
            background: #355f70;
            transition: transform var(--transition), width var(--transition);
        }

        .mobile-menu-btn.is-open .mobile-menu-icon {
            width: 18px;
            height: 18px;
            gap: 0;
        }

        .mobile-menu-btn.is-open .mobile-menu-icon span {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            transform-origin: center;
        }

        .mobile-menu-btn.is-open .mobile-menu-icon span:first-child {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .mobile-menu-btn.is-open .mobile-menu-icon span:last-child {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        body.mobile-menu-open {
            overflow: hidden;
        }

        .mobile-nav {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: stretch;
            justify-content: stretch;
            background: #f6f2ed;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .22s ease, visibility .22s ease;
        }

        .mobile-nav.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-nav ul {
            position: relative;
            width: 100%;
            min-height: 100svh;
            padding: 132px 24px 28px;
            margin: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            text-align: center;
        }

        .mobile-nav li {
            margin: 0;
        }

        .mobile-nav li:last-child {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 22px;
            display: flex;
            justify-content: center;
        }

        .mobile-nav a {
            color: #1c3f50;
            font-size: 27px;
            font-family: var(--font-body);
            font-weight: 400;
            letter-spacing: 0;
            line-height: 1.12;
        }

        .mobile-nav a:hover {
            color: #0f2e3d;
        }

        .mobile-nav .mobile-cta {
            width: min(100%, 322px);
            min-width: 0;
            background: linear-gradient(135deg, #0a3142 0%, #1a5f7a 100%) !important;
            color: #fff !important;
            border: 1.5px solid #0a3142 !important;
            padding: 16px 28px;
            font-size: 14px;
            font-family: var(--font-body);
            line-height: 1.1;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(10,49,66,.28) !important;
            transition: all var(--transition-smooth) !important;
        }
        
        .mobile-nav .mobile-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(10,49,66,.38) !important;
        }

        .th-home-hero {
            background: linear-gradient(135deg, #f4f1ec 0%, #ece5de 100%);
            min-height: 850px;
            height: 850px;
            padding-top: 0;
            overflow: hidden;
        }

        .th-home-hero::before {
            display: none;
        }

        .th-home-hero-grid {
            max-width: none;
            margin: 0;
            padding: 0;
            gap: 0;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            min-height: 850px;
            height: 850px;
            align-items: stretch;
        }

        .th-home-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 148px 44px 100px;
            animation: none;
        }

        .th-home-kicker {
            margin: 0 0 20px;
            padding: 0;
            border: 0;
            background: transparent;
            border-radius: 0;
            text-transform: none;
            letter-spacing: 0;
            color: #355f70;
            font-size: clamp(17px, 0.98vw, 23px);
            font-weight: 400;
        }

        .th-home-copy h1 {
            margin: 0;
            max-width: 600px;
            color: #315868;
            font-size: clamp(54px, 3.35vw, 74px);
            line-height: .97;
            letter-spacing: -0.032em;
            font-weight: 500;
            text-wrap: balance;
        }

        .th-home-headline-accent {
            display: inline-block;
            color: #274b59;
            box-shadow: inset 0 -0.18em 0 rgba(217, 183, 173, 0.58);
            padding: 0 0.08em;
            border-radius: 0.12em;
        }

        .th-home-copy > p {
            margin: 22px 0 0;
            max-width: 560px;
            color: #3c6571;
            font-size: clamp(15.5px, 0.98vw, 19px);
            line-height: 1.56;
        }

        .th-home-statement {
            max-width: 500px;
            color: #496f7a !important;
            font-size: clamp(14px, 0.9vw, 17px) !important;
            line-height: 1.46 !important;
            margin-top: 26px !important;
        }

        .th-home-supporting-copy {
            max-width: 540px;
            color: #355f70 !important;
            font-size: clamp(15.5px, 0.98vw, 19px) !important;
            line-height: 1.56 !important;
            margin-top: 14px !important;
        }

        .th-home-secondary-btn {
            margin-top: 34px;
            background: linear-gradient(135deg, #d8a49d 0%, #cb938c 100%);
            border: 1.5px solid #d8a49d;
            color: #f7f2ed;
            font-size: clamp(14px, 0.9vw, 17px);
            padding: 11px 30px;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(216,164,157,.28);
            transition: all var(--transition-smooth);
        }

        .th-home-secondary-btn:hover {
            background: linear-gradient(135deg, #cb938c 0%, #be8279 100%);
            border-color: #cb938c;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(216,164,157,.38);
        }

        .th-home-image {
            max-height: none;
            height: 100%;
            min-height: 100%;
            align-self: stretch;
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
            position: relative;
            animation: none;
        }

        .th-home-image::after {
            display: none;
        }

        .th-home-image img {
            width: 100%;
            height: 100%;
            min-height: 0;
            object-fit: cover;
            object-position: center center;
            border-radius: 0;
            filter: saturate(0.48) sepia(0.18) brightness(0.96) contrast(0.98);
        }

        .th-section {
            padding: 2.6rem 0;
        }

        .th-about-preview {
            gap: 2.2rem;
        }

        .th-image-card img {
            min-height: 320px;
        }

        .th-accordion summary {
            padding: .95rem 1.2rem;
            font-size: 1.05rem;
        }

        .th-accordion details > div {
            padding: 0 1.2rem 1rem;
        }

        .th-home-provider-section {
            padding: 3.6rem 0 3.9rem;
        }

        .th-home-provider-section .th-provider-photo img {
            height: 520px;
        }

        .th-steps {
            gap: 1.2rem;
        }

        .th-steps article {
            padding: 1.6rem 1.35rem;
        }

        .th-home-process .th-steps article {
            padding: 1.25rem 1rem;
            gap: .75rem .85rem;
        }

        .th-home-process .th-steps span {
            width: 2.45rem;
            min-width: 2.45rem;
            height: 2.45rem;
            font-size: .94rem;
        }

        .th-home-process .th-steps h3 {
            font-size: 1.08rem;
        }

        .th-home-process .th-steps p {
            font-size: .94rem;
            line-height: 1.6;
        }

        .th-contact-band {
            padding: 2.8rem 0;
            padding-top: calc(clamp(50px, 7vw, 100px) + 2rem);
            min-height: 300px;
        }

        .th-contact-card {
            padding: 2.2rem 1.8rem;
            max-width: 560px;
        }

        .th-footer {
            padding: 2.8rem 0 0;
        }

        .th-footer-rule {
            margin: 2rem 1.5rem 0;
        }

        .th-section-dark {
            background: linear-gradient(180deg, #336979 0%, #2b5a69 100%);
            color: #f4f0ea;
        }

        .th-section-soft {
            background: linear-gradient(135deg, #e8ddd2 0%, #e0d0c4 100%);
        }

        .th-section-light {
            background: linear-gradient(135deg, #f6f2ed 0%, #f0e8e0 100%);
        }

        .th-who-help-section {
            background: linear-gradient(180deg, #2b5a69 0%, #1a6378 50%, #1a5f7a 100%);
            color: #f5ede4;
            padding: 5.2rem 0 4.8rem;
            margin-top: -6px;
        }

        .th-who-help-section .th-eyebrow {
            color: rgba(255,255,255,.9);
            text-transform: none;
            letter-spacing: .03em;
            font-size: 1.1rem;
            margin-bottom: .95rem;
            font-weight: 600;
        }

        .th-who-help-section .th-intro h2 {
            color: #f5ede4;
            max-width: 700px;
            margin: 0 auto 1.2rem;
            font-size: clamp(1.92rem, 3vw, 3.05rem) !important;
            line-height: 1.08;
            font-weight: 500;
            letter-spacing: -0.026em;
        }

        .th-who-help-section .th-intro .th-who-help-lead {
            max-width: 580px;
            font-size: clamp(1.28rem, 1.95vw, 1.72rem) !important;
            line-height: 1.28;
            letter-spacing: -0.012em;
            font-weight: 500;
        }

        .th-who-help-section .th-intro > p {
            max-width: 860px;
            color: rgba(245, 237, 228, .92);
            font-size: clamp(1rem, 1.22vw, 1.38rem);
            line-height: 1.5;
            margin-bottom: 2.5rem;
        }

        .th-who-help-section .th-accordion-wrap {
            max-width: 820px;
        }

        .th-who-help-section .th-accordion {
            background: linear-gradient(135deg, #dcccc5 0%, #d4bfb7 100%);
            border-radius: 30px;
            overflow: hidden;
            padding: .3rem 0;
            box-shadow: 0 8px 24px rgba(10,49,66,.12);
        }

        .th-who-help-section .th-accordion details {
            border: none;
            border-radius: 0;
            margin: 0;
            background: transparent;
        }

        .th-who-help-section .th-accordion details[open] {
            background: rgba(255,255,255,.08);
            border-color: transparent;
        }

        .th-who-help-section .th-accordion details + details {
            border-top: 1.5px solid rgba(10,49,66,.14);
        }

        .th-who-help-section .th-accordion summary {
            position: relative;
            padding: 1.42rem 1.6rem 1.42rem 4.4rem;
            font-family: var(--font-body);
            font-size: clamp(1.18rem, 1.45vw, 1.68rem);
            color: #0a3142;
            font-weight: 600;
            justify-content: flex-start;
            cursor: pointer;
            transition: all var(--transition-smooth);
        }

        .th-who-help-section .th-accordion details > div a:hover {
            color: #082535;
            border-color: rgba(8,37,53,.65);
        }

        @media (max-width: 1100px) {
            .logo-name {
                font-size: 27px;
            }

            .th-nav-links a {
                font-size: 14px;
            }

            .th-home-nav-cta {
                font-size: 13px;
            }

            .th-home-copy h1 {
                font-size: clamp(48px, 5.2vw, 68px);
            }

            .th-home-copy > p {
                font-size: clamp(16px, 1.18vw, 20px);
            }
        }

        @media (max-width: 980px) {
            .th-header {
                top: 12px;
            }

            .th-nav {
                width: calc(100% - 22px);
                padding: 6px 12px;
                min-height: 50px;
            }

            .th-nav-links,
            .th-home-nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: inline-flex;
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
                justify-self: end;
            }

            .mobile-nav ul {
                padding-top: 136px;
            }

            .logo-icon {
                width: 34px;
                height: 34px;
                border-radius: 11px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .logo-icon::before {
                font-size: 12px;
                font-weight: 800;
                content: 'RH';
                color: #ffffff;
            }

            .logo-name {
                font-size: 17px;
                line-height: 1;
            }

            .logo-tagline {
                display: none;
            }

            .th-home-hero {
                min-height: 620px;
                height: auto;
                background: url('../images/home/hero-palm-ocean.jpg') center 54% / cover no-repeat;
            }

            .th-home-hero-grid {
                display: block;
                min-height: 620px;
                position: relative;
                padding: 0;
            }

            .th-home-image {
                display: none;
            }

            .th-home-copy {
                position: relative;
                z-index: 2;
                max-width: calc(100% - 12px);
                margin: 158px auto 0;
                border: 1px solid rgba(22, 55, 70, 0.12);
                border-radius: 30px;
                box-shadow: 0 8px 24px rgba(12, 40, 52, 0.12);
                background: rgba(247, 244, 239, 0.97);
                padding: 34px 22px 28px;
            }

            .th-home-kicker {
                font-size: 12px;
                margin-bottom: 16px;
            }

            .th-home-copy h1 {
                font-size: clamp(28px, 8vw, 37px);
                line-height: 1.01;
                max-width: 296px;
            }

            .th-home-copy > p {
                font-size: 13px;
                max-width: 286px;
                margin-top: 16px;
                line-height: 1.48;
            }

            .th-home-statement {
                margin-top: 18px !important;
            }

            .th-home-supporting-copy {
                margin-top: 12px !important;
            }

            .th-home-secondary-btn {
                font-size: 13px;
                padding: 11px 28px;
                margin-top: 22px;
            }

            .th-who-help-section .th-intro h2 {
                max-width: 320px;
                font-size: clamp(1.5rem, 6.7vw, 2.02rem) !important;
                line-height: 1.12;
            }

            .th-who-help-section .th-intro .th-who-help-lead {
                max-width: 296px;
                font-size: clamp(1.05rem, 4.9vw, 1.32rem) !important;
                line-height: 1.34;
                letter-spacing: -0.005em;
            }

            .th-who-help-section .th-intro > p {
                font-size: 1.05rem;
                line-height: 1.5;
            }

            .th-who-help-section .th-accordion {
                border-radius: 24px;
            }

            .th-who-help-section .th-accordion summary {
                font-size: 1.02rem;
                padding: 1.15rem 1.15rem 1.15rem 3.4rem;
            }

            .th-who-help-section .th-accordion summary::after {
                left: 1.32rem;
                width: 9px;
                height: 9px;
            }

            .th-who-help-section .th-accordion details > div {
                padding: 0 1.15rem 1rem 3.4rem;
            }

            .th-home-provider-section {
                padding: 2.8rem 0 3.1rem;
            }

            .th-home-provider-section .th-provider-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                max-width: 420px;
                margin: 0 auto;
                text-align: center;
            }

            .th-home-provider-section .th-provider-info .th-eyebrow,
            .th-home-provider-section .th-provider-info h2 {
                text-align: center;
            }

            .th-home-provider-section .th-provider-info .th-eyebrow {
                font-size: 1.05rem;
                margin-bottom: .55rem;
            }

            .th-home-provider-section .th-provider-info h2 {
                font-size: clamp(1.8rem, 7vw, 2.4rem);
                line-height: 1.08;
                margin-bottom: .75rem;
            }

            .th-home-provider-section .th-provider-photo img {
                height: 250px;
                object-position: center top;
            }

            .th-home-provider-section .th-provider-photo {
                max-width: 320px;
                margin: 0 auto;
            }

            .th-home-provider-section .th-provider-info p {
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: .85rem;
                margin-left: auto;
                margin-right: auto;
            }

            .th-home-provider-section .th-ghost-btn {
                margin-top: .4rem;
            }
        }

@media (max-width: 420px) {
            .th-header {
                top: 16px;
            }

            .th-nav {
                width: calc(100% - 24px);
                min-height: 48px;
                padding: 7px 11px;
            }

            .logo-container {
                gap: 8px;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .logo-icon::before {
                font-size: 13px;
                font-weight: 800;
                content: 'RH';
                color: #ffffff;
            }

            .logo-name {
                font-size: 18px;
            }

            .mobile-menu-btn {
                width: 34px;
                height: 34px;
                min-width: 34px;
                min-height: 34px;
            }

            .mobile-menu-icon {
                width: 20px;
                height: 15px;
                gap: 5px;
            }

            .mobile-menu-btn.is-open .mobile-menu-icon {
                width: 18px;
                height: 18px;
            }

            .mobile-nav ul {
                padding: 120px 20px 24px;
                gap: 16px;
            }

            .mobile-nav a {
                font-size: 26px;
            }

            .mobile-nav li:last-child {
                left: 20px;
                right: 20px;
                bottom: 20px;
            }

            .mobile-nav .mobile-cta {
                width: min(100%, 320px);
                padding: 15px 24px;
                font-size: 13px;
            }

            .th-home-hero {
                min-height: 650px;
                background-position: center 54%;
            }

            .th-home-hero-grid {
                min-height: 650px;
                position: relative;
                padding: 0;
            }

            .th-home-copy {
                position: absolute;
                left: 5px;
                right: 5px;
                max-width: none;
                min-height: 392px;
                margin: 0;
                top: 176px;
                padding: 34px 22px 24px;
                z-index: 4;
            }

            .th-home-kicker {
                font-size: 12px;
                margin-bottom: 18px;
            }

            .th-home-copy h1 {
                font-size: clamp(30px, 8.55vw, 38px);
                max-width: 300px;
                line-height: .99;
            }

            .th-home-copy > p {
                font-size: 13.2px;
                max-width: 292px;
                margin-top: 16px;
                line-height: 1.46;
            }

            .th-home-secondary-btn {
                min-width: 214px;
                padding: 13px 28px;
                margin-top: 22px;
                font-size: 13px;
            }

            .th-home-provider-section .th-provider-photo img {
                height: 210px;
            }

            .th-home-provider-section .th-provider-photo {
                max-width: 300px;
            }

            .th-home-provider-section .th-provider-info h2 {
                font-size: 1.5rem;
            }

            .th-home-provider-section .th-provider-info p {
                font-size: .95rem;
            }
        }

        /* ===== RIGHT HEALTH POLISH OVERRIDES ===== */
        :root {
            --deep: #244653;
            --mid: #41636f;
            --teal: #5d808a;
            --teal-light: #7d9ea6;
            --sage: #9ab3ac;
            --sand: #e4cfc3;
            --cream: #f2e7df;
            --warm-white: #fbf6f1;
            --text-dark: #20343d;
            --text-mid: #47606a;
            --accent: #c98f83;
            --accent-hover: #bb7f73;
            --pink: #c98f83;
            --pink-hover: #bb7f73;
            --shadow-sm: 0 10px 24px rgba(26, 55, 66, 0.07);
            --shadow-md: 0 18px 46px rgba(26, 55, 66, 0.12);
            --shadow-lg: 0 24px 70px rgba(26, 55, 66, 0.16);
            --radius: 16px;
            --radius-lg: 28px;
        }

        body {
            background:
                radial-gradient(circle at top left, rgba(201, 143, 131, 0.08), transparent 26%),
                linear-gradient(180deg, #fbf6f1 0%, #f8f3ee 38%, #fcfaf7 100%);
            color: var(--text-dark);
        }

        .th-header {
            transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
        }

        .th-header.scrolled {
            background: rgba(251, 246, 241, 0.22);
            backdrop-filter: blur(14px);
            box-shadow: 0 12px 28px rgba(17, 38, 46, 0.08);
        }

        .th-nav {
            background: linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(251, 246, 241, 0.94));
            border: 1px solid rgba(36, 70, 83, 0.07);
            box-shadow: 0 12px 28px rgba(29, 56, 67, 0.08);
            backdrop-filter: blur(12px);
        }

        .logo-icon {
            background: linear-gradient(135deg, #315767 0%, #4f7684 100%);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
        }

        .logo-name {
            color: #2e4e5b;
            letter-spacing: -0.02em;
        }

        .logo-tagline {
            color: #73868d;
            letter-spacing: .18em;
        }

        .th-nav-links a {
            color: #355462;
        }

        .th-nav-links a::after {
            background: #b98a7b;
            height: 1px;
        }

        .th-home-nav-cta {
            background: linear-gradient(135deg, #3f6574 0%, #315666 100%);
            border: 1px solid rgba(49, 86, 102, 0.92);
            box-shadow: 0 10px 22px rgba(37, 67, 79, 0.14);
        }

        .th-home-nav-cta:hover {
            background: linear-gradient(135deg, #355867 0%, #274a58 100%);
            box-shadow: 0 14px 28px rgba(27, 50, 59, 0.16);
        }

        .th-home-hero {
            background:
                linear-gradient(180deg, rgba(32, 58, 68, 0.28), rgba(32, 58, 68, 0.12)),
                radial-gradient(circle at 18% 22%, rgba(251, 246, 241, 0.12), transparent 24%),
                url('../images/home/hero-palm-ocean.jpg') center 42% / cover no-repeat;
        }

        .th-home-hero::before {
            background:
                radial-gradient(ellipse 84% 60% at 76% 34%, rgba(154, 179, 172, 0.16) 0%, transparent 58%),
                radial-gradient(ellipse 46% 44% at 16% 82%, rgba(201, 143, 131, 0.13) 0%, transparent 54%);
        }

        .th-home-copy {
            background: linear-gradient(180deg, rgba(251, 246, 241, 0.98), rgba(247, 241, 235, 0.96));
            border: 1px solid rgba(34, 68, 82, 0.09);
            box-shadow: 0 24px 56px rgba(21, 46, 56, 0.14);
        }

        .th-home-kicker,
        .th-eyebrow {
            color: #b78373;
        }

        .th-home-copy h1,
        .th-intro h2,
        .th-provider-info h2 {
            letter-spacing: -0.02em;
        }

        .th-home-copy > p,
        .th-about-preview > div p,
        .th-provider-info p,
        .th-steps p {
            color: #4b6670;
        }

        .th-home-image {
            box-shadow: 0 28px 72px rgba(20, 45, 56, 0.18);
        }

        .th-home-image img {
            filter: saturate(0.88) sepia(0.08) brightness(0.98);
        }

        .th-section-light {
            background:
                linear-gradient(180deg, rgba(251, 246, 241, 0.98) 0%, rgba(247, 241, 235, 0.94) 100%);
        }

        .th-section-soft {
            background:
                radial-gradient(circle at top right, rgba(201, 143, 131, 0.09), transparent 26%),
                linear-gradient(180deg, #f1e3db 0%, #efddd5 100%);
        }

        .th-section-dark {
            background:
                radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 24%),
                linear-gradient(180deg, #406671 0%, #325560 100%);
        }

        .th-accordion details {
            background: rgba(255, 252, 248, 0.08);
            border-color: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
        }

        .th-accordion details[open] {
            background: rgba(255, 252, 248, 0.14);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .th-accordion summary {
            font-size: 1.26rem;
        }

        .th-steps article {
            background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,244,239,0.94));
            border-color: rgba(38, 69, 81, 0.08);
            box-shadow: 0 18px 42px rgba(28, 53, 62, 0.09);
        }

        .th-steps article:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 56px rgba(28, 53, 62, 0.14);
        }

        .th-home-provider-section {
            background:
                radial-gradient(circle at top right, rgba(255,255,255,.26), transparent 24%),
                linear-gradient(180deg, #ead8d2 0%, #e2cec8 100%);
        }

        .th-home-provider-section .th-provider-photo {
            background: rgba(255, 251, 248, 0.72);
            box-shadow: 0 22px 58px rgba(45, 72, 82, 0.12);
        }

        .th-home-provider-section .th-provider-photo img {
            filter: saturate(0.92) contrast(1.02);
        }

        .th-home-provider-section .th-provider-info p {
            color: #3e555c;
        }

        .th-ghost-btn {
            border-width: 1px;
            box-shadow: inset 0 0 0 1px rgba(53,95,112,0.04);
        }

        .th-contact-band {
            min-height: 460px;
        }

        .th-contact-band::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(252,248,243,0.08), rgba(31,53,61,0.08));
            pointer-events: none;
            z-index: 0;
        }

        .th-contact-card {
            background: rgba(252, 248, 243, 0.9);
            border: 1px solid rgba(41, 74, 86, 0.08);
            box-shadow: 0 24px 60px rgba(29, 52, 61, 0.12);
            backdrop-filter: blur(12px);
        }

        .th-pink-btn {
            background: linear-gradient(135deg, #d29b8e 0%, #c28478 100%);
            box-shadow: 0 12px 26px rgba(194, 132, 120, 0.22);
        }

        .th-pink-btn:hover {
            box-shadow: 0 16px 32px rgba(194, 132, 120, 0.26);
        }

        .th-footer {
            background:
                radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 18%),
                linear-gradient(180deg, #446b78 0%, #385b67 100%);
        }

        .th-footer-logo-icon {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.14);
        }

        .th-footer-rule {
            border-top-color: rgba(242, 233, 227, 0.34);
        }

        .th-footer a {
            text-underline-offset: 4px;
        }

        @media (max-width: 980px) {
            .th-nav {
                width: calc(100% - 18px);
                padding: 10px 12px;
            }

            .th-home-copy {
                box-shadow: 0 20px 44px rgba(23, 46, 56, 0.14);
            }

            .th-home-provider-section .th-provider-grid {
                gap: 3rem;
            }

            .th-contact-band {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .th-section {
                padding: 4.5rem 0;
            }

            .mobile-nav {
                background: linear-gradient(180deg, #fffcf8, #f5eee7);
            }

            .mobile-nav .mobile-cta {
                background: linear-gradient(135deg, #d29b8e 0%, #c28478 100%) !important;
            }
        }

        @media (max-width: 420px) {
            .th-nav {
                width: calc(100% - 18px);
                padding: 8px 10px;
                box-shadow: 0 10px 24px rgba(24, 48, 57, 0.1);
            }

            .logo-name {
                font-size: 17px;
            }

            .th-home-copy {
                left: 8px;
                right: 8px;
                top: 170px;
                min-height: 404px;
                padding: 32px 22px 26px;
            }

            .th-home-copy h1 {
                max-width: 304px;
            }

            .th-home-copy > p {
                max-width: 296px;
            }

            .th-footer {
                padding-top: 3.1rem;
            }
        }


/* =======================================================
   ENTERPRISE DESIGN SYSTEM — RightHealth Homepage v3.0
   Psychiatric Care · Trust · Calm · Professional
   ======================================================= */

/* --- Skip link (accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep, #244653);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 0 0 12px 12px;
    z-index: 99999;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: top .25s ease;
}
.skip-link:focus {
    top: 0;
}

/* --- Stagger reveal for fade-in elements --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.fade-in[data-stagger="1"] { transition-delay: .15s; }
.fade-in[data-stagger="2"] { transition-delay: .3s; }
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Foundation: Rendering ───────────────────────────── */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: rh-pageIn .6s ease both;
}
@keyframes rh-pageIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Focus & Selection ───────────────────────────────── */
:focus-visible {
    outline: 3px solid rgba(201, 143, 131, .5);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn:focus-visible {
    outline-offset: 5px;
    box-shadow: 0 0 0 5px rgba(201, 143, 131, .18);
}
::selection {
    background: rgba(201, 143, 131, .25);
    color: inherit;
}

/* ── Scroll Progress Indicator ───────────────────────── */
.rh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #c98f83, var(--mid, #1a5f7a));
    z-index: 10001;
    width: 0%;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── Smart Header: Frosted glass + auto-hide ─────────── */
.th-header {
    will-change: transform;
    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        background .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}
.th-header.header-hidden {
    transform: translateY(-110%);
    pointer-events: none;
}
.th-header.scrolled {
    background: rgba(255,255,255,.82) !important;
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow:
        0 1px 0 rgba(10,49,66,.04),
        0 4px 16px rgba(10,49,66,.06),
        0 12px 40px rgba(10,49,66,.04);
}

/* Nav pill: glass refinement */
.th-nav {
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.th-header.scrolled .th-nav {
    box-shadow: 0 16px 36px rgba(17, 38, 46, 0.1);
    border-color: rgba(36, 70, 83, 0.1);
}

/* ── Announcement Bar: Animated gradient ─────────────── */
.th-announcement {
    background: linear-gradient(92deg, #0a3142 0%, #1a5068 30%, #245d7a 50%, #1a5068 70%, #0a3142 100%);
    background-size: 300% 100%;
    animation: rh-announceBg 8s ease infinite;
    font-size: 14px;
    letter-spacing: .015em;
}
@keyframes rh-announceBg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Logo & Nav: Entrance animations ─────────────────── */
.logo-container {
    animation: rh-logoIn .7s cubic-bezier(.22,1,.36,1) .08s both;
}
@keyframes rh-logoIn {
    from { opacity: 0; transform: translateX(-16px) scale(.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
.logo-icon {
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.logo-container:hover .logo-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 24px rgba(233,74,73,.3), 0 0 0 4px rgba(233,74,73,.08);
}
/* Nav CTA: warm pulse glow */
.th-home-nav-cta {
    animation: rh-ctaPulse 3s ease-in-out 2s infinite;
}
@keyframes rh-ctaPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(201,143,131,.15); }
    50%      { box-shadow: 0 4px 24px rgba(201,143,131,.35), 0 0 0 6px rgba(201,143,131,.08); }
}

/* ── Buttons: Enterprise interactions ────────────────── */
.btn {
    position: relative;
    overflow: hidden;
    transition:
        transform .3s cubic-bezier(.22,1,.36,1),
        box-shadow .4s ease,
        background .3s ease,
        filter .3s ease;
}
.btn:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 4px 12px rgba(10,49,66,.1),
        0 8px 28px rgba(10,49,66,.12),
        0 16px 48px rgba(10,49,66,.06);
    filter: brightness(1.05);
}
.btn:active {
    transform: translateY(1px) scale(.98);
    box-shadow: 0 2px 8px rgba(10,49,66,.1);
    transition-duration: .1s;
}
/* Light sweep on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
    transition: left .6s ease;
    pointer-events: none;
}
.btn:hover::after {
    left: 100%;
}

/* ── Hero Section: Cinematic entrance ────────────────── */
.th-home-hero {
    will-change: auto;
    position: relative;
    overflow: hidden;
}
.th-home-image img {
    will-change: transform;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
/* Hero copy text stagger */
.th-home-copy .th-home-kicker {
    animation: rh-heroUp .8s cubic-bezier(.22,1,.36,1) .25s both;
}
.th-home-copy h1 {
    animation: rh-heroUp .8s cubic-bezier(.22,1,.36,1) .4s both;
}
.th-home-copy .th-home-supporting-copy {
    animation: rh-heroUp .8s cubic-bezier(.22,1,.36,1) .55s both;
}
.th-home-copy .th-home-secondary-btn {
    animation: rh-heroUp .8s cubic-bezier(.22,1,.36,1) .7s both;
}
@keyframes rh-heroUp {
    from { opacity: 0; transform: translateY(28px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Provider Cards: Premium depth ───────────────────── */
.th-provider-card {
    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        box-shadow .4s ease,
        border-color .3s ease;
}
.th-provider-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 4px 8px rgba(10,49,66,.04),
        0 12px 32px rgba(10,49,66,.08),
        0 28px 64px rgba(10,49,66,.1);
    border-color: rgba(201,143,131,.3);
}
/* Provider image shine */
.th-provider-image {
    position: relative;
    overflow: hidden;
}
.th-provider-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform .8s ease;
    z-index: 2;
    pointer-events: none;
}
.th-provider-card:hover .th-provider-image::before {
    transform: translateX(20%) translateY(20%);
}

/* ── Image Card: Refined scale ───────────────────────── */
.th-image-card {
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.th-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10,49,66,.12);
}

/* ── Steps: Premium hover ────────────────────────────── */
.th-steps article {
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease;
}
.th-steps article:hover {
    transform: translateY(-6px);
}
.th-steps article:hover span {
    transform: scale(1.1) rotate(3deg);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 8px 24px rgba(10,49,66,.12);
}

/* ── Accordion: Polished interactions ────────────────── */
.th-accordion details > div {
    animation: rh-accordionOpen .35s cubic-bezier(.22,1,.36,1);
}
@keyframes rh-accordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.th-who-help-section .th-accordion details {
    transition: background .25s ease, border-color .25s ease;
    position: relative;
}
.th-who-help-section .th-accordion details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #c98f83, #deb9af);
    opacity: 0;
    transform: scaleY(.2);
    transition: opacity .25s ease, transform .25s ease;
}
.th-who-help-section .th-accordion details[open]::before,
.th-who-help-section .th-accordion details:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
.th-who-help-section .th-accordion details[open] {
    background: rgba(201,143,131,.03);
    border-radius: 8px;
}

/* ── CTA Card: Breathing animation ───────────────────── */
.th-contact-card {
    animation: rh-breathe 5s ease-in-out infinite;
    transition: transform .35s ease, box-shadow .35s ease;
}
@keyframes rh-breathe {
    0%, 100% { transform: translateY(0); box-shadow: 0 8px 32px rgba(10,49,66,.08); }
    50%      { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(10,49,66,.12); }
}
.th-contact-card:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 16px 48px rgba(10,49,66,.12),
        0 32px 72px rgba(10,49,66,.06);
}

/* ── Section divider ─────────────────────────────────── */
.th-who-help-section {
    position: relative;
}
.th-who-help-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--warm-white, #fbf6f1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    opacity: .5;
}

/* ── Footer: Premium treatment ───────────────────────── */
.th-footer {
    position: relative;
}
.th-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(201,143,131,.35) 20%,
        rgba(201,143,131,.5) 50%,
        rgba(201,143,131,.35) 80%,
        transparent);
}
.th-footer-links a {
    position: relative;
    text-decoration: none !important;
    transition: color .25s ease;
}
.th-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 245, 238, .7);
    transition: width .35s cubic-bezier(.22,1,.36,1);
}
.th-footer-links a:hover::after {
    width: 100%;
}
.th-footer-social a {
    transition:
        transform .3s cubic-bezier(.22,1,.36,1),
        box-shadow .3s ease,
        background .3s ease;
}
.th-footer-social a:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 6px 20px rgba(201,143,131,.25);
}
.th-footer-social a:hover i {
    transform: rotate(-6deg);
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}

/* ── Scroll-top button ───────────────────────────────── */
.scroll-top {
    transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1), background .3s ease, box-shadow .3s ease;
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(233,74,73,.25);
}

@media (max-width: 1024px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
        max-height: 48vh;
        overflow-y: auto;
        border-radius: 12px;
    }

    .cookie-banner-content {
        padding: 10px 12px 12px;
    }

    .cookie-banner-text {
        font-size: 13px;
    }

    .cookie-banner-actions {
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        flex: 1 1 calc(50% - 6px);
        width: auto;
        min-height: 40px;
        font-size: 13px;
    }

    .cookie-modal-card {
        padding: 18px;
        border-radius: 14px;
    }

    .cookie-modal-actions {
        justify-content: stretch;
    }

    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-settings-trigger {
        left: 12px;
        bottom: 12px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .cookie-btn {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* ── Accessibility: Reduced Motion ───────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .rh-scroll-progress { display: none; }
    body { animation: none; }
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ── Print Styles ────────────────────────────────────── */
@media print {
    .th-header, .th-footer, .scroll-top, .mobile-nav, .skip-link,
    .th-announcement, .rh-scroll-progress {
        display: none !important;
    }
    body::after { display: none; }
    body { background: #fff !important; color: #000 !important; }
}
