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

:root {
            --color-dusty-rose: #be185d;
            --color-cream: #fffbeb;
            --color-dark-brown: #451a03;
            --color-white: #ffffff;
            --color-light-gray: #f5f5f0;
            --color-text: #2d2d2d;
            --color-accent: #be185d;
        }

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

        html, body {
            height: 100%;
        }

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

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

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5em;
        }

        h1 {
            font-size: 3.5rem;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.5rem;
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: 1.75rem;
        }

        p {
            margin-bottom: 1.2em;
            font-size: 1rem;
        }

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

        a:hover {
            color: var(--color-dark-brown);
        }

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

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

        .brand {
            font-family: 'Roboto Slab', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-dark-brown);
        }

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

        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background-color: var(--color-cream);
            color: var(--color-accent);
        }

        nav a.active {
            background-color: var(--color-accent);
            color: var(--color-white);
        }

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

        section {
            padding: 6rem 2rem;
        }

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

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: flex-end;
            padding: 0;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem 2rem 6rem 2rem;
            max-width: 600px;
            color: var(--color-white);
        }

        .hero-content h1 {
            color: var(--color-white);
            margin-bottom: 0.8rem;
        }

        .hero-subheading {
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            font-family: 'Roboto', system-ui, sans-serif;
        }

        /* Section Layouts */
        .section-split {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 4rem;
            align-items: center;
        }

        .section-split.reverse {
            grid-template-columns: 60% 40%;
        }

        .section-image {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

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

        .section-image-small {
            max-width: 280px;
            height: 280px;
        }

        .section-image-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-content h2 {
            color: var(--color-dark-brown);
            margin-bottom: 0.5rem;
        }

        .section-subheading {
            font-size: 1.1rem;
            color: var(--color-accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-content p {
            color: var(--color-text);
            line-height: 1.8;
        }

        /* Highlight / Pull Quote */
        .highlight-block {
            background-color: var(--color-cream);
            padding: 2.5rem;
            border-left: 4px solid var(--color-accent);
            margin: 2rem 0;
            border-radius: 4px;
        }

        .highlight-block p {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--color-dark-brown);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-dark-brown);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d0d0c8;
            border-radius: 4px;
            font-family: 'Roboto', system-ui, sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.1);
        }

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

        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background-color: var(--color-accent);
            color: var(--color-white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', system-ui, sans-serif;
        }

        .btn:hover {
            background-color: var(--color-dark-brown);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-accent);
            border: 2px solid var(--color-accent);
            padding: 0.8rem 1.8rem;
        }

        .btn-secondary:hover {
            background-color: var(--color-accent);
            color: var(--color-white);
        }

        /* Footer */
        footer {
            background-color: var(--color-dark-brown);
            color: var(--color-cream);
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

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

        .footer-column a,
        .footer-column p {
            color: var(--color-cream);
            font-size: 0.9rem;
            margin-bottom: 0.7rem;
            opacity: 0.9;
        }

        .footer-column a:hover {
            opacity: 1;
            color: var(--color-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 251, 235, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: var(--color-cream);
            opacity: 0.8;
            font-size: 0.9rem;
        }

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

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .section-split,
            .section-split.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-content {
                padding: 3rem 1.5rem 4rem 1.5rem;
                max-width: 100%;
            }

            .hero-subheading {
                font-size: 1.1rem;
            }

            nav {
                gap: 1rem;
            }

            nav a {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .header-container {
                padding: 0 1.5rem;
            }

            .brand {
                font-size: 1.2rem;
            }
        }

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

            h2 {
                font-size: 1.4rem;
            }

            .section-image-small {
                max-width: 100%;
                height: 250px;
            }

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

            nav {
                flex-direction: column;
                gap: 0.5rem;
                align-items: flex-start;
            }

            nav a {
                width: 100%;
                text-align: left;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
