        :root {
            --forest: #1a3329;
            --forest-light: #264d3b;
            --ocean: #2d7d7d;
            --ocean-light: #3a9a9a;
            --gold: #d4a853;
            --gold-light: #e4be73;
            --sand: #f5f1e8;
            --cream: #fffdf8;
            --ink: #1a1a1a;
            --gray: #6b7280;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--cream);
            color: var(--ink);
            line-height: 1.6;
        }
        
        ::selection { background: var(--ocean); color: white; }
        
        .serif { font-family: 'Instrument Serif', Georgia, serif; }
        
        /* Header - Minimal floating */
        header {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            background: rgba(26, 51, 41, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 16px 12px 24px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
        }
        
        .logo img { height: 32px; }
        
        .logo span {
            font-family: 'Instrument Serif', serif;
            font-size: 1.25rem;
        }
        
        .header-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .header-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .header-links a:hover { color: var(--gold); }
        
        .header-btn {
            background: var(--gold);
            color: var(--forest);
            padding: 10px 20px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-btn:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        
        /* Hero */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 120px 48px 80px;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(26, 51, 41, 0.92) 0%,
                rgba(26, 51, 41, 0.7) 50%,
                rgba(26, 51, 41, 0.3) 100%
            );
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 700px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 100px;
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 24px;
        }
        
        .hero h1 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 400;
            color: white;
            line-height: 1.05;
            margin-bottom: 24px;
        }
        
        .hero h1 i {
            font-style: italic;
            color: var(--ocean-light);
        }
        
        .hero-sub {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            max-width: 540px;
        }
        
        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 100px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-gold {
            background: var(--gold);
            color: var(--forest);
        }
        
        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
        }
        
        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }
        
        /* Trust bar */
        .trust-bar {
            background: var(--forest);
            padding: 20px 48px;
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }
        
        .trust-item svg { color: var(--gold); }
        
        /* About */
        .about {
            padding: 120px 48px;
            background: var(--cream);
        }
        
        .about-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-text span {
            color: var(--ocean);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .about-text h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            margin: 16px 0 24px;
            line-height: 1.2;
        }
        
        .about-text p {
            color: var(--gray);
            font-size: 1.05rem;
            margin-bottom: 16px;
        }
        
        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }
        
        .stat-num {
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            color: var(--forest);
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
        }
        
        .about-img {
            position: relative;
        }
        
        .about-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .about-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--ocean);
            color: white;
            padding: 20px 28px;
            border-radius: 16px;
        }
        
        .about-badge strong {
            display: block;
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            font-weight: 400;
        }
        
        .about-badge span { font-size: 0.85rem; opacity: 0.8; }
        
        /* Services */
        .services {
            background: var(--sand);
            padding: 120px 48px;
        }
        
        .section-header {
            max-width: 1200px;
            margin: 0 auto 60px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        
        .section-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
        }
        
        .scroll-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--ocean);
            font-size: 0.9rem;
            animation: slideRight 1.5s ease-in-out infinite;
        }
        
        @keyframes slideRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(8px); }
        }
        
        .services-wrap {
            position: relative;
        }
        
        .services-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100px;
            background: linear-gradient(to right, transparent, var(--sand));
            pointer-events: none;
            z-index: 5;
        }
        
        .services-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 0 48px 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .services-scroll::-webkit-scrollbar { display: none; }
        
        .service-card {
            flex: 0 0 340px;
            background: white;
            border-radius: 20px;
            padding: 36px;
            scroll-snap-align: start;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        
        .service-icon {
            width: 56px;
            height: 56px;
            background: var(--forest);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .service-icon svg { color: var(--gold); }
        
        .service-card h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 12px;
        }
        
        .service-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Work Gallery */
        .work {
            padding: 120px 48px;
            background: var(--cream);
        }
        
        .work-header {
            max-width: 1200px;
            margin: 0 auto 60px;
            text-align: center;
        }
        
        .work-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
        }
        
        /* Before/After Slider */
        .ba-slider-wrap {
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .ba-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.3rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .ba-slider {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            user-select: none;
            -webkit-user-select: none;
            touch-action: none;
        }
        
        .ba-slider img {
            display: block;
            width: 100%;
            height: auto;
            pointer-events: none;
        }
        
        .ba-after {
            display: block;
        }
        
        .ba-before {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
        }
        
        .ba-before img {
            position: absolute;
            top: 0;
            left: 0;
            width: auto;
            height: 100%;
        }
        
        .ba-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
            cursor: ew-resize;
        }
        
        .ba-handle-line {
            flex: 1;
            width: 3px;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }
        
        .ba-handle-circle {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            color: var(--forest);
        }
        
        .ba-label {
            position: absolute;
            bottom: 20px;
            padding: 8px 16px;
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 100px;
            pointer-events: none;
            z-index: 5;
        }
        
        .ba-label-before { left: 20px; }
        .ba-label-after { right: 20px; }
        
        .work-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .work-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }
        
        .work-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .work-item:hover img { transform: scale(1.03); }
        
        .work-label {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: white;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Tips Section - Educational */
        .tips {
            background: var(--forest);
            padding: 120px 48px;
        }
        
        .tips-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .tips-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }
        
        .tips-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: white;
        }
        
        .tips-header p {
            color: rgba(255,255,255,0.6);
            margin-top: 8px;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .tip-card {
            background: var(--forest-light);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
        }
        
        .tip-card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.08);
        }
        
        .tip-date {
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 16px;
        }
        
        .tip-card h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: white;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .tip-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .tip-link {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }
        
        .tip-link:hover { gap: 10px; }
        
        /* Reviews */
        .reviews {
            background: var(--ocean);
            padding: 120px 48px;
            position: relative;
            overflow: hidden;
        }
        
        .reviews::before {
            content: '"';
            position: absolute;
            top: -80px;
            right: 10%;
            font-family: 'Instrument Serif', serif;
            font-size: 50rem;
            color: rgba(255,255,255,0.03);
            pointer-events: none;
        }
        
        .reviews-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }
        
        .reviews-label {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 40px;
        }
        
        .review-slide {
            display: none;
        }
        
        .review-slide.active { display: block; }
        
        .review-text {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 400;
            color: white;
            line-height: 1.5;
            margin-bottom: 32px;
        }
        
        .review-author strong {
            display: block;
            color: white;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
        
        .review-author span {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        .review-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .review-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .review-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Areas */
        .areas {
            padding: 120px 48px;
            text-align: center;
            background: var(--cream);
        }
        
        .areas h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            margin-bottom: 16px;
        }
        
        .areas > p {
            color: var(--gray);
            margin-bottom: 48px;
        }
        
        .areas-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .area-tag {
            padding: 14px 28px;
            background: white;
            border-radius: 100px;
            font-size: 0.95rem;
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--ink);
            display: inline-block;
        }
        
        .area-tag:hover {
            background: var(--ocean);
            color: white;
            border-color: var(--ocean);
        }
        
        .area-tag.home {
            background: var(--forest);
            color: white;
            border-color: var(--forest);
        }
        
        /* FAQ */
        .faq {
            background: var(--sand);
            padding: 120px 48px;
        }
        
        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .faq-q {
            width: 100%;
            padding: 24px 0;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: 'Instrument Serif', serif;
            font-size: 1.2rem;
            text-align: left;
            color: var(--ink);
        }
        
        .faq-q span {
            font-size: 1.5rem;
            color: var(--ocean);
            transition: transform 0.3s;
        }
        
        .faq-item.open .faq-q span { transform: rotate(45deg); }
        
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-item.open .faq-a { max-height: 200px; }
        
        .faq-a p {
            padding-bottom: 24px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Quiz Section */
        .quiz {
            background: var(--ocean);
            padding: 120px 48px;
            text-align: center;
        }
        
        .quiz h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 400;
            color: white;
            margin-bottom: 12px;
        }
        
        .quiz-sub {
            color: rgba(255,255,255,0.7);
            margin-bottom: 48px;
        }
        
        .quiz-card {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 48px;
            text-align: left;
        }
        
        .quiz-progress {
            display: flex;
            gap: 8px;
            margin-bottom: 40px;
        }
        
        .progress-bar {
            display: flex;
            gap: 8px;
            width: 100%;
        }
        
        .progress-bar::before,
        .progress-bar::after {
            content: '';
            flex: 1;
            height: 4px;
            background: #e5e5e5;
            border-radius: 2px;
        }
        
        .progress-step {
            flex: 1;
            height: 4px;
            background: #e5e5e5;
            border-radius: 2px;
            transition: background 0.3s;
        }
        
        .progress-step.active {
            background: var(--ocean);
        }
        
        .quiz-question h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 24px;
            color: var(--ink);
        }
        
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .quiz-opt {
            width: 100%;
            padding: 18px 24px;
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .quiz-opt:hover {
            border-color: var(--ocean);
            background: rgba(45, 125, 125, 0.05);
        }
        
        .quiz-opt.selected {
            border-color: var(--ocean);
            background: rgba(45, 125, 125, 0.1);
            color: var(--ocean);
        }
        
        .quiz-next {
            margin-top: 32px;
            padding: 16px 32px;
            background: #ccc;
            color: white;
            border: none;
            border-radius: 100px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 500;
            cursor: not-allowed;
            float: right;
            transition: all 0.3s;
        }
        
        .quiz-next.enabled {
            background: var(--forest);
            cursor: pointer;
        }
        
        .quiz-next.enabled:hover {
            background: var(--ocean);
        }
        
        .quiz-result {
            text-align: center;
            padding: 20px 0;
        }
        
        .result-icon {
            font-size: 4rem;
            margin-bottom: 16px;
        }
        
        .quiz-result h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            margin-bottom: 16px;
        }
        
        .quiz-result p {
            color: var(--gray);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        /* Contact Section */
        .contact {
            background: var(--forest);
            padding: 120px 48px;
        }
        
        .contact-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }
        
        .contact-text h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: white;
            margin-bottom: 16px;
        }
        
        .contact-text p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .contact-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gold);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        .contact-link:hover { color: var(--gold-light); }
        .contact-link svg { color: var(--gold); }
        
        .contact-form-wrap {
            background: white;
            border-radius: 24px;
            padding: 40px;
        }
        
        .contact-form-wrap h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 32px;
            color: var(--ink);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--ink);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--forest);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .btn-full { width: 100%; justify-content: center; }

        /* Quiz lead form + form status notes */
        .quiz-lead { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
        .quiz-lead-label { color: var(--gray); font-size: 0.95rem; margin-bottom: 4px; }
        .quiz-lead input {
            width: 100%; padding: 14px 18px; border: 1px solid #e5e5e5;
            border-radius: 12px; font-family: inherit; font-size: 1rem;
            transition: border-color 0.3s;
        }
        .quiz-lead input:focus { outline: none; border-color: var(--forest); }
        .form-note { font-size: 0.9rem; margin-top: 8px; min-height: 1px; }
        .form-note.success { color: var(--ocean); font-weight: 500; }
        .form-note.error { color: #c0392b; font-weight: 500; }
        
        /* CTA (simple fallback removed, using contact section) */
        
        /* Footer */
        footer {
            background: var(--ink);
            padding: 80px 48px 40px;
            color: white;
        }
        
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.5);
            margin-top: 16px;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        footer h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        footer a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        
        footer a:hover { color: white; }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
        }
        
        /* Chat Widget */
        .chat-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
        }
        
        .chat-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 24px;
            background: var(--gold);
            color: var(--forest);
            border: none;
            border-radius: 100px;
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .chat-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }
        
        .chat-panel {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 380px;
            height: 520px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .chat-float.open .chat-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .chat-head {
            background: var(--forest);
            padding: 24px;
            position: relative;
        }
        
        .chat-head h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: white;
        }
        
        .chat-head p {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            margin-top: 4px;
        }
        
        .chat-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            cursor: pointer;
            padding: 4px;
        }
        
        .chat-close:hover { color: white; }
        
        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: #f9f8f5;
        }
        
        .msg {
            max-width: 85%;
            padding: 14px 18px;
            border-radius: 20px;
            font-size: 0.95rem;
            line-height: 1.5;
            animation: msgPop 0.3s ease;
        }
        
        @keyframes msgPop {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .msg.them {
            background: white;
            color: var(--ink);
            align-self: flex-start;
            border-bottom-left-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        
        .msg.you {
            background: var(--forest);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 6px;
        }
        
        .msg.typing {
            display: flex;
            gap: 5px;
            padding: 18px 22px;
        }
        
        .msg.typing span {
            width: 8px;
            height: 8px;
            background: #ccc;
            border-radius: 50%;
            animation: bounce 1.2s infinite;
        }
        
        .msg.typing span:nth-child(2) { animation-delay: 0.15s; }
        .msg.typing span:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        
        .quick-opts {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        
        .quick-opt {
            padding: 8px 14px;
            background: var(--sand);
            border: none;
            border-radius: 100px;
            font-family: inherit;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .quick-opt:hover {
            background: var(--gold);
            color: var(--forest);
        }
        
        .chat-foot {
            padding: 16px;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            gap: 10px;
            background: white;
        }
        
        .chat-foot input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid #e5e5e5;
            border-radius: 100px;
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
        }
        
        .chat-foot input:focus { border-color: var(--forest); }
        
        .chat-foot button {
            width: 48px;
            height: 48px;
            background: var(--forest);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .chat-foot button:hover { background: var(--ocean); }
        .chat-foot button svg { color: white; }
        
        /* Mobile */
        @media (max-width: 1024px) {
            header { 
                padding: 12px 16px; 
                gap: 16px;
                width: calc(100% - 32px);
                left: 16px;
                transform: none;
                justify-content: space-between;
            }
            .header-links { gap: 12px; }
            .header-links a:not(.header-btn) { display: none; }
            .header-btn { 
                padding: 10px 16px; 
                font-size: 0.85rem;
                white-space: nowrap;
                letter-spacing: 0.02em;
            }
            
            .hero { padding: 100px 24px 60px; }
            .hero h1 { font-size: 2.8rem; }
            
            .trust-bar { gap: 24px; padding: 20px 24px; }
            
            .about { padding: 80px 24px; }
            .about-inner { grid-template-columns: 1fr; gap: 48px; }
            .about-badge { position: static; margin-top: 20px; display: inline-block; }
            
            .services { padding: 80px 24px; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0; }
            .services-wrap::after { width: 60px; }
            .services-scroll { padding: 0 24px 20px; }
            .service-card { flex: 0 0 300px; }
            
            .work { padding: 80px 24px; }
            .work-grid { grid-template-columns: 1fr 1fr; }
            .ba-slider-wrap { margin-bottom: 40px; }
            
            .tips { padding: 80px 24px; }
            .tips-header { flex-direction: column; align-items: flex-start; }
            .tips-grid { grid-template-columns: 1fr; }
            
            .quiz { padding: 80px 24px; }
            .quiz-card { padding: 32px 24px; }
            
            .contact { padding: 80px 24px; }
            .contact-inner { grid-template-columns: 1fr; gap: 48px; }
            
            .reviews { padding: 80px 24px; }
            .areas { padding: 80px 24px; }
            .faq { padding: 80px 24px; }
            .cta { padding: 80px 24px; }
            
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            
            .chat-panel { width: calc(100vw - 48px); }
        }
        
        @media (max-width: 600px) {
            header { top: 16px; }
            .hero-btns { flex-direction: column; width: 100%; }
            .hero-btns .btn { width: 100%; justify-content: center; }
            .about-stats { flex-direction: column; gap: 20px; }
            .work-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; }
            .chat-btn span { display: none; }
            .chat-btn { padding: 16px; }
        }
