:root {
    --bg: #fbfbf9;
    --bg-soft: #f4f7f2;
    --surface: rgba(251, 251, 249, 0.82);
    --surface-strong: #fbfbf9;
    --line: rgba(94, 112, 88, 0.14);
    --text: #43513f;
    --text-soft: #5e7058;
    --accent: #91aa8a;
    --accent-deep: #5e7058;
    --accent-soft: #dbe5d6;
    --shadow: 0 24px 60px rgba(94, 112, 88, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1120px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(145, 170, 138, 0.22), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(94, 112, 88, 0.12), transparent 24%),
        linear-gradient(180deg, #fbfbf9 0%, #f3f6f1 52%, #f8faf6 100%);
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    z-index: -1;
    border-radius: 999px;
    filter: blur(12px);
}

.page-shell::before {
    width: 420px;
    height: 420px;
    top: 12rem;
    right: -140px;
    background: rgba(145, 170, 138, 0.14);
}

.page-shell::after {
    width: 320px;
    height: 320px;
    bottom: 18rem;
    left: -120px;
    background: rgba(94, 112, 88, 0.1);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section-space {
    padding: 5rem 0;
}

.section-kicker,
.eyebrow {
    margin: 0 0 0.9rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

h1,
h2,
h3,
.brand-text,
.button {
    font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
p,
ul,
blockquote {
    margin-top: 0;
}

h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h3 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

p,
li {
    color: var(--text-soft);
    font-size: 1rem;
}

ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(18px);
    background: rgba(251, 251, 249, 0.76);
    border-bottom: 1px solid rgba(94, 112, 88, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 250px;
    min-width: 0;
}

.brand-logo {
    width: auto;
    max-width: min(100%, 220px);
    max-height: 52px;
    object-fit: contain;
    object-position: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: rgba(251, 251, 249, 0.95);
    box-shadow: 0 10px 30px rgba(94, 112, 88, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.3rem;
    height: 2px;
    margin: 0.26rem auto;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section {
    padding-top: 4.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: center;
    gap: 2rem;
}

.hero-copy {
    max-width: 38rem;
}

.hero-text {
    max-width: 32rem;
    margin-bottom: 1.2rem;
    font-size: 1.18rem;
}

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-credentials span {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(94, 112, 88, 0.14);
    border-radius: 999px;
    background: rgba(251, 251, 249, 0.82);
    color: var(--accent-deep);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.5rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
    color: #fbfbf9;
    box-shadow: 0 18px 35px rgba(94, 112, 88, 0.2);
}

.button-secondary {
    background: rgba(251, 251, 249, 0.86);
    color: var(--text);
    border-color: rgba(94, 112, 88, 0.16);
}

.button-icon {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
}

.hero-portrait {
    position: relative;
}

.portrait-card {
    position: relative;
    padding: 1.4rem;
    border: 1px solid rgba(94, 112, 88, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(251, 251, 249, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.portrait-card::before {
    content: "";
    position: absolute;
    inset: -1rem 2rem auto auto;
    width: 6rem;
    height: 6rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(145, 170, 138, 0.28), rgba(145, 170, 138, 0));
}

.portrait-frame {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 8px);
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    border: 1px solid rgba(94, 112, 88, 0.08);
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}

.portrait-note {
    margin-top: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(244, 247, 242, 0.96);
}

.portrait-note strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
}

.intro-card,
.content-card,
.highlight-card,
.concept-card,
.contact-card,
.cta-band {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.intro-card {
    max-width: 60rem;
    margin: 0 auto;
    padding: 2rem;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.highlight-grid,
.concept-grid,
.service-grid {
    display: grid;
    gap: 1.25rem;
}

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

.highlight-card,
.concept-card,
.content-card,
.cta-band {
    padding: 1.8rem;
}

.closing-quote {
    margin: 2rem 0 0;
    padding: 1.6rem 1.8rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(244, 247, 242, 0.88);
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 600;
    color: var(--text);
}

.section-layout {
    display: grid;
    gap: 1.4rem;
}

.content-stack {
    display: grid;
    gap: 1.25rem;
}

.detail-line {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--text);
}

.content-card-wide {
    padding-right: clamp(1.8rem, 5vw, 6rem);
}

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

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

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(94, 112, 88, 0.96), rgba(145, 170, 138, 0.88));
    color: #fbfbf9;
}

.cta-band .section-kicker,
.cta-band h3 {
    color: inherit;
}

.faq-list {
    display: grid;
    width: 100%;
    max-width: 58rem;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(251, 251, 249, 0.76);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item {
    position: relative;
    border-top: 1px solid rgba(94, 112, 88, 0.12);
    background: transparent;
    overflow: hidden;
    transition: background 180ms ease;
}

.faq-item:first-child {
    border-top: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-deep) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
    background: rgba(244, 247, 242, 0.58);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.45rem 1.6rem 1.45rem 1.85rem;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: "Outfit", sans-serif;
    font-size: 1.12rem;
    line-height: 1.28;
    font-weight: 600;
}

.faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(145, 170, 138, 0.16);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 2px;
    background: var(--accent-deep);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.is-open {
    background: rgba(244, 247, 242, 0.92);
}

.faq-item.is-open::before {
    opacity: 1;
}

.faq-answer {
    display: none;
}

.faq-answer > * {
    overflow: visible;
}

.faq-answer p {
    margin: 0;
    max-width: 46rem;
    padding: 0 4.6rem 1.45rem 1.85rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.contact-card {
    padding: clamp(2rem, 4vw, 3rem);
    display: grid;
    gap: 1.5rem;
}

.contact-meta {
    display: grid;
    gap: 0.55rem;
}

.contact-meta p {
    margin: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 480ms ease, transform 480ms ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-nav {
        position: fixed;
        inset: 5.3rem 1rem auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(251, 251, 249, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-toggle {
        display: inline-block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-grid,
    .highlight-grid,
    .concept-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 3rem;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section-space {
        padding: 3.8rem 0;
    }

    .header-inner {
        gap: 0.6rem;
    }

    .brand {
        flex-basis: 160px;
    }

    .brand-logo {
        max-height: 42px;
    }

    .hero-text {
        font-size: 1.02rem;
    }

    .intro-card,
    .content-card,
    .highlight-card,
    .concept-card,
    .cta-band,
    .contact-card {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .button {
        width: 100%;
    }

    .faq-question {
        padding: 1.15rem 1.1rem 1.15rem 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.15rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}