﻿:root {
            --bg: #f7f2e8;
            --text: #2a3128;
            --muted: #5e6758;
            --brand: #2b7a52;
            --brand-strong: #1f5f3f;
            --line: rgba(42, 49, 40, 0.14);
            --card: rgba(255, 255, 255, 0.74);
            --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 85% 10%, rgba(214, 144, 77, 0.32), rgba(214, 144, 77, 0) 34%),
                radial-gradient(circle at 12% 20%, rgba(43, 122, 82, 0.24), rgba(43, 122, 82, 0) 40%),
                linear-gradient(155deg, #f7f2e8 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); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
        .brand-logo { height: 44px; 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,
        nav a[aria-current="page"] {
            color: var(--brand-strong);
            background: rgba(43, 122, 82, 0.12);
        }

        .hero {
            padding: 68px 28px 30px;
        }

        .hero-actions {
            display: inline-flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 18px;
            padding: 8px;
            border: 1px solid rgba(31, 95, 63, 0.16);
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 0 10px 24px rgba(56, 45, 26, 0.08);
            backdrop-filter: blur(6px);
        }

        .anchor-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 190px;
            padding: 11px 18px;
            border-radius: 999px;
            border: 1px solid transparent;
            background: #fef7ea;
            color: #214733;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .anchor-btn:first-child {
            background: #fef7ea;
            color: #214733;
            box-shadow: none;
        }

        .anchor-btn.is-active {
            background: #f9efda;
            color: #214733;
            box-shadow: 0 8px 22px rgba(33, 71, 51, 0.2);
        }

        .anchor-btn:hover {
            background: #f9efda;
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(33, 71, 51, 0.2);
        }

        .anchor-btn:first-child:hover {
            background: #f9efda;
        }

        .anchor-btn.is-active:hover {
            background: #f9efda;
        }

        .anchor-btn:focus-visible {
            outline: 3px solid rgba(31, 95, 63, 0.26);
            outline-offset: 2px;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--brand-strong);
            margin-bottom: 10px;
            font-weight: 700;
        }

        h1 {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            line-height: 0.96;
            margin-bottom: 12px;
        }

        .hero p { color: var(--muted); max-width: 106ch; }

        .section {
            padding: 10px 28px 42px;
        }

        .section-title {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.8rem, 3.2vw, 2.6rem);
            margin-bottom: 14px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
        }

        .card h2 {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .card p,
        .card li {
            color: var(--muted);
            font-size: 0.94rem;
        }

        .channels {
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .channels a {
            color: #23543a;
            font-weight: 700;
            text-decoration: none;
        }

        .channels a:hover { text-decoration: underline; }

        .steps {
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .steps li {
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 10px;
        }

        .steps strong {
            color: #29533c;
            display: block;
            margin-bottom: 4px;
        }

        .map-section {
            padding-top: 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .testimonial-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
            display: grid;
            gap: 12px;
        }

        .testimonial-card p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .testimonial-card span {
            color: var(--muted);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .faq-list {
            display: grid;
            gap: 10px;
        }

        .faq-item {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            padding: 14px 16px;
            font-weight: 700;
            color: #24422d;
            background: rgba(255, 255, 255, 0.7);
            position: relative;
            padding-right: 38px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: 700;
            color: #29533c;
        }

        .faq-item[open] summary::after {
            content: "-";
        }

        .faq-item p {
            padding: 0 16px 16px;
        }

        .map-card p {
            margin-bottom: 12px;
        }

        .map-frame {
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }

        .map-frame iframe {
            width: 100%;
            height: 360px;
            border: 0;
            display: block;
        }

        .map-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(31, 95, 63, 0.26);
            background: rgba(255, 255, 255, 0.86);
            color: #1f5f3f;
            font-weight: 700;
            text-decoration: none;
            transition: 0.2s ease;
        }

        .map-link:hover {
            background: rgba(31, 95, 63, 0.08);
            transform: translateY(-1px);
        }

        .closing {
            background: linear-gradient(135deg, #2c6b49, #1d4f35);
            color: #f9fff9;
            padding: 36px 28px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .closing h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.7rem, 4vw, 2.4rem);
            margin-bottom: 6px;
        }

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

        .btn {
            text-decoration: none;
            border-radius: 999px;
            padding: 11px 18px;
            font-weight: 700;
            font-size: 0.92rem;
            background: #fef7ea;
            color: #214733;
        }

        .btn.alt {
            background: rgba(255, 255, 255, 0.18);
            color: #fef7ea;
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        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); }

        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 640px) {
            .site-shell { width: 95%; border-radius: 20px; }
            header, .hero, .section, .closing, footer { padding-left: 16px; padding-right: 16px; }
            .brand { font-size: 1.7rem; }
            .map-frame iframe { height: 280px; }
            .hero-actions { display: grid; width: 100%; }
            .anchor-btn { width: 100%; min-width: 0; }
        }

: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;
}
