:root {
    --teal: #6fa8a6;
    --teal-deep: #2f7f81;
    --charcoal: #1e2224;
    --off-white: #f6f7f8;
    --gray-050: #f0f2f3;
    --gray-100: #e4e7ea;
    --gray-200: #cfd6db;
    --gray-300: #b7c1c7;
    --accent-warm: #e07a5f;
    --sand: #f7efe3;
    --shadow-soft: 0 14px 40px rgba(30, 34, 36, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    color: var(--charcoal);
    margin-top: 0;
}

p,
li {
    margin-top: 0;
}

a {
    color: var(--teal-deep);
    text-decoration: none;
}

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

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 247, 248, 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.brand img {
    height: 70px;
    width: auto;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--teal-deep);
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 500;
}

.nav a {
    color: var(--charcoal);
}

.nav a:hover {
    color: var(--teal-deep);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.btn:focus-visible {
    outline: 3px solid rgba(111, 168, 166, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--teal-deep);
    color: #fff;
    box-shadow: 0 10px 20px rgba(47, 127, 129, 0.25);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(47, 127, 129, 0.28);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-deep);
    border: 1px solid var(--teal-deep);
}

.btn-secondary:hover {
    background: rgba(111, 168, 166, 0.08);
}

.btn-light {
    background: #fff;
    color: var(--teal-deep);
    border: 1px solid rgba(111, 168, 166, 0.4);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* Hero */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at top left, rgba(111, 168, 166, 0.2), rgba(111, 168, 166, 0)), url(/wood-texture-hero.png) center/cover no-repeat;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 34, 36, 0.7), rgba(47, 127, 129, 0.55));
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
}

.hero-copy {
    color: #fff;
}

.hero-copy .eyebrow {

    color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.94);
    max-width: 56ch;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-assurances {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.hero-assurances li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.hero-assurances li::before {
    content: "\2714";
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    margin-top: 0.15rem;
    color: var(--teal-deep);
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.hero-highlight h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.hero-stats {
    display: grid;
    gap: 1.25rem;
    margin: 1.75rem 0 0;
}

.hero-stats div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.hero-stats dt {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.hero-stats dd {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section--muted {
    background: var(--sand);
}

.section-intro {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-intro h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.section-intro p {
    color: rgba(30, 34, 36, 0.75);
    font-size: 1.05rem;
}

.reassurance {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: start;
}

.reassurance-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.reassurance-list li {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.reassurance-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    justify-items: center;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--teal-deep);
    color: #fff;
    min-height: 420px;
    display: flex;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    width: min(100%, 520px);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 34, 36, 0.15) 0%, rgba(30, 34, 36, 0.68) 100%), var(--image) center/cover no-repeat;
}

.service-card__content {
    position: relative;
    padding: 2.25rem;
    display: grid;
    gap: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.service-card h3 {
    color: #fff;
    font-size: 1.8rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.88);
}

.service-card ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.family-focus {
    background: linear-gradient(135deg, rgba(111, 168, 166, 0.08), rgba(255, 255, 255, 0));
}

.family-focus-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.family-focus__image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.family-focus__content {
    max-width: 560px;
}

.checklist {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.checklist li {
    position: relative;
    padding-left: 2.4rem;
    font-weight: 500;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: url("/check-circle-1.svg") no-repeat center/contain;
}

/* Slideshow */
.slideshow {
    position: relative;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.slideshow__viewport {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 2.5rem 1.5rem 1.25rem;
    background: linear-gradient(180deg, rgba(30, 34, 36, 0) 0%, rgba(30, 34, 36, 0.72) 100%);
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.slideshow__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 34, 36, 0.48);
    color: #fff;
    border: none;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 5;
}

.slideshow__control:hover,
.slideshow__control:focus-visible {
    background: rgba(47, 127, 129, 0.64);
    outline: none;
}

.slideshow__control--prev {
    left: 1rem;
}

.slideshow__control--next {
    right: 1rem;
}

.slideshow__indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.slideshow__indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
    border: none;
}

.slideshow__indicator.is-active,
.slideshow__indicator:focus-visible {
    background: var(--teal-deep);
    transform: scale(1.1);
    outline: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Process */
.process {
    background: var(--gray-050);
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

.process-steps li {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-soft);
}

.process-steps h3 {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-deep);
}

.process-steps p {
    margin: 0.75rem 0 0;
    color: rgba(30, 34, 36, 0.75);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(160deg, rgba(47, 127, 129, 0.08), rgba(255, 255, 255, 0));
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-grid figure {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-grid blockquote {
    margin: 0;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(30, 34, 36, 0.85);
}

.testimonial-grid figcaption {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--teal-deep);
}

/* CTA banner */
.cta-banner {
    margin: 1.1rem;
}

.cta-banner__inner {
    background: linear-gradient(135deg, rgba(47, 127, 129, 0.9), rgba(111, 168, 166, 0.8));
    color: #fff;
    border-radius: 28px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.cta-banner__inner h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner__inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact */
.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
    background: linear-gradient(180deg, rgba(111, 168, 166, 0.12), rgba(255, 255, 255, 0.9));
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.98rem;
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: var(--charcoal);
}

.form-label {
    font-weight: 600;
    color: var(--charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
    font: inherit;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--off-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--teal-deep);
    box-shadow: 0 0 0 4px rgba(111, 168, 166, 0.2);
    outline: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-footnote {
    font-size: 0.85rem;
    color: rgba(30, 34, 36, 0.6);
    margin: 0;
}

.form-status {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.form-status--success {
    background: rgba(111, 168, 166, 0.16);
    border-color: rgba(47, 127, 129, 0.4);
    color: var(--teal-deep);
}

.form-status--error {
    background: rgba(224, 122, 95, 0.12);
    border-color: rgba(224, 122, 95, 0.4);
    color: #9c3c23;
}

.btn[disabled],
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--gray-100);
    background: var(--off-white);
    padding: 1.5rem 0;
    color: rgba(30, 34, 36, 0.6);
}

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

.site-footer a {
    color: var(--teal-deep);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer a img {
    height: 24px;
    width: 24px;
}

.footer-contact {
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.footer-contact__title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(30, 34, 36, 0.55);
}

.footer-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.25rem;
}

.footer-contact__list li {
    color: rgba(30, 34, 36, 0.7);
}

.footer-contact__list strong {
    font-weight: 600;
    color: var(--charcoal);
}

/* Responsive */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        justify-items: stretch;
    }

    .service-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: .5rem;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-highlight {
        order: -1;
    }

    .cta-banner .cta-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card {
        min-height: 360px;
    }

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

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .nav__contact {
        display: none;
    }

    .nav {
        justify-content: center;
    }

    .nav .btn {
        padding: 0.5rem 1rem;
    }

    .header-inner.container {
        padding: .5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .slideshow__viewport {
        aspect-ratio: 4 / 3;
    }

    .slideshow__control {
        width: 2.4rem;
        height: 2.4rem;
    }
}