/* River Edge Remodeling — shared site styles.
   Extracted verbatim from the original single-page index.html so every
   page inherits one cached stylesheet instead of re-inlining ~40KB.
   Interior-page components are appended at the end under INTERIOR PAGES. */

:root {
            /* Refined Color Palette */
            --forest: #1a3a2f;
            --forest-deep: #0f2620;
            --forest-light: #2d5a4a;
            --sage: #4a7c6f;
            --sage-light: #6b9e8f;

            --copper: #c75d38;
            --copper-light: #d97a5a;
            --copper-dark: #a84a2a;
            --terracotta: #e07a52;

            --cream: #faf8f5;
            --warm-white: #fffdfb;
            --sand: #f5f1eb;
            --stone: #e8e2d9;

            --charcoal: #2c2c2c;
            --slate: #5a5a5a;
            --pewter: #8a8a8a;

            /* Gradients */
            --gradient-forest: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
            --gradient-copper: linear-gradient(135deg, var(--copper) 0%, var(--terracotta) 100%);
            --gradient-subtle: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);

            /* Shadows */
            --shadow-soft: 0 4px 20px rgba(26, 58, 47, 0.08);
            --shadow-medium: 0 8px 40px rgba(26, 58, 47, 0.12);
            --shadow-strong: 0 20px 60px rgba(26, 58, 47, 0.15);
            --shadow-copper: 0 8px 30px rgba(199, 93, 56, 0.25);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--charcoal);
            background: var(--warm-white);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
        }

        /* Custom Logo SVG */
        .logo-svg {
            height: 48px;
            width: auto;
        }

        /* Floating Call Button */
        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--copper);
            color: var(--warm-white);
            padding: 16px 28px;
            border-radius: 60px;
            text-decoration: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.3px;
            box-shadow: var(--shadow-copper), 0 0 0 0 rgba(199, 93, 56, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .floating-call:hover {
            transform: translateY(-3px);
            background: var(--copper-dark);
            box-shadow: 0 12px 40px rgba(199, 93, 56, 0.35);
        }

        .floating-call svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        @keyframes pulse-ring {
            0%, 100% { box-shadow: var(--shadow-copper), 0 0 0 0 rgba(199, 93, 56, 0.4); }
            50% { box-shadow: var(--shadow-copper), 0 0 0 12px rgba(199, 93, 56, 0); }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 24px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 253, 251, 0.95);
            backdrop-filter: blur(20px);
            padding: 16px 6%;
            box-shadow: 0 1px 0 rgba(26, 58, 47, 0.08);
        }

        .navbar.scrolled .logo-text {
            color: var(--forest);
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 1px;
            line-height: 1;
        }

        .nav-brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--warm-white);
            letter-spacing: -0.3px;
            transition: color 0.4s ease;
            line-height: 1.1;
        }

        .nav-brand-sub {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: 0.65rem;
            color: var(--copper-light);
            letter-spacing: 0.22em;
            text-transform: uppercase;
            transition: color 0.4s ease;
        }

        .navbar.scrolled .nav-brand-name {
            color: var(--forest);
        }

        .navbar.scrolled .nav-brand-sub {
            color: var(--copper);
        }

        @media (max-width: 480px) {
            .nav-brand { display: none; }
        }

        .navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        .navbar.scrolled .mobile-menu-btn span {
            background: var(--forest);
        }

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

        .logo-mark {
            position: relative;
            width: 52px;
            height: 52px;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 1.75rem;
            color: var(--warm-white);
            letter-spacing: -0.5px;
            transition: color 0.4s ease;
        }

        .logo-text span {
            font-weight: 500;
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            position: relative;
            transition: all 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--copper-light);
        }

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

        .nav-cta {
            background: var(--copper) !important;
            color: var(--warm-white) !important;
            padding: 14px 32px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            box-shadow: var(--shadow-copper);
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            background: var(--copper-dark) !important;
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 26px;
            height: 2px;
            background: var(--warm-white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--forest);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 80% 50% at 20% 80%, rgba(199, 93, 56, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(74, 124, 111, 0.15) 0%, transparent 50%);
        }

        .hero-texture {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.4;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 140px 6%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 100px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--sage-light);
            border-radius: 50%;
        }

        .hero-badge span {
            color: var(--sage-light);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 4.2rem;
            color: var(--warm-white);
            margin-bottom: 28px;
            letter-spacing: -1px;
        }

        .hero h1 .accent {
            color: var(--copper-light);
            font-style: italic;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            margin-bottom: 44px;
            max-width: 520px;
            font-weight: 400;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            letter-spacing: 0.2px;
        }

        .btn-primary {
            background: var(--copper);
            color: var(--warm-white);
            box-shadow: var(--shadow-copper);
        }

        .btn-primary:hover {
            background: var(--copper-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(199, 93, 56, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--warm-white);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 64px;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--copper-light);
            display: block;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-top: 8px;
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .hero-image-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            z-index: 2;
            pointer-events: none;
        }

        .hero-image {
            width: 100%;
            height: 520px;
            object-fit: cover;
            display: block;
        }

        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(26, 58, 47, 0.1) 0%, rgba(26, 58, 47, 0.3) 100%);
        }

        .floating-card {
            position: absolute;
            background: var(--warm-white);
            border-radius: 12px;
            padding: 20px 24px;
            box-shadow: var(--shadow-medium);
            display: flex;
            align-items: center;
            gap: 16px;
            animation: float 4s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 40px;
            right: -20px;
        }

        .floating-card-2 {
            bottom: 60px;
            left: -30px;
            animation-delay: 2s;
        }

        .floating-card-icon {
            width: 48px;
            height: 48px;
            background: var(--forest);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .floating-card-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--warm-white);
        }

        .floating-card-text h4 {
            font-size: 0.95rem;
            color: var(--charcoal);
            margin-bottom: 2px;
        }

        .floating-card-text p {
            font-size: 0.85rem;
            color: var(--slate);
            font-weight: 400;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

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

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

        /* Services Section */
        .services {
            padding: 140px 6%;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 80px;
        }

        .section-tag {
            display: inline-block;
            color: var(--copper);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 3.2rem;
            color: var(--forest);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .section-title .accent {
            color: var(--copper);
            font-style: italic;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--slate);
            line-height: 1.8;
        }

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

        .service-card {
            background: var(--warm-white);
            border-radius: 16px;
            padding: 44px 36px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-soft);
            border: 1px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
            border-color: rgba(199, 93, 56, 0.15);
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: var(--forest);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--copper);
            transform: scale(1.05);
        }

        .service-icon svg {
            width: 36px;
            height: 36px;
            fill: var(--warm-white);
        }

        .service-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: var(--forest);
            margin-bottom: 14px;
        }

        .service-card p {
            color: var(--slate);
            line-height: 1.75;
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--copper);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

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

        .service-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Why Choose Us */
        .why-us {
            padding: 140px 6%;
            background: var(--forest);
            position: relative;
            overflow: hidden;
        }

        .why-us::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 100% 50%, rgba(74, 124, 111, 0.2) 0%, transparent 60%);
        }

        .why-us-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .why-us-text h2 {
            font-size: 3.2rem;
            color: var(--warm-white);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .why-us-text h2 .accent {
            color: var(--copper-light);
            font-style: italic;
        }

        .why-us-text > p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 48px;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: var(--copper);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--warm-white);
        }

        .feature-content h4 {
            font-size: 1.15rem;
            color: var(--warm-white);
            margin-bottom: 6px;
        }

        .feature-content p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.65;
            font-size: 0.95rem;
        }

        .why-us-image {
            position: relative;
        }

        .why-us-img {
            width: 100%;
            height: 580px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--shadow-strong);
        }

        .experience-badge {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: var(--warm-white);
            border-radius: 14px;
            padding: 28px 36px;
            box-shadow: var(--shadow-medium);
            text-align: center;
        }

        .experience-badge .number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--copper);
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.9rem;
            color: var(--forest);
            font-weight: 600;
            margin-top: 4px;
        }

        /* Process Section */
        .process {
            padding: 140px 6%;
            background: var(--warm-white);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 52px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--forest), var(--copper));
            opacity: 0.3;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 104px;
            height: 104px;
            background: var(--forest);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-soft);
        }

        .process-step:hover .step-number {
            background: var(--copper);
            transform: scale(1.08);
        }

        .step-number span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--warm-white);
        }

        .process-step h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--forest);
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--slate);
            line-height: 1.7;
            font-size: 0.95rem;
            padding: 0 8px;
        }

        /* Testimonials */
        .testimonials {
            padding: 140px 6%;
            background: var(--cream);
        }

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

        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card {
            min-width: 100%;
            padding: 60px;
            background: var(--warm-white);
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            text-align: center;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 32px;
        }

        .testimonial-stars svg {
            width: 22px;
            height: 22px;
            fill: var(--copper);
        }

        .testimonial-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.65rem;
            color: var(--charcoal);
            line-height: 1.6;
            margin-bottom: 36px;
            font-style: italic;
            font-weight: 500;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            background: var(--forest);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--warm-white);
        }

        .author-info {
            text-align: left;
        }

        .author-info h4 {
            font-size: 1.05rem;
            color: var(--forest);
            margin-bottom: 2px;
        }

        .author-info p {
            color: var(--slate);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--forest);
            opacity: 0.25;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            opacity: 1;
            background: var(--copper);
            transform: scale(1.2);
        }

        /* CTA Section */
        .cta {
            padding: 120px 6%;
            background: var(--copper);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3.2rem;
            color: var(--warm-white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .cta p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 44px;
            line-height: 1.7;
        }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: var(--warm-white);
            color: var(--copper);
            padding: 24px 52px;
            border-radius: 12px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: var(--shadow-strong);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .cta-phone:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }

        .cta-phone svg {
            width: 32px;
            height: 32px;
            fill: var(--copper);
        }

        /* Gallery Section */
        .gallery {
            padding: 140px 6%;
            background: var(--warm-white);
        }

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

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

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 58, 47, 0.85), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 24px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--warm-white);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact {
            padding: 140px 6%;
            background: var(--forest);
        }

        .contact-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 3.2rem;
            color: var(--warm-white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .contact-info h2 .accent {
            color: var(--copper-light);
            font-style: italic;
        }

        .contact-info > p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 48px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: var(--copper);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--warm-white);
        }

        .contact-item-content h4 {
            color: var(--warm-white);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .contact-item-content p,
        .contact-item-content a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--copper-light);
        }

        .contact-form-container {
            background: var(--warm-white);
            border-radius: 20px;
            padding: 52px;
            box-shadow: var(--shadow-strong);
        }

        .contact-form h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            color: var(--forest);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--charcoal);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1.5px solid var(--stone);
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--warm-white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--copper);
            box-shadow: 0 0 0 4px rgba(199, 93, 56, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-submit {
            width: 100%;
            background: var(--copper);
            color: var(--warm-white);
            padding: 18px;
            border: none;
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-copper);
        }

        .form-submit:hover {
            background: var(--copper-dark);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--forest-deep);
            padding: 72px 6% 40px;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo-text {
            color: var(--warm-white);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            max-width: 320px;
            font-size: 0.95rem;
        }

        .footer-links h4,
        .footer-contact h4 {
            color: var(--warm-white);
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--copper-light);
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .footer-contact svg {
            width: 18px;
            height: 18px;
            fill: var(--copper-light);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

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

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--copper);
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--warm-white);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--forest-deep);
            z-index: 998;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 36px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu a {
            color: var(--warm-white);
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--copper-light);
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 { font-size: 3.4rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
            .process-steps::before { display: none; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
        }

        @media (max-width: 992px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: flex; }
            .mobile-menu { display: flex; }
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-description { margin: 0 auto 44px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { display: none; }
            .why-us-content { grid-template-columns: 1fr; }
            .why-us-image { order: -1; }
            .contact-content { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 40px; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.6rem; }
            .section-title { font-size: 2.4rem; }
            .services-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .cta h2 { font-size: 2.4rem; }
            .cta-phone { font-size: 1.6rem; padding: 20px 36px; }
            .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .gallery-item { height: 220px; }
            .floating-call { padding: 16px; border-radius: 50%; }
            .floating-call span { display: none; }
            .contact-form-container { padding: 36px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.2rem; }
            .hero-description { font-size: 1.05rem; }
            .hero-stats { flex-direction: column; gap: 24px; }
            .stat-item { text-align: center; }
            .btn { padding: 16px 28px; }
            .experience-badge { position: relative; bottom: auto; left: auto; margin-top: 24px; }
        }

/* ============================================================
   INTERIOR PAGES
   Components used by the non-homepage routes. Follows the same
   conventions as the sections above: 6% side gutters, cream/warm-white
   alternation, Cormorant Garamond headings, copper accent for emphasis.
   ============================================================ */

/* --- Interior hero -------------------------------------------------- */
.page-hero {
    background: var(--gradient-forest);
    color: var(--cream);
    padding: 190px 6% 90px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(199, 93, 56, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    margin: 18px 0 20px;
    color: var(--cream);
}
.page-hero h1 .accent { color: var(--copper-light); }
.page-hero p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(250, 248, 245, 0.82);
    max-width: 680px;
}
.page-hero .btn { margin-top: 34px; }

/* --- Breadcrumbs ---------------------------------------------------- */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.6);
}
.breadcrumbs a { color: var(--copper-light); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden] { opacity: 0.45; }

/* --- Generic content band ------------------------------------------- */
.band { padding: 110px 6%; }
.band-cream { background: var(--cream); }
.band-white { background: var(--warm-white); }
.band-sand  { background: var(--sand); }
.band-narrow { max-width: 820px; margin: 0 auto; }

/* --- Prose ---------------------------------------------------------- */
.prose h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    margin: 0 0 22px;
    color: var(--forest);
}
.prose h3 {
    font-size: 1.5rem;
    margin: 40px 0 14px;
    color: var(--forest);
}
.prose p {
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.03rem;
}
.prose ul { margin: 0 0 24px; padding-left: 0; list-style: none; }
.prose ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 13px;
    color: var(--slate);
    line-height: 1.7;
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--copper);
}
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose a { color: var(--copper-dark); }

/* --- Two-column layout with sticky aside ---------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 70px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.aside-card {
    background: var(--warm-white);
    border: 1px solid var(--stone);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 110px;
}
.aside-card h3 {
    font-size: 1.45rem;
    color: var(--forest);
    margin-bottom: 12px;
}
.aside-card p {
    color: var(--slate);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.aside-card .btn { width: 100%; justify-content: center; }
.aside-divider {
    height: 1px;
    background: var(--stone);
    margin: 26px 0;
}
.aside-fact { display: flex; gap: 14px; margin-bottom: 18px; }
.aside-fact svg { width: 20px; height: 20px; fill: var(--copper); flex-shrink: 0; margin-top: 3px; }
.aside-fact div h4 { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 3px; }
.aside-fact div p { font-size: 0.9rem; margin: 0; color: var(--pewter); }

/* --- Checklist grid ------------------------------------------------- */
.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin: 36px 0 10px;
}
.check-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.check-item svg {
    width: 24px;
    height: 24px;
    fill: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}
.check-item h4 { font-size: 1.02rem; color: var(--charcoal); margin-bottom: 5px; }
.check-item p { font-size: 0.94rem; color: var(--slate); line-height: 1.65; margin: 0; }

/* --- Service index cards -------------------------------------------- */
.svc-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.svc-index-card {
    background: var(--warm-white);
    border: 1px solid var(--stone);
    border-radius: 20px;
    padding: 40px 34px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-index-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--copper);
}
.svc-index-card .service-icon { margin-bottom: 22px; }
.svc-index-card h3 { font-size: 1.6rem; color: var(--forest); margin-bottom: 12px; }
.svc-index-card p { color: var(--slate); line-height: 1.7; font-size: 0.98rem; flex-grow: 1; }
.svc-index-card .service-link { margin-top: 22px; }

/* --- Service areas -------------------------------------------------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
}
.area-card {
    background: var(--warm-white);
    border: 1px solid var(--stone);
    border-left: 4px solid var(--copper);
    border-radius: 14px;
    padding: 28px 26px;
}
.area-card h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: 8px; }
.area-card .area-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pewter);
    margin-bottom: 12px;
    display: block;
}
.area-card p { color: var(--slate); font-size: 0.94rem; line-height: 1.7; margin: 0; }

/* --- FAQ accordion --------------------------------------------------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--stone);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 28px 46px 28px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    position: relative;
    line-height: 1.5;
}
.faq-q::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--copper);
    border-bottom: 2px solid var(--copper);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a p {
    color: var(--slate);
    line-height: 1.85;
    padding-bottom: 28px;
    margin: 0;
    font-size: 1rem;
}
.faq-a p + p { padding-top: 0; margin-top: -12px; padding-bottom: 28px; }

/* --- Project cards --------------------------------------------------- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.project-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--stone);
    box-shadow: var(--shadow-soft);
}
.project-card-body { padding: 30px 28px; }
.project-tag {
    display: inline-block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--copper-dark);
    background: rgba(199, 93, 56, 0.1);
    padding: 6px 13px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.project-card h3 { font-size: 1.45rem; color: var(--forest); margin-bottom: 10px; }
.project-card p { color: var(--slate); font-size: 0.96rem; line-height: 1.72; margin: 0; }
.project-scope {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--stone);
    font-size: 0.88rem;
    color: var(--pewter);
    line-height: 1.7;
}
.project-scope strong { color: var(--slate); font-weight: 600; }

/* --- Numbered steps (vertical) --------------------------------------- */
.steps-vertical { max-width: 820px; margin: 0 auto; }
.step-row {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 26px;
    padding-bottom: 42px;
    position: relative;
}
.step-row:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 33px;
    top: 62px;
    bottom: 0;
    width: 2px;
    background: var(--stone);
}
.step-badge {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--gradient-forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.step-body h3 { font-size: 1.4rem; color: var(--forest); margin: 12px 0 10px; }
.step-body p { color: var(--slate); line-height: 1.78; margin: 0; font-size: 1rem; }

/* --- Pull quote / callout -------------------------------------------- */
.callout {
    background: var(--sand);
    border-left: 4px solid var(--sage);
    border-radius: 0 14px 14px 0;
    padding: 30px 34px;
    margin: 34px 0;
}
.callout p { margin: 0; color: var(--slate); line-height: 1.8; font-size: 1rem; }
.callout strong { color: var(--forest); }

/* --- Simple CTA band -------------------------------------------------- */
.cta-band {
    background: var(--gradient-forest);
    color: var(--cream);
    padding: 96px 6%;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 16px;
}
.cta-band h2 .accent { color: var(--copper-light); }
.cta-band p {
    color: rgba(250, 248, 245, 0.8);
    max-width: 560px;
    margin: 0 auto 34px;
    line-height: 1.75;
}
.cta-band .hero-buttons { justify-content: center; }

/* --- Form status message ---------------------------------------------- */
.form-status {
    display: none;
    margin-top: 18px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(74, 124, 111, 0.14); color: #2d5a4a; }
.form-status.err { background: rgba(199, 93, 56, 0.12); color: var(--copper-dark); }

/* --- Interior responsive ---------------------------------------------- */
@media (max-width: 968px) {
    .split { grid-template-columns: 1fr; gap: 48px; }
    .aside-card { position: static; }
}
@media (max-width: 768px) {
    .page-hero { padding: 150px 6% 70px; }
    .band { padding: 80px 6%; }
    .step-row { grid-template-columns: 52px 1fr; gap: 18px; }
    .step-badge { width: 50px; height: 50px; font-size: 1.4rem; }
    .step-row:not(:last-child)::before { left: 25px; top: 56px; }
}

/* --- "Built with Demetrion.dev" credit --------------------------------- */
.footer-credit {
    display: inline-block;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(250, 248, 245, 0.18);
    opacity: 0.75;
}
.footer-credit a {
    color: var(--copper-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}
.footer-credit a:hover { color: var(--terracotta); text-decoration: underline; }
@media (max-width: 640px) {
    .footer-credit {
        display: block;
        margin: 10px 0 0;
        padding: 10px 0 0;
        border-left: none;
        border-top: 1px solid rgba(250, 248, 245, 0.18);
    }
}

/* --- Contact form honeypot -------------------------------------------
   Must be invisible and unfocusable, but NOT display:none -- some bots
   skip hidden inputs, and the point is that they fill this one in. */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Select styled to match the existing .contact-form inputs. */
.contact-form select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--stone);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--warm-white);
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a5a5a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
}
.contact-form select:focus {
    outline: none;
    border-color: var(--copper);
}