:root {
    --ash-ink: #243638;
    --ash-copy: #54686a;
    --ash-teal: #5d8f94;
    --ash-teal-deep: #345e63;
    --ash-sage: #9bbd70;
    --ash-sage-soft: #e3ebd2;
    --ash-cream: #faf6ef;
    --ash-cream-deep: #f1ebe1;
    --ash-white: rgba(255, 253, 249, 0.94);
    --ash-panel: #fffdf8;
    --ash-border: rgba(69, 91, 93, 0.12);
    --ash-border-strong: rgba(69, 91, 93, 0.2);
    --ash-shadow: 0 18px 44px rgba(36, 54, 56, 0.06);
    --ash-radius: 1.2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 18% 10%, rgba(155, 189, 112, 0.12), transparent 22%),
        radial-gradient(circle at 82% 8%, rgba(93, 143, 148, 0.1), transparent 20%),
        linear-gradient(180deg, #f7f2ea 0%, #fbf9f4 42%, #f1f4ee 100%);
    color: var(--ash-ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 0.98rem;
    line-height: 1.68;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

main {
    overflow: clip;
}

.soft-panel {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(251, 248, 241, 0.94));
    border: 1px solid var(--ash-border);
    border-radius: var(--ash-radius);
    box-shadow: var(--ash-shadow);
    overflow: hidden;
    position: relative;
}

.site-topbar {
    background: rgba(248, 242, 234, 0.9);
    border-bottom: 1px solid rgba(77, 101, 104, 0.08);
    color: var(--ash-copy);
    font-size: 0.75rem;
}

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

.site-topbar-copy,
.site-topbar-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.site-topbar-copy span,
.site-topbar-links a {
    align-items: center;
    display: inline-flex;
    gap: 0.45rem;
}

.site-topbar i {
    color: var(--ash-teal);
    flex: 0 0 auto;
    font-size: 0.9rem;
    line-height: 1;
    margin-right: 0;
    position: relative;
    top: -0.03em;
}

.site-topbar .fa-location-dot {
    top: -0.01em;
}

.site-header {
    background: rgba(250, 246, 239, 0.86);
    border-bottom: 1px solid rgba(77, 101, 104, 0.08);
    transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(250, 246, 239, 0.96);
    box-shadow: 0 12px 30px rgba(34, 54, 58, 0.05);
}

.navbar {
    padding-block: 0.45rem;
}

.navbar-brand {
    margin-right: 1rem;
}

.navbar-brand img {
    height: clamp(2.05rem, 3vw, 2.45rem);
    width: auto;
}

.navbar-nav {
    gap: 0.45rem;
}

.nav-link {
    color: var(--ash-copy);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.42rem 0.65rem !important;
    position: relative;
    transition: color 180ms ease;
}

.nav-link::after {
    background: rgba(52, 94, 99, 0.3);
    bottom: 0.18rem;
    content: "";
    height: 1px;
    left: 0.75rem;
    position: absolute;
    right: 0.75rem;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    background: transparent;
    color: var(--ash-ink);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid rgba(77, 101, 104, 0.14);
    border-radius: 0.85rem;
    box-shadow: none !important;
    padding: 0.48rem 0.62rem;
}

.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,55,58,0.86%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn {
    border-radius: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-inline: 1rem;
    padding-block: 0.72rem;
}

.btn-lg {
    padding-inline: 1.35rem;
    padding-block: 0.86rem;
}

.btn-brand {
    background: linear-gradient(135deg, var(--ash-teal-deep), var(--ash-teal));
    border: 0;
    box-shadow: 0 12px 26px rgba(52, 94, 99, 0.15);
    color: #fff;
}

.btn-brand:hover {
    color: #fff;
    transform: none;
}

.btn-soft {
    background: rgba(255, 250, 244, 0.92);
    border: 1px solid rgba(77, 101, 104, 0.16);
    color: var(--ash-ink);
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.98);
    color: var(--ash-teal-deep);
}

.nav-cta-btn {
    margin-left: 0.35rem;
    padding-block: 0.56rem;
}

.hero-shell,
.page-hero-shell {
    padding-top: 0.7rem;
}

.hero-wrap,
.page-hero {
    overflow: hidden;
    border-radius: calc(var(--ash-radius) + 0.4rem);
    padding: clamp(0.85rem, 1.45vw, 1.35rem);
    position: relative;
}

.hero-wrap::before,
.page-hero::before {
    background: radial-gradient(circle at top right, rgba(168, 201, 92, 0.18), transparent 40%);
    content: "";
    inset: 0;
    position: absolute;
    border-radius: inherit;
}

.hero-wrap::after {
    background: radial-gradient(circle at left center, rgba(85, 152, 161, 0.12), transparent 40%);
    content: "";
    inset: 0;
    position: absolute;
    border-radius: inherit;
}

.hero-wrap > .row,
.page-hero > .row {
    position: relative;
    z-index: 1;
}

.section-shell {
    padding-block: clamp(2.1rem, 3.5vw, 3.4rem);
}

.section-shell.compact {
    padding-block: clamp(1.5rem, 2.5vw, 2.3rem);
}

.section-kicker {
    color: var(--ash-teal-deep);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 0.72rem;
    text-transform: uppercase;
}

.display-title,
.page-title,
.section-title {
    font-family: "Newsreader", Georgia, serif;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.display-title {
    font-size: clamp(2.6rem, 5vw, 4.25rem);
    margin-bottom: 0.9rem;
    max-width: none;
}

.page-title {
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
    margin-bottom: 0.8rem;
    max-width: none;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    margin-bottom: 0.72rem;
    max-width: none;
}

.section-title.h3 {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.hero-copy,
.section-copy {
    color: var(--ash-copy);
    font-size: 0.97rem;
    margin-bottom: 0;
    max-width: 64ch;
}

.hero-copy {
    max-width: 58ch;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.hero-stats {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.hero-stat {
    align-items: flex-start;
    background: rgba(255, 252, 247, 0.5);
    border: 1px solid rgba(77, 101, 104, 0.08);
    border-radius: 1rem;
    display: grid;
    gap: 0.72rem;
    grid-template-columns: auto 1fr;
    min-height: 100%;
    padding: 0.9rem 0.95rem;
}

.hero-stat-icon {
    align-items: center;
    background: linear-gradient(180deg, rgba(93, 143, 148, 0.1), rgba(155, 189, 112, 0.13));
    border-radius: 0.9rem;
    color: var(--ash-teal-deep);
    display: flex;
    flex: 0 0 auto;
    height: 2.7rem;
    justify-content: center;
    width: 2.7rem;
}

.hero-stat-icon i {
    display: block;
    font-size: 1rem;
    line-height: 1;
}

.hero-stat strong {
    display: block;
    font-size: 0.93rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.14rem;
}

.hero-stat span {
    color: var(--ash-copy);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.5;
}

.hero-media {
    min-height: 100%;
    position: relative;
}

.hero-image-card,
.story-media,
.profile-image-wrap {
    overflow: hidden;
}

.hero-floating-card,
.hero-badge-card {
    position: absolute;
}

.hero-media-calm {
    align-items: center;
    display: flex;
    min-height: 100%;
    max-width: 29.5rem;
    margin-left: auto;
}

.hero-brand-card {
    display: grid;
    gap: 0.78rem;
    padding: 1.1rem 1.15rem 1.15rem;
    width: 100%;
}

.hero-brand-head {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.18rem;
}

.hero-brand-mark {
    align-items: center;
    background: linear-gradient(180deg, rgba(93, 143, 148, 0.08), rgba(155, 189, 112, 0.12));
    border-radius: 1rem;
    display: inline-flex;
    height: 3.1rem;
    justify-content: center;
    width: 3.1rem;
}

.hero-brand-logo {
    max-width: 1.95rem;
}

.hero-brand-label {
    color: var(--ash-teal-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-brand-title {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.5rem, 2.25vw, 1.95rem);
    letter-spacing: -0.035em;
    line-height: 1.03;
    margin: 0;
    max-width: none;
}

.hero-brand-copy {
    color: var(--ash-copy);
    font-size: 0.9rem;
    margin: 0;
    max-width: 34rem;
}

.hero-feature-list {
    display: grid;
    gap: 0.68rem;
    margin-top: 0.1rem;
}

.hero-feature-item {
    align-items: flex-start;
    border-top: 1px solid rgba(69, 91, 93, 0.08);
    display: flex;
    gap: 0.75rem;
    padding-top: 0.62rem;
}

.hero-feature-item i {
    align-items: center;
    background: linear-gradient(135deg, rgba(93, 143, 148, 0.12), rgba(155, 189, 112, 0.15));
    border-radius: 0.8rem;
    color: var(--ash-teal-deep);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.9rem;
    height: 2.25rem;
    justify-content: center;
    width: 2.25rem;
}

.hero-feature-item strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.18rem;
}

.hero-feature-item span {
    color: var(--ash-copy);
    display: block;
    font-size: 0.81rem;
    line-height: 1.6;
}

.faq-side-card img {
    flex: 0 0 auto;
    width: 2.6rem;
}

.faq-side-card p {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 0.2rem;
}

.section-heading {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.15rem;
}

.section-link {
    color: var(--ash-teal-deep);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.section-link i {
    margin-left: 0.45rem;
}

.story-media,
.story-media-tall,
.profile-image-wrap {
    padding: 0.4rem;
}

.story-media img,
.profile-image-wrap img {
    border-radius: calc(var(--ash-radius) - 0.35rem);
    object-fit: cover;
    width: 100%;
}

.story-media img {
    aspect-ratio: 4 / 3;
}

.story-media-tall img {
    aspect-ratio: 4 / 4.2;
}

.profile-image-wrap img {
    aspect-ratio: 4 / 4.75;
}

.profile-image-square img {
    aspect-ratio: 1 / 1;
}

.role-label {
    color: var(--ash-teal-deep);
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.value-card,
.journey-card,
.info-card,
.quote-card {
    height: 100%;
    padding: 1.15rem;
}

.value-card h3,
.journey-card h3,
.condition-card h3,
.service-card h3 {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.value-card p,
.journey-card p,
.condition-card p,
.quote-card p,
.info-card p {
    color: var(--ash-copy);
    margin-bottom: 0;
}

.value-icon,
.condition-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(93, 143, 148, 0.13), rgba(155, 189, 112, 0.16));
    border-radius: 0.85rem;
    color: var(--ash-teal-deep);
    display: inline-flex;
    font-size: 0.9rem;
    height: 2.45rem;
    justify-content: center;
    margin-bottom: 0.78rem;
    width: 2.45rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.72rem;
    padding: 1.15rem;
}

.service-card-top {
    align-items: center;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: auto 1fr;
}

.service-card-mark {
    align-items: center;
    background: linear-gradient(180deg, rgba(93, 143, 148, 0.08), rgba(155, 189, 112, 0.12));
    border-radius: 0.95rem;
    display: inline-flex;
    height: 4.2rem;
    justify-content: center;
    width: 4.2rem;
}

.service-card-mark i {
    color: var(--ash-teal-deep);
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.service-card-kicker {
    color: var(--ash-teal-deep);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.service-card-body p {
    color: var(--ash-copy);
}

.service-card-meta {
    color: var(--ash-teal-deep);
    font-size: 0.79rem;
    margin-top: auto;
}

.service-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.2rem;
}

.conditions-panel {
    padding: clamp(1.15rem, 2.1vw, 1.5rem);
}

.condition-card {
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(77, 101, 104, 0.08);
    border-left: 3px solid rgba(93, 143, 148, 0.2);
    border-radius: 0.95rem;
    height: 100%;
    padding: 1rem;
}

.quote-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quote-stars {
    color: var(--ash-sage);
    display: flex;
    gap: 0.2rem;
}

.quote-card footer {
    color: var(--ash-teal-deep);
    font-size: 0.9rem;
    font-weight: 800;
    margin-top: auto;
}

.cta-band,
.support-banner {
    padding: clamp(1.2rem, 2.2vw, 1.55rem);
}

.page-hero-shell + .section-shell {
    padding-top: 2.2rem;
}

.feature-intro {
    padding: clamp(1.15rem, 2vw, 1.5rem);
}

.feature-intro-main {
    margin-bottom: 0.1rem;
}

.feature-intro-media {
    margin: 0;
    padding: 0.45rem;
}

.feature-intro-values {
    margin-top: 0.9rem;
}

.section-title-intro {
    font-size: clamp(1.8rem, 2.9vw, 2.45rem);
    max-width: none;
}

.section-heading-services {
    align-items: start;
    display: grid;
    gap: 0.9rem 1.2rem;
    grid-template-columns: minmax(0, 1fr) auto;
}

.section-heading-copy {
    max-width: none;
}

.section-title-services {
    font-size: clamp(1.75rem, 2.7vw, 2.3rem);
    line-height: 1.04;
    margin-bottom: 0.5rem;
    max-width: none;
}

.section-heading-action {
    align-self: center;
}

.service-stack {
    display: grid;
    gap: 0.7rem;
}

.service-stack-card,
.faq-side-card {
    align-items: center;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: auto 1fr;
    padding: 0.95rem 1rem;
}

.service-stack-mark {
    align-items: center;
    background: linear-gradient(180deg, rgba(93, 143, 148, 0.08), rgba(155, 189, 112, 0.12));
    border-radius: 0.95rem;
    display: inline-flex;
    height: 3.95rem;
    justify-content: center;
    width: 3.95rem;
}

.service-stack-mark i {
    color: var(--ash-teal-deep);
    display: block;
    font-size: 1.35rem;
    line-height: 1;
}

.service-stack-card strong {
    display: block;
    font-size: 0.94rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.service-stack-card span {
    color: var(--ash-copy);
    font-size: 0.8rem;
    font-weight: 700;
}

.faq-side-card {
    padding: 1rem 1.05rem;
}

.faq-side-card-contact {
    align-items: flex-start;
    text-align: left;
}

.soft-accordion {
    display: grid;
    gap: 0.9rem;
    margin-inline: auto;
    max-width: none;
}

.soft-accordion .accordion-item {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(250, 246, 239, 0.94));
    border: 1px solid rgba(69, 91, 93, 0.1);
    border-radius: 1.35rem;
    box-shadow: 0 18px 36px rgba(36, 54, 56, 0.05);
    overflow: hidden;
}

.soft-accordion .accordion-button {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--ash-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    min-height: 5rem;
    padding: 1.2rem 1.35rem;
}

.soft-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--ash-ink);
}

.soft-accordion .accordion-button::after {
    background-color: rgba(255, 250, 244, 0.96);
    background-position: center;
    background-size: 0.85rem;
    border: 1px solid rgba(69, 91, 93, 0.12);
    border-radius: 999px;
    flex: 0 0 auto;
    height: 2.15rem;
    width: 2.15rem;
}

.soft-accordion .accordion-body {
    border-top: 1px solid rgba(69, 91, 93, 0.08);
    color: var(--ash-copy);
    padding: 1rem 1.35rem 1.35rem;
}

.soft-accordion .accordion-body p {
    margin: 0;
    max-width: 72ch;
}

.site-footer {
    padding-block: 0 2rem;
}

.footer-shell {
    padding: clamp(1.25rem, 2.2vw, 1.55rem);
}

.footer-logo {
    max-width: 10.5rem;
}

.footer-copy,
.footer-note {
    color: var(--ash-copy);
}

.footer-copy {
    margin-top: 0.8rem;
    max-width: 22rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-social a {
    align-items: center;
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid rgba(77, 101, 104, 0.14);
    border-radius: 0.8rem;
    color: var(--ash-teal-deep);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    gap: 0.45rem;
    padding: 0.62rem 0.82rem;
}

.footer-label {
    color: var(--ash-teal-deep);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

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

.footer-links a:hover {
    color: var(--ash-teal-deep);
}

.footer-contact li,
.footer-hour {
    align-items: flex-start;
    color: var(--ash-copy);
    display: flex;
    gap: 0.7rem;
}

.footer-contact i {
    color: var(--ash-teal);
    margin-top: 0.25rem;
}

.footer-hour {
    justify-content: space-between;
}

.footer-hour strong {
    color: var(--ash-ink);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: right;
}

.footer-note {
    margin-top: 0.85rem;
}

.footer-credit {
    border-top: 1px solid rgba(77, 101, 104, 0.08);
    color: rgba(84, 104, 106, 0.86);
    font-size: 0.72rem;
    margin: 1.1rem 0 0;
    padding-top: 0.85rem;
}

.footer-credit a {
    align-items: center;
    display: inline-flex;
    gap: 0.3rem;
}

.footer-credit i {
    color: rgba(155, 189, 112, 0.9);
    font-size: 0.7rem;
}

.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(1rem);
}

.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos] {
    will-change: transform, opacity;
}

body [data-aos="fade-up"] {
    transform: translate3d(0, 1rem, 0);
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

body [data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .has-js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: rgba(251, 248, 242, 0.98);
        border: 1px solid rgba(77, 101, 104, 0.08);
        border-radius: 0.95rem;
        margin-top: 1rem;
        padding: 0.8rem;
    }

    .nav-cta-btn {
        margin-left: 0;
        margin-top: 0.35rem;
        width: 100%;
    }

}

@media (max-width: 991.98px) {
    .site-topbar-inner,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-media {
        display: grid;
        gap: 1rem;
    }

    .hero-media-calm {
        margin-inline: 0;
        max-width: none;
    }

    .section-heading-services {
        grid-template-columns: 1fr;
    }

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

    .section-link {
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    .btn,
    .btn-lg {
        width: 100%;
    }

    .hero-actions,
    .cta-actions,
    .service-card-actions,
    .footer-social {
        flex-direction: column;
    }

    .footer-hour {
        flex-direction: column;
    }

    .faq-side-card-contact,
    .service-card-top,
    .service-stack-card,
    .faq-side-card {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

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

    .story-media img,
    .story-media-tall img {
        aspect-ratio: 4 / 3;
    }
}
