﻿:root {
            --bg: #f7f2e8;
            --bg-soft: #fff9ef;
            --text: #2a3128;
            --muted: #5e6758;
            --brand: #2b7a52;
            --brand-strong: #1f5f3f;
            --accent: #d6904d;
            --card: rgba(255, 255, 255, 0.7);
            --line: rgba(42, 49, 40, 0.14);
            --shadow: 0 18px 45px rgba(56, 45, 26, 0.16);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Manrope", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 82% 8%, rgba(214, 144, 77, 0.34) 0%, rgba(214, 144, 77, 0) 34%),
                radial-gradient(circle at 10% 24%, rgba(43, 122, 82, 0.25) 0%, rgba(43, 122, 82, 0) 38%),
                linear-gradient(155deg, var(--bg) 0%, #efe7d8 50%, #f9f4ea 100%);
            min-height: 100vh;
            line-height: 1.5;
        }

        .site-shell {
            width: min(1120px, 92%);
            margin: 28px auto;
            border: 1px solid var(--line);
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(150deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54));
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow);
        }

        header {
            padding: 18px 28px;
            border-bottom: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.55);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .brand {
            font-family: "Cormorant Garamond", serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-strong);
            letter-spacing: 0.4px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .brand-logo { height: 56px; width: auto; }

        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.92rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 999px;
            transition: 0.2s ease;
        }

        nav a:hover {
            color: var(--brand-strong);
            background: rgba(43, 122, 82, 0.1);
        }

        .hero {
            padding: 6px 28px 40px;
            display: grid;
            grid-template-columns: 1.3fr 0.9fr;
            gap: 30px;
            align-items: center;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.84rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--brand-strong);
            margin-bottom: 12px;
            font-weight: 700;
        }

        h1 {
            font-family: "Cormorant Garamond", serif;
            font-weight: 700;
            font-size: clamp(2.3rem, 5vw, 4rem);
            line-height: 0.96;
            margin-bottom: 14px;
            color: #263722;
        }

        .hero p {
            color: var(--muted);
            font-size: 1.02rem;
            max-width: 58ch;
            margin-bottom: 24px;
        }

        .cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            text-decoration: none;
            border-radius: 999px;
            padding: 11px 18px;
            font-weight: 700;
            font-size: 0.92rem;
            transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--brand), var(--brand-strong));
            color: #fff;
            box-shadow: 0 10px 22px rgba(31, 95, 63, 0.28);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(31, 95, 63, 0.34);
        }

        .btn-soft {
            background: rgba(255, 255, 255, 0.78);
            color: var(--brand-strong);
            border: 1px solid rgba(31, 95, 63, 0.25);
        }

        .btn-soft:hover {
            transform: translateY(-2px);
            background: #ffffff;
        }

        .hero-card {
            background: linear-gradient(158deg, rgba(255, 255, 255, 0.75), rgba(247, 240, 224, 0.85));
            border: 1px solid rgba(42, 49, 40, 0.1);
            border-radius: 22px;
            padding: 22px;
        }

        .hero-card h2 {
            font-family: "Cormorant Garamond", serif;
            font-size: 2rem;
            margin-bottom: 10px;
            color: #2d4327;
        }

        .hero-card ul {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .hero-card li {
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(42, 49, 40, 0.1);
            background: rgba(255, 255, 255, 0.74);
            font-size: 0.93rem;
            color: var(--muted);
        }

        .section {
            padding: 24px 28px 44px;
        }

        .section-title {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.8rem, 3.3vw, 2.7rem);
            margin-bottom: 16px;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .service {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
            transition: transform 0.25s ease;
        }

        .service:hover {
            transform: translateY(-4px);
        }

        .service h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.5rem;
            color: #2b3d27;
            margin-bottom: 8px;
        }

        .service p {
            color: var(--muted);
            font-size: 0.92rem;
        }

        .carousel-section {
            padding: 0 0 44px;
        }

        .carousel-shell {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            max-height: 410px;
            background: #d9d1c3;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.55s ease;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
            isolation: isolate;
            height: 410px;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(31, 42, 30, 0.7) 0%, rgba(31, 42, 30, 0.18) 46%, rgba(31, 42, 30, 0.08) 100%);
            z-index: 1;
        }

        .carousel-caption {
            position: absolute;
            left: 28px;
            bottom: 28px;
            z-index: 2;
            max-width: 440px;
            padding: 18px 20px;
            border-radius: 18px;
            background: rgba(255, 250, 242, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(8px);
        }

        .carousel-caption h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 2rem;
            margin-bottom: 8px;
            color: #233423;
        }

        .carousel-caption p {
            margin: 0;
            color: #425040;
            font-size: 0.95rem;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.8);
            color: var(--brand-strong);
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .carousel-control:hover {
            transform: translateY(-50%) scale(1.04);
            background: #ffffff;
        }

        .carousel-control.prev {
            left: 18px;
        }

        .carousel-control.next {
            right: 18px;
        }

        .carousel-dots {
            position: absolute;
            left: 50%;
            bottom: 18px;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .carousel-dot.is-active {
            background: #ffffff;
            transform: scale(1.25);
        }

        .closing {
            background: linear-gradient(135deg, #2c6b49, #1d4f35);
            color: #f9fff9;
            border-radius: 0;
            padding: 40px 28px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .closing h4 {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 6px;
        }

        .closing p {
            color: rgba(249, 255, 249, 0.9);
            max-width: 60ch;
        }

        .closing .btn {
            background: #fef7ea;
            color: #214733;
        }

        footer {
            padding: 14px 28px 20px;
            font-size: 0.83rem;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.72);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            border-top: 1px solid var(--line);
        }

        .footer-social { display: flex; gap: 12px; align-items: center; }
        .footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: var(--muted); border: 1px solid var(--line); background: rgba(255,255,255,0.6); text-decoration: none; transition: 0.2s ease; }
        .footer-social a:hover { color: var(--brand-strong); border-color: var(--brand-strong); background: rgba(31,95,63,0.08); transform: translateY(-2px); }

        .reveal {
            opacity: 0;
            transform: translateY(14px);
            animation: rise 0.7s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.12s;
        }

        .delay-2 {
            animation-delay: 0.24s;
        }

        @keyframes rise {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 940px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .carousel-shell,
            .carousel-slide,
            .carousel-slide img {
                height: 290px;
                max-height: 290px;
            }

            .services {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .site-shell {
                width: 95%;
                border-radius: 20px;
            }

            header,
            .hero,
            .section,
            .closing,
            footer {
                padding-left: 16px;
                padding-right: 16px;
            }

            .carousel-shell,
            .carousel-slide,
            .carousel-slide img {
                height: 240px;
                max-height: 240px;
            }

            .carousel-caption {
                left: 16px;
                right: 16px;
                bottom: 52px;
                max-width: none;
            }

            .carousel-caption h3 {
                font-size: 1.7rem;
            }

            .carousel-control {
                width: 40px;
                height: 40px;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .brand {
                font-size: 1.7rem;
            }
        }

:where(a, button, [role="button"], summary, input, select, textarea):focus-visible {
    outline: 3px solid #1f5f3f;
    outline-offset: 2px;
}

nav a:focus-visible,
.btn:focus-visible,
.map-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(31, 95, 63, 0.22);
    border-radius: 10px;
}
