/* New Roots Nursery - Main Stylesheet */
/* Extracted from index-v2.html for SEO optimization */

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

        :root {
            --bg-warm: #FAF6EE;
            --bg-sand: #F0EBDF;
            --bg-sage: #E8EDE2;
            --bg-hero-dark: #3A3228;
            --text-primary: #2C2418;
            --text-secondary: #6B5A4A;
            --text-muted: #9A8E80;
            --text-on-dark: #F5F0E6;
            --accent-gold: #C8963E;
            --accent-gold-hover: #B5842F;
            --accent-gold-light: rgba(200, 150, 62, 0.12);
            --accent-green: #5A7A52;
            --accent-green-light: #7A9A6E;
            --border-warm: rgba(44, 36, 24, 0.08);
            --shadow-soft: 0 2px 12px rgba(44, 36, 24, 0.06);
            --shadow-card: 0 8px 32px rgba(44, 36, 24, 0.08);
            --shadow-hover: 0 16px 48px rgba(44, 36, 24, 0.12);
        }

        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-warm);
            color: var(--text-primary);
            line-height: 1.65;
            overflow-x: hidden;
            font-size: 16px;
        }

        /* Grain Texture */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch' seed='2'/%3E%3CfeColorMatrix type='saturate' values='1.2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' fill='%23C8963E'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 100;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }

        

        /* ====== NAVIGATION ====== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            background: rgba(250, 246, 238, 0.97);
            backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(44, 36, 24, 0.08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo img {
            height: 44px;
            width: 44px;
            object-fit: contain;
            transition: opacity 0.4s ease;
        }

        .nav-logo .logo-icon-scrolled {
            display: none;
        }

        .nav.scrolled .nav-logo .logo-icon-hero {
            display: none;
        }

        .nav.scrolled .nav-logo .logo-icon-scrolled {
            display: block;
        }

        .nav-logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #fff;
            transition: color 0.4s ease;
            line-height: 1.2;
        }

        .nav.scrolled .nav-logo-text {
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(245, 240, 230, 0.8);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: #fff; }

        .nav.scrolled .nav-links a {
            color: var(--text-secondary);
        }
        .nav.scrolled .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-flags {
            display: flex;
            gap: 10px;
        }

        .nav-flags img {
            width: 22px;
            height: 16px;
            border-radius: 2px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .nav-flags img:hover { opacity: 1; }

        .nav-cta {
            background: var(--accent-gold);
            color: #fff;
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(200, 150, 62, 0.3);
        }

        /* ====== HERO SECTION ====== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 140px 0 100px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            animation: kenBurns 20s ease-in-out infinite alternate;
            transform-origin: center center;
        }

        @keyframes kenBurns {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.08) translate(-1%, -0.5%); }
        }

        /* Warm, sunny overlay — NOT dark/green */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                165deg,
                rgba(58, 50, 40, 0.6) 0%,
                rgba(58, 50, 40, 0.4) 35%,
                rgba(90, 74, 52, 0.35) 65%,
                rgba(200, 150, 62, 0.15) 100%
            );
            z-index: 1;
        }

        /* Warm bottom fade into page background */
        .hero-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, transparent, var(--bg-warm));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero-text {
            color: var(--text-on-dark);
        }

        .hero-tag {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(245, 240, 230, 0.8);
            margin-bottom: 28px;
            padding: 8px 20px;
            border: 1px solid rgba(200, 150, 62, 0.35);
            border-radius: 4px;
            background: rgba(200, 150, 62, 0.1);
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(52px, 7vw, 100px);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.01em;
            margin-bottom: 16px;
            color: #fff;
        }

        .hero h1 em {
            font-style: italic;
            font-weight: 400;
            color: var(--accent-gold);
        }

        .hero-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 400;
            color: rgba(245, 240, 230, 0.85);
            margin-bottom: 24px;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }

        .hero-description {
            font-size: 15px;
            color: rgba(245, 240, 230, 0.7);
            max-width: 500px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: #fff;
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 150, 62, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: rgba(245, 240, 230, 0.9);
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            border: 1.5px solid rgba(245, 240, 230, 0.35);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(245, 240, 230, 0.1);
            border-color: rgba(245, 240, 230, 0.6);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            max-height: 460px;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease;
        }

        .hero-visual img:hover {
            transform: scale(1.03);
        }

        .hero-visual img:first-child {
            grid-row: 1 / 3;
            border-radius: 12px;
        }

        .hero-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--accent-gold);
            color: #fff;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
            z-index: 2;
        }

        .hero-badge-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 700;
            line-height: 1;
        }

        .hero-badge-text {
            font-size: 7px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-align: center;
            line-height: 1.2;
        }

        /* ====== TRUST STRIP ====== */
        .trust-strip {
            background: var(--bg-warm);
            padding: 64px 40px;
            position: relative;
            z-index: 4;
        }

        .trust-inner {
            display: flex;
            justify-content: center;
            gap: 80px;
            max-width: 900px;
            margin: 0 auto;
        }

        .trust-item {
            text-align: center;
        }

        .trust-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .trust-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .trust-divider {
            width: 1px;
            background: var(--border-warm);
            align-self: stretch;
        }

        /* ====== SECTION: "WE KNOW THIS SOIL" ====== */
        .story-section {
            background: var(--bg-warm);
            padding: 100px 40px;
        }

        .story-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 55% 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow-card);
        }

        .story-image img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            min-height: 450px;
            animation: kenBurns2 16s ease-in-out infinite alternate;
        }

        @keyframes kenBurns2 {
            0% { transform: scale(1.1) translate(-1%, 1%); }
            100% { transform: scale(1) translate(1%, -1%); }
        }

        .story-text {
            padding: 20px 0;
        }

        .story-gold-line {
            width: 48px;
            height: 3px;
            background: var(--accent-gold);
            margin-bottom: 24px;
            border-radius: 2px;
        }

        .story-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .story-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            margin-top: 12px;
            transition: gap 0.3s ease;
        }

        .story-link:hover { gap: 14px; }

        /* ====== SECTION: WHAT WE OFFER (Bento Cards) ====== */
        .offer-section {
            background: var(--bg-sand);
            padding: 100px 40px;
        }

        .offer-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .offer-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .offer-header p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .offer-card {
            background: var(--bg-warm);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .offer-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .offer-card-image {
            position: relative;
            overflow: hidden;
            height: 240px;
        }

        .offer-card-image img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .offer-card:hover .offer-card-image img {
            transform: scale(1.08);
        }

        .offer-card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to bottom, transparent, rgba(250, 246, 238, 0.6));
        }

        .offer-card-body {
            padding: 28px;
        }

        .offer-card-body h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .offer-card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .offer-card-link {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }

        .offer-card:hover .offer-card-link { gap: 12px; }

        /* ====== SECTION: GALLERY PREVIEW ====== */
        .gallery-section {
            background: var(--bg-warm);
            padding: 100px 40px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .gallery-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .gallery-header p {
            font-size: 14px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 260px 260px;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
        }

        .gallery-item:first-child {
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        /* ====== FOOTER TEASER ====== */
        .footer-teaser {
            background: var(--bg-sage);
            padding: 80px 40px;
            text-align: center;
        }

        .footer-teaser h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .footer-teaser p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .footer-teaser .btn-primary {
            background: var(--accent-green);
        }

        .footer-teaser .btn-primary:hover {
            background: var(--accent-green-light);
            box-shadow: 0 8px 24px rgba(90, 122, 82, 0.3);
        }

        /* ====== SECTION: WHY / PAIN POINTS ====== */
        .why-section {
            background: var(--bg-warm);
            padding: 100px 40px;
        }

        .section-tag {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 64px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pain-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .pain-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .pain-card-img {
            position: relative;
            overflow: hidden;
            height: 240px;
            background: var(--bg-sand);
        }

        .pain-card-img img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            animation: kenBurns3 18s ease-in-out infinite alternate;
        }

        @keyframes kenBurns3 {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.08) translate(-0.5%, -1%); }
        }

        .pain-card-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 32px;
            background: rgba(255, 255, 255, 0.95);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .pain-card-body {
            padding: 32px;
        }

        .pain-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .pain-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .pain-card .solution {
            background: var(--accent-gold-light);
            color: var(--accent-green);
            padding: 12px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 13px;
            margin-top: 16px;
        }

        /* ====== SECTION DIVIDERS ====== */
        .wood-divider {
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, rgba(200, 168, 100, 0.2) 20%, rgba(200, 168, 100, 0.35) 50%, rgba(200, 168, 100, 0.2) 80%, transparent 100%);
            position: relative;
            z-index: 2;
        }

        .wood-divider::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(200, 150, 62, 0.0);
        }

        /* ====== SERVICES: BENTO GRID ====== */
        .services {
            background: var(--bg-sand);
            padding: 100px 40px;
        }

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bento-item {
            background: var(--bg-warm);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .bento-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .bento-item--large {
            grid-column: span 6;
            grid-row: span 2;
            min-height: auto;
        }

        .bento-item--medium {
            grid-column: span 3;
            grid-row: span 2;
            min-height: auto;
        }

        .bento-item--third {
            grid-column: span 3;
            grid-row: span 1;
        }

        .bento-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .bento-bg-color {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns4 20s ease-in-out infinite alternate;
        }

        @keyframes kenBurns4 {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.1) translate(0.5%, -0.5%); }
        }

        .bento-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(44, 36, 24, 0.85) 100%);
            z-index: 1;
        }

        .bento-inner {
            position: relative;
            z-index: 2;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .bento-item h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }

        .bento-item p {
            font-size: 13px;
            color: rgba(245, 240, 230, 0.9);
            line-height: 1.6;
        }

        /* ====== LANDSCAPING SECTION ====== */
        .landscaping {
            background: url('images/wood-bg.jpg') center/cover no-repeat fixed;
            padding: 120px 40px;
            position: relative;
        }

        .landscaping::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(250, 246, 238, 0.88);
            z-index: 0;
        }

        .landscaping > * {
            position: relative;
            z-index: 1;
        }

        .ls-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .ls-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .ls-insight {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
        }

        .ls-steps {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr;
            gap: 32px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto 80px;
        }

        .ls-step {
            background: #fff;
            padding: 40px 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow-soft);
        }

        .ls-step-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 16px;
        }

        .ls-step h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .ls-step p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .ls-step-arrow {
            font-size: 32px;
            color: var(--accent-gold);
            opacity: 0.6;
        }

        .ls-prompt-center {
            max-width: 720px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .ls-prompt-center .dream-garden-box {
            padding: 32px;
        }

        .ls-prompt-center .dg-textarea {
            min-height: 80px;
            font-size: 16px;
        }

        .ls-benefits-strip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 60px;
        }

        .ls-proof-col {
            position: relative;
        }

        .dream-garden-box {
            background: #1F2023;
            border-radius: 12px;
            padding: 24px;
            color: #fff;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }

        .dg-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .dg-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
            min-height: 0;
        }

        .dg-preview-item {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            background: rgba(200, 150, 62, 0.15);
            border: 1px solid rgba(200, 150, 62, 0.3);
        }

        .dg-preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dg-preview-remove {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 24px;
            height: 24px;
            background: rgba(232, 55, 55, 0.8);
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .dg-preview-remove:hover {
            background: rgba(232, 55, 55, 1);
        }

        .dg-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(200, 150, 62, 0.2);
            border-radius: 8px;
            padding: 12px 16px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            line-height: 1.6;
            resize: none;
            transition: all 0.3s ease;
            outline: none;
        }

        .dg-textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .dg-textarea:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
        }

        .dg-url-row {
            display: none;
            margin-top: 12px;
        }

        .dg-url-row.active {
            display: block;
        }

        .dg-url-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(200, 150, 62, 0.2);
            border-radius: 8px;
            padding: 12px 16px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            transition: all 0.3s ease;
            outline: none;
        }

        .dg-url-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .dg-url-input:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
        }

        .dg-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dg-tools {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .dg-tool-btn {
            background: transparent;
            border: 1px solid rgba(200, 150, 62, 0.3);
            color: rgba(255, 255, 255, 0.7);
            width: 36px;
            height: 36px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0;
            gap: 6px;
            flex-wrap: wrap;
            flex-direction: column;
        }

        .dg-tool-btn:hover {
            background: rgba(200, 150, 62, 0.15);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .dg-tool-btn svg {
            width: 18px;
            height: 18px;
        }

        .dg-tool-btn span {
            display: none;
        }

        .dg-tool-divider {
            width: 1px;
            height: 24px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0 4px;
        }

        .dg-send-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(200, 150, 62, 0.2);
            border: 2px solid rgba(200, 150, 62, 0.3);
            color: var(--text-muted);
            cursor: not-allowed;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 600;
            font-size: 12px;
        }

        .dg-send-btn:not(:disabled) {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: #fff;
            cursor: pointer;
        }

        .dg-send-btn:not(:disabled):hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
            transform: translateY(-2px);
        }

        .dg-send-btn svg {
            width: 20px;
            height: 20px;
        }

        .dg-send-btn span {
            display: none;
        }

        .dg-success {
            display: none;
            text-align: center;
            padding: 40px 24px;
            background: rgba(200, 150, 62, 0.08);
            border-radius: 8px;
            border: 1px solid rgba(200, 150, 62, 0.2);
        }

        .dg-success.show {
            display: block;
        }

        .dg-success-icon {
            font-size: 48px;
            color: var(--accent-green);
            margin-bottom: 16px;
        }

        .dg-success h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .dg-success p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .ls-prompt-trust {
            margin-top: 16px;
            padding: 12px 16px;
            background: rgba(200, 150, 62, 0.08);
            border-radius: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ls-phone-fallback {
            margin-top: 16px;
            text-align: center;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .ls-phone-fallback a {
            color: var(--accent-gold);
            font-weight: 600;
            text-decoration: underline;
        }

        .ls-benefits-col {
            padding: 0;
        }

        .ls-benefits-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 32px;
        }

        .landscaping-features {
            list-style: none;
            margin-bottom: 48px;
        }

        .landscaping-features li {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .landscaping-features .check {
            color: var(--accent-green);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 16px;
        }

        .ls-proof-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }

        .ls-proof-img {
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            height: 180px;
        }

        .ls-proof-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns5 16s ease-in-out infinite alternate;
        }

        @keyframes kenBurns5 {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.08) translate(-0.5%, -0.5%); }
        }

        .ls-trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .ls-trust-stat {
            text-align: center;
            padding: 24px;
            background: var(--bg-warm);
            border-radius: 8px;
        }

        .ls-trust-num {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 6px;
        }

        .ls-trust-stat span:last-child {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .ls-gallery-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-top: 60px;
        }

        .ls-gallery-item {
            overflow: hidden;
            border-radius: 8px;
            height: 200px;
            position: relative;
        }

        .ls-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .ls-gallery-item:hover img {
            transform: scale(1.08);
        }

        /* ====== SOCIAL PROOF — SUBTLE WOOD TEXTURE ====== */
        .social-proof {
            background: url('images/wood-bg.jpg') center bottom/cover no-repeat fixed;
            padding: 100px 40px;
            position: relative;
        }

        .social-proof::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(243, 237, 227, 0.92);
            z-index: 0;
        }

        .social-proof > * {
            position: relative;
            z-index: 1;
        }

        .reviews-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
        }

        .reviews-header .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .reviews-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .reviews-header h2 em {
            font-style: italic;
        }

        .reviews-header p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: var(--shadow-soft);
        }

        .g-svg {
            width: 20px;
            height: 20px;
        }

        .g-stars {
            display: flex;
            gap: 2px;
            color: #FFC107;
        }

        .google-badge strong {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 4px;
        }

        .g-count {
            font-size: 12px;
            color: var(--text-muted);
        }

        .marquee-container {
            overflow: hidden;
            margin: 48px 0;
        }

        .marquee-row {
            margin-bottom: 24px;
        }

        .marquee-track {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: scroll-left 40s linear infinite;
        }

        .marquee-track.right {
            animation: scroll-right 40s linear infinite;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .review-card {
            min-width: 300px;
            background: #fff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: var(--shadow-soft);
            flex-shrink: 0;
        }

        .review-card .stars {
            color: var(--accent-gold);
            margin-bottom: 12px;
            font-size: 13px;
        }

        .review-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .review-card .reviewer {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .tm-stats-hero {
            background: var(--bg-warm);
            padding: 48px 24px;
            border-bottom: 1px solid rgba(200,150,62,0.15);
        }

        .tm-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .tm-stat .num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .tm-stat .label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* ====== PHOTO GALLERY ====== */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 260px 260px;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .photo-grid-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            background: var(--bg-sand);
        }

        .photo-grid-item--wide {
            grid-column: span 2;
        }

        .photo-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .photo-grid-item:hover img {
            transform: scale(1.06);
        }

        /* ====== UNIQUE / TOURIST SECTION ====== */
        .unique-section {
            background: var(--bg-sage);
            padding: 100px 40px;
        }

        .unique-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .unique-content {
            padding: 20px 0;
        }

        .unique-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .unique-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .unique-highlight {
            background: var(--accent-gold-light);
            padding: 24px;
            border-radius: 8px;
            margin-top: 24px;
            border-left: 4px solid var(--accent-gold);
        }

        .unique-highlight p {
            font-weight: 500;
            color: var(--accent-green);
            margin: 0;
        }

        .unique-visual {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        /* ====== BLOG SECTION — SUBTLE WOOD TEXTURE ====== */
        .blog-section {
            background: url('images/wood-bg.jpg') center/cover no-repeat fixed;
            padding: 100px 40px;
            position: relative;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(250, 246, 238, 0.93);
            z-index: 0;
        }

        .blog-section > * {
            position: relative;
            z-index: 1;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 48px;
        }

        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.08);
        }

        .blog-category {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-gold);
            color: #fff;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .blog-content {
            padding: 28px;
        }

        .blog-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .blog-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .blog-meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .read-time {
            font-weight: 500;
        }

        .blog-link {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }

        .blog-card:hover .blog-link {
            gap: 12px;
        }

        .blog-cta {
            text-align: center;
        }

        .btn-link {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
            text-decoration: underline;
        }

        .btn-link:hover {
            gap: 14px;
        }

        /* ====== CONTACT SECTION — WOOD + FOREST GREEN ====== */
        .contact-section {
            background: url('images/wood-bg.jpg') center/cover no-repeat fixed;
            color: var(--text-on-dark);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        /* Dark forest-green overlay over wood texture */
        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(10, 31, 21, 0.90) 0%, rgba(18, 42, 30, 0.88) 40%, rgba(14, 35, 24, 0.91) 100%);
            z-index: 0;
        }

        /* Decorative botanical glow — top right */
        .contact-section::after {
            content: '';
            position: absolute;
            top: -15%;
            right: -8%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(200, 168, 100, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .contact-section > * {
            position: relative;
            z-index: 1;
        }

        .contact-va-row {
            max-width: 1200px;
            margin: 0 auto 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .va-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            color: var(--text-on-dark);
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .va-text h2 em {
            font-style: italic;
            color: var(--accent-gold);
        }

        .va-text p {
            font-size: 15px;
            color: rgba(245, 240, 230, 0.85);
            line-height: 1.85;
            margin-bottom: 24px;
        }

        .va-ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 168, 100, 0.08);
            padding: 12px 20px;
            border-radius: 100px;
            margin-bottom: 28px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #C8A864;
            border: 1px solid rgba(200, 168, 100, 0.15);
        }

        .va-live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .va-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .va-feat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            font-size: 14px;
            color: rgba(230, 240, 230, 0.9);
            transition: all 0.3s ease;
        }

        .va-feat:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(200, 168, 100, 0.15);
            transform: translateY(-2px);
        }

        .va-feat-icon {
            font-size: 24px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-method {
            background: rgba(255, 255, 255, 0.03);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid rgba(200, 150, 62, 0.1);
            text-align: center;
        }

        .contact-method h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }

        .contact-method p {
            font-size: 14px;
            color: rgba(245, 240, 230, 0.7);
            line-height: 1.7;
        }

        .contact-btn {
            display: inline-block;
            margin-top: 16px;
            padding: 12px 24px;
            background: var(--accent-gold);
            color: #fff;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
        }

        /* --- VA Card (right column) — Glass Morphism --- */
        .va-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 40px 36px;
            backdrop-filter: blur(16px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .va-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 32px 64px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
        }

        .va-card-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .va-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 10px;
        }

        .va-card-sub {
            font-size: 14px;
            color: rgba(245,240,230,0.7);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .va-call-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 18px 24px;
            background: linear-gradient(135deg, #C8A864 0%, #B8963E 100%);
            color: #0A1F15;
            border: none;
            border-radius: 14px;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            letter-spacing: 0.02em;
        }

        .va-call-btn svg {
            width: 22px;
            height: 22px;
            fill: #0A1F15;
            flex-shrink: 0;
        }

        .va-call-btn:hover {
            background: linear-gradient(135deg, #D4B670 0%, #C8A864 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(200, 168, 100, 0.35);
        }

        .va-call-note {
            font-size: 12px;
            color: rgba(245,240,230,0.5);
            text-align: center;
            margin-top: 10px;
            margin-bottom: 0;
        }

        .va-or-divider {
            text-align: center;
            font-size: 12px;
            color: rgba(245,240,230,0.3);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 20px 0;
            position: relative;
        }

        .va-or-divider::before,
        .va-or-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: rgba(200,150,62,0.15);
        }

        .va-or-divider::before { left: 0; }
        .va-or-divider::after { right: 0; }

        .va-whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 16px 24px;
            background: #25D366;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .va-whatsapp-btn svg {
            width: 22px;
            height: 22px;
            fill: #fff;
            flex-shrink: 0;
        }

        .va-whatsapp-btn:hover {
            background: #1EBE5D;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37,211,102,0.3);
        }

        .va-chat-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 16px 24px;
            background: rgba(200,150,62,0.12);
            color: var(--accent-gold);
            border: 1px solid rgba(200,150,62,0.25);
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 12px;
            transition: all 0.3s ease;
        }

        .va-chat-btn svg {
            width: 22px;
            height: 22px;
            fill: var(--accent-gold);
            flex-shrink: 0;
        }

        .va-chat-btn:hover {
            background: rgba(200,150,62,0.2);
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .va-card-footer {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            color: rgba(245,240,230,0.4);
        }

        /* --- How it works — Timeline --- */
        .va-how-it-works {
            margin-top: 36px;
        }

        .va-how-it-works h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 20px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-size: 13px;
            opacity: 0.7;
        }

        .va-timeline {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .va-tl-step {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            padding: 14px 16px;
            background: rgba(200,168,100,0.06);
            border: 1px solid rgba(200,168,100,0.12);
            border-radius: 14px;
            transition: all 0.35s ease;
            position: relative;
        }

        .va-tl-step:hover {
            background: rgba(200,168,100,0.12);
            border-color: rgba(200,168,100,0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .va-tl-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(200,168,100,0.2), rgba(200,168,100,0.08));
            border: 1px solid rgba(200,168,100,0.25);
            border-radius: 12px;
            color: #C8A864;
        }

        .va-tl-icon svg {
            width: 22px;
            height: 22px;
        }

        .va-tl-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .va-tl-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-on-dark);
            letter-spacing: 0.01em;
        }

        .va-tl-desc {
            font-size: 12px;
            color: rgba(220,235,220,0.55);
            line-height: 1.4;
        }

        .va-tl-connector {
            width: 32px;
            min-width: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(200,168,100,0.3);
            padding: 0 2px;
        }

        .va-tl-connector svg {
            width: 24px;
            height: 12px;
        }

        /* --- Contact Bottom Row (Hours + Details) --- */
        .contact-bottom-row {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .contact-bottom-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 18px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .contact-bottom-card:hover {
            background: rgba(255,255,255,0.06);
            transform: translateY(-2px);
        }

        /* --- Standalone Map (full width below cards) --- */
        .contact-map-standalone {
            max-width: 1200px;
            margin: 32px auto 0;
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            height: 380px;
        }

        .contact-map-standalone iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .contact-map-link {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 31, 21, 0.92);
            color: #C8A864;
            padding: 10px 24px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(200, 168, 100, 0.25);
            transition: all 0.3s;
            white-space: nowrap;
        }

        .contact-map-link:hover {
            background: rgba(10, 31, 21, 1);
            border-color: #C8A864;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Legacy map-row kept for compatibility */
        .contact-map-row {
            max-width: 1200px;
            margin: 32px auto 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            min-height: 340px;
        }

        .contact-map-photo {
            position: relative;
            overflow: hidden;
        }

        .contact-map-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-map-photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(10, 31, 21, 0.92) 0%, transparent 100%);
            display: flex;
            flex-direction: column;
            gap: 4px;
            color: #fff;
        }

        .contact-map-photo-badge {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 4px;
        }

        .contact-map-photo-overlay strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 600;
        }

        .contact-map-photo-overlay span {
            font-size: 13px;
            color: rgba(245, 240, 230, 0.8);
        }

        .contact-map-embed {
            position: relative;
        }

        .contact-map-embed iframe {
            width: 100%;
            height: 100%;
            min-height: 340px;
        }

        @media (max-width: 768px) {
            .contact-map-row {
                grid-template-columns: 1fr;
            }
            .contact-map-photo {
                height: 220px;
            }
        }

        .contact-bottom-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--text-on-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }

        .cb-icon {
            font-size: 20px;
        }

        .hours-list-dark {
            list-style: none;
        }

        .hours-list-dark li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(200,150,62,0.08);
            font-size: 14px;
        }

        .hours-list-dark li:last-child {
            border-bottom: none;
        }

        .hours-day-dark {
            color: rgba(245,240,230,0.7);
        }

        .hours-day-dark::before {
            content: '•';
            color: var(--accent-gold);
            margin-right: 8px;
        }

        .hours-time-dark {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .hours-closed-dark {
            color: #E57373;
            font-weight: 500;
        }

        .cd-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
            font-size: 14px;
            color: rgba(245,240,230,0.85);
        }

        .cd-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cd-item strong {
            display: block;
            color: var(--text-on-dark);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .cd-item a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s;
        }

        .cd-item a:hover {
            color: var(--accent-gold-hover);
            text-decoration: underline;
        }

        /* --- FAB Buttons --- */
        .fab-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 900;
        }

        .fab-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .fab-btn svg {
            width: 24px;
            height: 24px;
        }

        .fab-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(0,0,0,0.3);
        }

        .fab-phone {
            background: var(--accent-gold);
        }

        .fab-whatsapp {
            background: #25D366;
        }

        .fab-chat {
            background: #0F2419;
        }

        .fab-tooltip {
            position: absolute;
            right: 64px;
            background: rgba(44,36,24,0.9);
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .fab-btn:hover .fab-tooltip {
            opacity: 1;
        }

        /* ====== FOOTER — WOOD TEXTURE ====== */
        .footer {
            background: url('images/wood-bg.jpg') center/cover no-repeat;
            color: rgba(245,240,230,0.85);
            padding: 80px 40px 40px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(22, 16, 10, 0.92) 0%, rgba(30, 22, 14, 0.94) 100%);
            z-index: 0;
        }

        .footer > * {
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-brand-logo img {
            height: 48px;
            width: 48px;
            object-fit: contain;
        }

        .footer-brand-logo h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .footer-brand-logo h3 span {
            color: rgba(245,240,230,0.7);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(245,240,230,0.6);
            line-height: 1.7;
        }

        .footer-grid h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(245,240,230,0.6);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-grid .contact-info a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .footer-grid .contact-info a:hover {
            text-decoration: underline;
        }

        .footer-grid .contact-info p {
            font-size: 14px;
            color: rgba(245,240,230,0.6);
            margin-bottom: 8px;
        }

        .footer-bottom-bar {
            border-top: 1px solid rgba(200,150,62,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(245,240,230,0.4);
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(245,240,230,0.5);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .footer-social-link svg {
            flex-shrink: 0;
        }

        .footer-social-link:hover {
            color: #fff;
            background: rgba(24, 119, 242, 0.15);
            border-color: rgba(24, 119, 242, 0.3);
        }

        .footer-social a {
            color: rgba(245,240,230,0.5);
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: var(--accent-gold);
        }

        .footer-contact-item {
            font-size: 14px;
            color: rgba(245,240,230,0.6);
            margin-bottom: 10px;
        }

        .footer-contact-item a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact-item a:hover {
            text-decoration: underline;
        }

        /* ====== MOBILE MENU ====== */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--bg-warm);
            z-index: 999;
            overflow-y: auto;
            padding: 100px 40px 40px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: var(--text-primary);
            font-size: 16px;
            border-bottom: 1px solid var(--border-warm);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 768px) {
            .pain-grid {
                grid-template-columns: 1fr;
            }

            .bento-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .bento-item--large {
                grid-column: span 6;
                grid-row: span 1;
            }

            .bento-item--medium {
                grid-column: span 6;
            }

            .bento-item--third {
                grid-column: span 6;
            }

            .ls-steps {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .ls-step-arrow {
                display: none;
            }

            .ls-benefits-strip {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .ls-proof-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .ls-trust-stats {
                grid-template-columns: 1fr;
            }

            .ls-gallery-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .photo-grid-item--wide {
                grid-column: span 1;
            }

            .unique-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .tm-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-va-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .va-features {
                grid-template-columns: 1fr;
            }

            .contact-bottom-row {
                grid-template-columns: 1fr;
            }

            .va-timeline {
                flex-direction: column;
            }
            .va-tl-connector {
                transform: rotate(90deg);
                width: 24px;
                min-width: unset;
                height: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-bottom-bar {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .pain-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .tm-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .ls-proof-gallery {
                grid-template-columns: 1fr;
            }

            .ls-gallery-strip {
                grid-template-columns: 1fr;
            }
        }

        /* ====== ADDITIONAL CSS CLASSES ====== */
        .btn-secondary {
            background: transparent;
            color: var(--text-on-dark);
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1.5px solid rgba(245, 240, 230, 0.35);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(245, 240, 230, 0.1);
            border-color: rgba(245, 240, 230, 0.6);
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-on-dark);
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        .dg-mic-icon {
            width: 20px;
            height: 20px;
        }

        .dg-arrow-icon {
            width: 20px;
            height: 20px;
        }

        .dg-doc-icon {
            font-weight: 700;
            font-size: 11px;
            color: var(--accent-gold);
        }

        .dg-doc-name {
            display: block;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            margin-top: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .contact-bottom-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .contact-bottom-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid rgba(200, 150, 62, 0.1);
            text-align: center;
        }

        .contact-bottom-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }

        .contact-bottom-card p {
            font-size: 13px;
            color: rgba(245, 240, 230, 0.7);
            line-height: 1.7;
        }

        /* Floating Action Buttons */
        .fab-container {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 500;
        }

        .fab-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            position: absolute;
            bottom: 0;
            right: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .fab-phone {
            background: var(--accent-gold);
            color: #fff;
        }

        .fab-phone:hover {
            background: var(--accent-gold-hover);
            transform: scale(1.1) translateY(-8px);
            box-shadow: 0 8px 24px rgba(200, 150, 62, 0.35);
        }

        .fab-whatsapp {
            background: #25D366;
            color: #fff;
        }

        .fab-whatsapp:hover {
            background: #20ba58;
            transform: scale(1.1) translateY(-8px);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }

        .fab-chat {
            background: #0F2419;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }

        .fab-chat:hover {
            background: rgba(200, 150, 62, 0.1);
            transform: scale(1.1) translateY(-8px);
            box-shadow: 0 8px 24px rgba(200, 150, 62, 0.2);
        }

        .fab-tooltip {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: #0F2419;
            color: var(--accent-gold);
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border: 1px solid rgba(200, 150, 62, 0.2);
        }

        .fab-btn:hover .fab-tooltip {
            opacity: 1;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-brand-logo {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .footer-contact-item {
            margin-bottom: 8px;
            font-size: 13px;
            color: rgba(245, 240, 230, 0.7);
        }

        .footer-contact-item a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--accent-gold-light);
        }

        .cd-item {
            margin-bottom: 12px;
        }

        .cd-icon {
            font-size: 18px;
            margin-right: 8px;
        }

        .cb-icon {
            font-size: 18px;
            margin-right: 8px;
        }

        .check {
            color: var(--accent-green);
            font-weight: 700;
            font-size: 16px;
        }

        .lang-btn {
            background: transparent;
            border: 1px solid rgba(245, 240, 230, 0.2);
            color: rgba(245, 240, 230, 0.7);
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            margin: 0 4px;
        }

        .lang-btn.active {
            background: rgba(200, 150, 62, 0.2);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .lang-btn:hover:not(.active) {
            border-color: rgba(245, 240, 230, 0.4);
            color: rgba(245, 240, 230, 0.9);
        }

        .lang-switcher {
            display: flex;
            gap: 8px;
        }

        .nav-toggle {
            background: transparent;
            border: none;
            color: var(--text-on-dark);
            font-size: 24px;
            cursor: pointer;
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 30px;
            height: 24px;
            padding: 0;
            z-index: 1001;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: rgba(245, 240, 230, 0.8);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav.scrolled .nav-toggle span {
            background: var(--text-secondary);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .nav-links.active {
            display: flex !important;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #0A1F15;
            padding: 20px;
            gap: 16px;
        }

        /* Hero & Layout */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        .hero-scroll-icon {
            font-size: 24px;
            color: rgba(245, 240, 230, 0.6);
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--bg-sand);
            padding: 14px 24px;
            position: relative;
            z-index: 4;
            border-bottom: 1px solid rgba(200,150,62,0.12);
        }

        .trust-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            max-width: 1100px;
            margin: 0 auto;
            flex-wrap: nowrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .trust-item span {
            line-height: 1.3;
        }

        .trust-item span br {
            display: none;
        }

        .trust-item strong {
            color: var(--text-primary);
        }

        .trust-item + .trust-item::before {
            content: '';
            display: block;
            width: 1px;
            height: 20px;
            background: rgba(200,150,62,0.25);
            margin-right: 4px;
            flex-shrink: 0;
        }

        .trust-icon {
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Marquee/Review Related */
        .mq-card {
            min-width: 300px;
            max-width: 400px;
            background: #fff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: var(--shadow-soft);
            flex-shrink: 0;
        }

        .mq-card-head {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            align-items: center;
        }

        .mq-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-sand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--accent-gold);
            font-size: 14px;
        }

        .mq-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
        }

        .mq-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        .mq-stars {
            color: var(--accent-gold);
            margin-bottom: 12px;
            font-size: 13px;
        }

        .mq-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .mq-google-tag {
            font-size: 11px;
            color: #4285F4;
            font-weight: 600;
            margin-top: 8px;
        }

        .stars-animated {
            display: inline-flex;
            gap: 2px;
            color: var(--accent-gold);
        }

        /* Hours/Contact */
        .hours-list-dark {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 16px;
            margin-top: 12px;
        }

        .hours-day-dark {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
        }

        .hours-day-dark:last-child {
            border-bottom: none;
        }

        .hours-time-dark {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .hours-closed-dark {
            color: rgba(232, 55, 55, 0.8);
        }

        /* VA Cards */
        .va-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 24px;
            border-radius: 8px;
            border: 1px solid rgba(200, 150, 62, 0.1);
        }

        .va-call-btn {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 16px;
            background: var(--accent-gold);
            color: #fff;
            border-radius: 4px;
            font-weight: 600;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .va-call-btn:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 4px 12px rgba(200, 150, 62, 0.3);
        }

        .va-call-note {
            font-size: 12px;
            color: rgba(245, 240, 230, 0.6);
            margin-top: 8px;
        }

        /* Footer */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            list-style: none;
        }

        /* Form Labels */
        .label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Direction indicators for marquee */
        .marquee-track.left {
            animation: scroll-left 40s linear infinite;
        }

        .marquee-track.right {
            animation: scroll-right 40s linear infinite;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-gold);
            color: #fff;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* .num and .solution for trust stats and pain cards */
        .num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .solution {
            background: var(--accent-gold-light);
            color: var(--accent-green);
            padding: 12px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 13px;
            margin-top: 16px;
        }

        /* Voice Agent Specific */
        .va-text {
            padding: 20px 0;
        }

        /* va-steps old styles removed — now using .va-timeline */

        .va-card-status {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .va-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 8px;
        }

        .va-card-sub {
            font-size: 13px;
            color: rgba(245, 240, 230, 0.75);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .va-or-divider {
            text-align: center;
            margin: 20px 0;
            color: rgba(245, 240, 230, 0.3);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }

        .va-or-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(200, 150, 62, 0.1);
            z-index: 0;
        }

        .va-or-divider span {
            position: relative;
            z-index: 1;
            background: linear-gradient(160deg, #0F2419 0%, #142E22 100%);
            padding: 0 12px;
        }

        .va-chat-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: rgba(230, 240, 230, 0.9);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .va-chat-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(200, 168, 100, 0.25);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-1px);
        }

        .va-whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 18px;
            background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.35s ease;
            margin-top: 12px;
        }

        .va-whatsapp-btn:hover {
            background: linear-gradient(135deg, #2BE070 0%, #25D366 100%);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
            transform: translateY(-2px);
        }

        .va-card-footer {
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 24px;
            font-size: 12px;
            color: rgba(200, 220, 200, 0.5);
            text-align: center;
            letter-spacing: 0.02em;
        }

        @media (max-width: 768px) {
            .va-timeline {
                flex-direction: column;
            }
            .va-tl-connector {
                transform: rotate(90deg);
                width: 24px;
                min-width: unset;
                height: 24px;
            }

            .nav-logo img {
                height: 36px;
                width: 36px;
            }

            .nav-logo-text {
                font-size: 16px;
            }

            .nav-links {
                display: none;
            }

            .nav-inner {
                padding: 0 20px;
            }

            .nav-toggle {
                display: flex;
            }

            .contact-bottom-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .fab-container {
                bottom: 16px;
                right: 16px;
            }

            .fab-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
        }

        /* ====== SCROLL ANIMATIONS ====== */
        .animate-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero-visual { max-height: 280px; }
            .hero { min-height: 85vh; }
            .hero-text { text-align: center; }
            .hero-description { margin: 0 auto 40px; }
            .hero-actions { justify-content: center; }
            .hero-tag { margin: 0 auto 24px; font-size: 12px; letter-spacing: 1.5px; }
            .story-grid { grid-template-columns: 1fr; gap: 48px; }
            .offer-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px 220px; }
            .gallery-item:first-child { grid-row: span 2; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-inner { padding: 0 20px; }
            .hero { padding: 140px 0 80px; margin-top: 32px; }
            .hero-content { padding: 0 20px; }
            .hero h1 { font-size: 44px; }
            .trust-inner { flex-wrap: wrap; gap: 40px; }
            .trust-divider { display: none; }
            .story-section, .offer-section, .gallery-section { padding: 60px 20px; }
            .offer-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
            .gallery-item:first-child { grid-row: span 1; }
        }

        @media (max-width: 480px) {
            
            .nav { top: 0; }
            .hero h1 { font-size: 36px; }
            .hero-sub { font-size: 18px; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .btn-primary, .btn-outline { text-align: center; justify-content: center; }
            .trust-number { font-size: 36px; }
            .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .gallery-item { height: 200px; }
        }