:root {
    --bg: #f6f1e6;
    --surface: rgba(255, 250, 240, 0.9);
    --text: #243126;
    --muted: #576659;
    --brand: #476b2c;
    --brand-dark: #2f4f1d;
    --brand-soft: #dce7cf;
    --accent: #c88b4a;
    --border: rgba(71, 107, 44, 0.18);
    --shadow: 0 18px 48px rgba(45, 66, 34, 0.14);
    --radius-lg: 28px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top left, rgba(220, 231, 207, 0.9), transparent 32%),
        radial-gradient(circle at top right, rgba(200, 139, 74, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.7;
    font-size: 18px;
}

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

a {
    color: var(--brand-dark);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #163d8f;
    outline-offset: 3px;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(251, 248, 241, 0.9);
    border-bottom: 1px solid rgba(71, 107, 44, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-lockup img {
    width: clamp(112px, 18vw, 160px);
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem;
    box-shadow: 0 8px 20px rgba(53, 82, 39, 0.12);
}

.brand-text {
    min-width: 0;
}

.brand-text strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.phone-link,
.cta-link,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 52px;
    padding: 0.85rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
}

.phone-link {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.cta-link {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(47, 79, 29, 0.22);
}

.ghost-link {
    border: 1px solid rgba(71, 107, 44, 0.24);
    background: rgba(255, 255, 255, 0.75);
    color: var(--brand-dark);
}

.phone-link:hover,
.ghost-link:hover {
    background: #eef5e7;
    color: var(--text);
}

.cta-link:hover {
    color: #fffaf0;
}

.hero {
    padding: 2rem 0 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.5rem;
    align-items: stretch;
}

.hero-panel,
.card,
.contact-card,
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: clamp(1.5rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -12% -28% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 139, 74, 0.14), transparent 68%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(220, 231, 207, 0.72);
    color: var(--brand-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.15;
    color: #1d2a1f;
}

h1 {
    font-size: clamp(2.25rem, 5.6vw, 4.4rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
}

.lead {
    font-size: 1.16rem;
    color: var(--muted);
    max-width: 58ch;
    margin: 1rem 0 0;
}

.status-box {
    margin: 1.25rem 0 0;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.status-box.success {
    background: #e6f4df;
    border: 1px solid rgba(71, 107, 44, 0.25);
    color: #21411c;
}

.status-box.error {
    background: #fef0ea;
    border: 1px solid rgba(175, 87, 51, 0.24);
    color: #6f2e12;
}

.status-box.is-hidden {
    display: none;
}

.is-hidden {
    display: none !important;
}

.hero-points,
.contact-list,
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.hero-points li,
.contact-list li,
.benefit-list li {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    color: var(--text);
}

.hero-points li::before,
.contact-list li::before,
.benefit-list li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 0.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-aside {
    display: grid;
    gap: 1.5rem;
}

.contact-card,
.card,
.form-card {
    padding: 1.35rem;
}

.contact-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.photo-card {
    overflow: hidden;
    padding: 0;
}

.photo-card img {
    aspect-ratio: 4 / 4.5;
    width: 100%;
    object-fit: cover;
}

.photo-card .caption {
    padding: 1.1rem 1.25rem 1.3rem;
}

.section {
    padding: 1.2rem 0;
}

.section-header {
    max-width: 64ch;
    margin-bottom: 1.2rem;
}

.service-grid,
.benefit-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-tag {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(220, 231, 207, 0.72);
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trust-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 230, 0.92));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.trust-panel img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    min-height: 100%;
}

.contact-section {
    padding: 1.4rem 0 2.4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-list a {
    word-break: break-word;
}

form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 700;
    color: #223523;
}

.required {
    color: #8a2b13;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(71, 107, 44, 0.26);
    border-radius: 16px;
    background: #fff;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--text);
    min-height: 56px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.hint,
.disclaimer {
    color: var(--muted);
    font-size: 0.96rem;
}

.error {
    min-height: 1.3em;
    color: #8a2b13;
    font-size: 0.95rem;
    font-weight: 700;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.consent-row.has-error {
    border-color: #8a2b13;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(71, 107, 44, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.consent-row input {
    width: 1.45rem;
    height: 1.45rem;
    min-height: auto;
    margin-top: 0.15rem;
    flex: 0 0 auto;
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.submit-button {
    border: none;
    border-radius: 999px;
    min-height: 58px;
    padding: 0.95rem 1.5rem;
    font: inherit;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(47, 79, 29, 0.2);
}

.submit-button:hover {
    color: #fffaf0;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 52px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(71, 107, 44, 0.24);
    background: rgba(255, 255, 255, 0.75);
    color: var(--brand-dark);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.ghost-button:hover {
    background: #eef5e7;
    color: var(--text);
}

.submit-button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.success-panel {
    padding: 1.2rem;
    border-radius: 22px;
    background: #e6f4df;
    border: 1px solid rgba(71, 107, 44, 0.25);
    color: #21411c;
}

.success-panel h3 {
    margin-bottom: 0.5rem;
}

.success-panel p {
    margin: 0 0 1rem;
}

.site-footer {
    border-top: 1px solid rgba(71, 107, 44, 0.12);
    padding: 1.25rem 0 2.3rem;
    color: var(--muted);
    font-size: 0.98rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .hero-grid,
    .contact-grid,
    .trust-panel {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .benefit-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body {
        font-size: 17px;
    }

    .container {
        width: min(var(--container), calc(100% - 1rem));
    }

    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-actions {
        width: 100%;
        justify-content: stretch;
    }

    .topbar-actions a {
        flex: 1 1 100%;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-panel,
    .card,
    .contact-card,
    .form-card {
        border-radius: 22px;
    }

    .service-grid,
    .benefit-grid,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .submit-row {
        align-items: stretch;
    }

    .submit-button,
    .submit-row .hint {
        width: 100%;
    }
}
