@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Roboto:wght@400;500;600&display=swap");

:root {
            --charcoal: #1c1c1e;
            --teal: #0d9488;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e5e5e7;
            --dark-gray: #8e8e93;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', system-ui, -apple-system, sans-serif;
            color: var(--charcoal);
            background-color: var(--white);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--charcoal);
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            border-bottom: 1px solid var(--medium-gray);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            font-family: 'Roboto Slab', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            letter-spacing: -0.5px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--charcoal);
            border-bottom: 2px solid transparent;
            padding-bottom: 0.25rem;
            transition: border-color 0.3s ease;
        }

        nav a:hover {
            border-bottom-color: var(--teal);
            color: var(--teal);
        }

        nav a.active {
            border-bottom-color: var(--teal);
            color: var(--teal);
        }

        /* Main Content */
        main {
            flex: 1;
        }

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

        .narrow-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 4rem 0;
        }

        section.full-bleed {
            padding: 4rem 0;
        }

        h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--charcoal);
            letter-spacing: -1px;
        }

        h2 {
            font-family: 'Roboto Slab', serif;
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            color: var(--charcoal);
            letter-spacing: -0.5px;
        }

        h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
        }

        .subheading {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 500;
            margin-bottom: 2rem;
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--charcoal);
        }

        .button {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            background-color: var(--teal);
            color: var(--white);
            border-radius: 0.375rem;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .button:hover {
            background-color: var(--charcoal);
            transform: translateY(-2px);
        }

        /* Hero Section */
        #hero {
            padding: 5rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.2rem;
            margin-bottom: 1.25rem;
        }

        .hero-text .subheading {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero-image-container {
            position: relative;
            height: 450px;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Service Overview */
        #service_overview {
            background-color: var(--light-gray);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .service-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .service-card-icon {
            width: 60px;
            height: 60px;
            background-color: var(--teal);
            border-radius: 0.375rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.75rem;
        }

        .service-card h3 {
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 0;
        }

        /* Craftsmanship Section */
        #craftsmanship {
            background-color: var(--white);
        }

        .craftsmanship-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2.5rem;
        }

        .craftsmanship-image-container {
            height: 400px;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .craftsmanship-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .craftsmanship-text h3 {
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .craftsmanship-text p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .craftsmanship-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .craftsmanship-list li {
            padding-left: 1.75rem;
            position: relative;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--charcoal);
        }

        .craftsmanship-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Local Coverage Section */
        #local_coverage {
            background-color: var(--light-gray);
        }

        .coverage-content {
            max-width: 700px;
            margin: 2rem auto;
        }

        .coverage-text {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .coverage-text p {
            margin-bottom: 1rem;
        }

        .coverage-highlight {
            background-color: var(--teal);
            color: var(--white);
            padding: 2rem;
            border-radius: 0.5rem;
            text-align: center;
            margin-top: 2rem;
        }

        .coverage-highlight p {
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }

        /* Material Care Section */
        #material_care {
            background-color: var(--white);
        }

        .care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .care-item {
            padding: 2rem;
            border-left: 4px solid var(--teal);
            background-color: var(--light-gray);
            border-radius: 0.375rem;
        }

        .care-item h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .care-item p {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 0;
        }

        /* CTA Section */
        #cta_contact {
            background-color: var(--charcoal);
            color: var(--white);
            text-align: center;
            padding: 5rem 2rem;
        }

        #cta_contact h2 {
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        #cta_contact .subheading {
            color: #ccc;
            margin-bottom: 2rem;
        }

        #cta_contact .button {
            background-color: var(--teal);
            margin-top: 1rem;
        }

        #cta_contact .button:hover {
            background-color: var(--white);
            color: var(--charcoal);
        }

        /* Footer */
        footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 2rem;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            display: block;
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--teal);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image-container {
                height: 350px;
            }

            .craftsmanship-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .craftsmanship-image-container {
                height: 300px;
            }

            nav {
                gap: 1rem;
                flex-wrap: wrap;
            }

            nav a {
                font-size: 0.85rem;
            }

            header .container {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

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

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

            section {
                padding: 3rem 0;
            }

            #hero {
                padding: 3rem 0;
            }

            #cta_contact {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            header {
                padding: 1rem;
            }

            .brand {
                font-size: 1.25rem;
            }

            nav {
                gap: 0.5rem;
            }

            nav a {
                font-size: 0.75rem;
            }

            .container,
            .narrow-container {
                padding: 0 1rem;
            }

            section {
                padding: 2rem 0;
            }

            .hero-image-container {
                height: 250px;
            }

            .craftsmanship-image-container {
                height: 250px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
