:root {
    --brown: #7b4b2a;
    --brown-dark: #5d351d;
    --terracotta: #c65a2e;
    --terracotta-dark: #a94522;
    --sage: #8a9a6b;
    --sage-dark: #68784b;
    --charcoal: #2f3437;
    --charcoal-soft: #454c50;
    --light: #f5f5f3;
    --cream: #fffdf8;
    --sage-light: #e9eddf;
    --clay-light: #f3dfd5;
    --line: #ded8cc;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(47, 52, 55, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--charcoal);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 12px clamp(18px, 5vw, 76px);
    background: rgba(47, 52, 55, 0.97);
    border-bottom: 4px solid var(--terracotta);
    box-shadow: 0 10px 24px rgba(47, 52, 55, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 180px;
    height: 82px;
    overflow: hidden;
    justify-content: center;
    background: var(--cream);
    border-radius: 5px;
}

.logo {
    width: 180px;
    height: auto;
    display: block;
    transform: scale(1.28);
    transform-origin: center;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-nav a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    padding: 10px 6px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 2px;
    height: 3px;
    background: transparent;
    border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: #ffe7da;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    background: var(--terracotta);
}

main {
    min-height: 70vh;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(47, 52, 55, 0.96), rgba(123, 75, 42, 0.88)),
        radial-gradient(circle at 92% 30%, rgba(138, 154, 107, 0.42), transparent 34%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    right: -150px;
    top: -180px;
    border: 72px solid rgba(255, 255, 255, 0.05);
    transform: rotate(16deg);
}

.hero::after {
    left: -4vw;
    right: -4vw;
    bottom: -65px;
    height: 120px;
    background: var(--light);
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
}

.hero-home {
    min-height: 610px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(47, 52, 55, 0.97), rgba(123, 75, 42, 0.82)),
        url("logo.png") right clamp(12px, 8vw, 120px) center / min(44vw, 560px) auto no-repeat;
}

.hero-page {
    padding: clamp(70px, 10vw, 125px) 0 clamp(88px, 12vw, 150px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
    color: var(--sage-light);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5rem);
    max-width: 980px;
}

h2 {
    font-size: clamp(1.85rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0 0 16px;
}

.hero-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 24px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 10px 0 var(--brown-dark), 0 18px 30px rgba(47, 52, 55, 0.18);
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.btn-soft {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.2);
}

.section {
    padding: clamp(54px, 8vw, 92px) 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.service-preview {
    padding-top: clamp(46px, 7vw, 82px);
}

.tile-grid,
.service-grid-large,
.feature-grid,
.reason-grid,
.trust-list {
    display: grid;
    gap: 18px;
}

.tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-tile,
.feature-card,
.reason-grid article,
.organic-panel,
.schedule-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.service-tile {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--charcoal);
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.96)),
        linear-gradient(135deg, var(--sage-light), var(--clay-light));
}

.service-tile:hover {
    border-color: var(--sage);
    transform: translateY(-2px);
}

.service-tile h2,
.service-tile h3 {
    color: var(--brown);
}

.service-tile p {
    color: var(--charcoal-soft);
    margin-bottom: 0;
}

.service-tile-large {
    min-height: 270px;
}

.tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 0 0 8px var(--sage-light);
}

.trust-band,
.why-section {
    background: var(--sage-light);
    border-top: 1px solid #d9dfcb;
    border-bottom: 1px solid #d9dfcb;
}

.trust-grid,
.split,
.schedule-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
}

.trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-list div,
.reason-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
}

.trust-list strong,
.reason-grid strong {
    display: block;
    color: var(--brown);
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.trust-list span,
.reason-grid span {
    display: block;
    color: var(--charcoal-soft);
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 26px;
}

.dark-card {
    background: var(--charcoal);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
}

.dark-card h3 {
    color: var(--white);
}

.dark-card p {
    color: rgba(255, 255, 255, 0.82);
}

.organic-panel {
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
        linear-gradient(135deg, var(--sage-light), var(--clay-light));
}

.panel-title {
    color: var(--brown);
    font-weight: 900;
    margin-bottom: 12px;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px var(--sage-light);
}

.reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-band {
    background:
        linear-gradient(110deg, var(--brown-dark), var(--brown));
    color: var(--white);
    padding: 46px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-content h2 {
    margin-bottom: 0;
}

.cta-card-section {
    padding: 10px 0 76px;
}

.cta-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 42px);
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--terracotta), var(--brown));
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.schedule-section {
    background: var(--light);
    scroll-margin-top: 150px;
}

.schedule-grid {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.schedule-card,
.contact-form {
    padding: clamp(22px, 4vw, 34px);
}

.calendar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    margin: 18px 0 22px;
}

.calendar-top {
    color: var(--brown);
    font-weight: 900;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-days span {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--charcoal);
    font-weight: 700;
}

.calendar-days span:nth-child(-n+7) {
    color: var(--brown);
}

.calendar-days .selected {
    background: var(--terracotta);
    color: var(--white);
}

label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 900;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid #cfc7b8;
    border-radius: 6px;
    background: var(--white);
    color: var(--charcoal);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(138, 154, 107, 0.3);
    border-color: var(--sage);
}

.contact-form .btn {
    width: 100%;
    margin-top: 18px;
}

.form-message {
    display: none;
    margin: 14px 0 0;
    padding: 12px;
    border-radius: 6px;
    font-weight: 800;
}

.form-message.success {
    display: block;
    background: var(--sage-light);
    color: #34431f;
}

.form-message.error {
    display: block;
    background: #f7ded6;
    color: #7a2616;
}

.response-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(56px, 8vw, 96px) 16px;
    background:
        linear-gradient(125deg, rgba(47, 52, 55, 0.06), rgba(123, 75, 42, 0.08)),
        var(--light);
}

.response-card {
    width: min(720px, 100%);
    padding: clamp(30px, 5vw, 52px);
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.response-mark {
    display: inline-flex;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 10px var(--sage-light);
}

.response-card.error .response-mark {
    background: var(--terracotta);
    box-shadow: 0 0 0 10px var(--clay-light);
}

.response-card h1 {
    color: var(--brown);
}

.response-card p {
    color: var(--charcoal-soft);
}

.response-actions {
    justify-content: center;
}

.response-actions .btn-soft {
    color: var(--charcoal);
    border-color: var(--line);
    background: var(--sage-light);
}

footer {
    background: #24292c;
    color: var(--white);
    text-align: left;
    padding: 24px clamp(16px, 5vw, 76px) 78px;
    border-top: 4px solid var(--sage);
}

footer p {
    margin: 0;
}

.mobile-call {
    display: none;
}

@media (max-width: 960px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 14px;
        padding: 10px 14px;
    }

    .site-nav {
        flex: 1;
        justify-content: flex-end;
        gap: 10px;
    }

    .site-nav a {
        text-align: center;
        padding: 9px 4px;
        font-size: 0.95rem;
    }

    .hero-home {
        min-height: auto;
        padding: 82px 0 150px;
        background:
            linear-gradient(120deg, rgba(47, 52, 55, 0.96), rgba(123, 75, 42, 0.86)),
            url("logo.png") center bottom 32px / min(84vw, 440px) auto no-repeat;
    }

    .tile-grid,
    .service-grid-large,
    .feature-grid,
    .reason-grid,
    .trust-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid,
    .split,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        display: grid;
    }
}

@media (max-width: 620px) {
    .site-header {
        gap: 8px;
        padding: 9px 10px;
    }

    .brand {
        width: 126px;
        height: 64px;
    }

    .logo {
        width: 126px;
        transform: scale(1.35);
    }

    .site-nav {
        gap: 4px;
    }

    .site-nav a {
        font-size: 0.82rem;
        padding: 8px 3px;
    }

    .container {
        width: min(100% - 26px, 1120px);
    }

    h1 {
        font-size: 2.35rem;
    }

    .actions,
    .actions .btn,
    .cta-content .btn {
        width: 100%;
    }

    .tile-grid,
    .service-grid-large,
    .feature-grid,
    .reason-grid,
    .trust-list {
        grid-template-columns: 1fr;
    }

    .service-tile,
    .service-tile-large {
        min-height: 210px;
    }

    .mobile-call {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 30;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50px;
        background: var(--sage);
        color: var(--white);
        border-radius: 7px;
        text-decoration: none;
        font-weight: 900;
        box-shadow: 0 14px 30px rgba(47, 52, 55, 0.24);
    }
}
