@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
    --ink: #13241e;
    --muted: #65716c;
    --green: #173f34;
    --green-2: #245d4c;
    --wa: #197b50;
    --cream: #f6f3eb;
    --sand: #e8dfce;
    --white: #fff;
    --line: #dfe3df;
    --warning: #fff5d8;
    --radius: 1.15rem;
    --shadow: 0 18px 50px rgba(19, 36, 30, .1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: #fdfdfb;
    font-family: var(--font-body);
    line-height: 1.65
}

body,
button,
a {
    font-size: 1rem
}

button,
input,
textarea,
select {
    font-family: inherit
}

img {
    max-width: 100%
}

a {
    color: inherit
}

.container {
    width: min(1160px, calc(100% - 2rem));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    top: .5rem;
    left: .5rem;
    z-index: 100;
    background: #fff;
    padding: .65rem 1rem;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 253, 251, .94);
    border-bottom: 1px solid rgba(19, 36, 30, .09);
    backdrop-filter: blur(14px)
}

.header-inner {
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    line-height: 1.15
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50% 50% 50% .55rem;
    background: var(--green);
    color: #fff;
    font-size: .66rem;
    letter-spacing: .08em;
    font-weight: 800
}

.brand strong,
.brand small {
    display: block
}

.brand small {
    margin-top: .23rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 500
}

.site-nav {
    display: none
}

.header-actions {
    display: none
}

.menu-button {
    width: 2.7rem;
    height: 2.7rem;
    margin-left: auto;
    padding: .62rem;
    border: 0;
    background: transparent
}

.menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: .2s
}

.menu-open .site-nav {
    display: flex;
    position: absolute;
    inset: 4.75rem 0 auto;
    background: #fff;
    padding: .75rem 1rem 1.2rem;
    box-shadow: var(--shadow);
    flex-direction: column
}

.site-nav a {
    text-decoration: none;
    padding: .65rem
}

.eyebrow {
    margin: 0 0 .85rem;
    color: var(--green-2);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.hero {
    overflow: hidden;
    background: linear-gradient(145deg, #f8f5ed 0%, #fdfdfb 65%);
    padding: 3.4rem 0 4rem
}

.hero-grid {
    display: grid;
    gap: 2rem
}

.hero h1,
.section h2,
.budget-cta h2 {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -.035em
}

.section h2,
.budget-cta h2 {
    font-size: clamp(2rem, 5vw, 3.55rem)
}

.hero-lead {
    max-width: 42rem;
    margin: 1.4rem 0;
    color: #43504b;
    font-size: 1.12rem
}

.check-list {
    display: grid;
    gap: .55rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none
}

.check-list li:before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    margin-right: .55rem;
    border-radius: 50%;
    background: #dcebe4;
    color: var(--green);
    font-weight: 900
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.6rem
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: .75rem 1.1rem;
    border: 1px solid transparent;
    border-radius: .55rem;
    text-decoration: none;
    font-weight: 750;
    transition: transform .2s, background .2s
}

.button:hover {
    transform: translateY(-2px)
}

.button-chat {
    background: var(--wa);
    color: #fff
}

.button-secondary {
    border-color: #aeb8b3;
    background: transparent
}

.button-dark {
    background: var(--green);
    color: #fff
}

.button-light {
    background: #fff;
    color: var(--green)
}

.microcopy {
    color: var(--muted);
    font-size: .8rem
}

.hero-media {
    overflow: hidden;
    min-height: 20rem;
    border-radius: var(--radius);
    background: #d9dfd6
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center
}

.placeholder-media {
    position: relative;
    overflow: hidden;
    min-height: 20rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #d9dfd6, #a9b9ab)
}

.placeholder-media:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(23, 63, 52, .18) 55%), radial-gradient(circle at 75% 23%, rgba(255, 255, 255, .65) 0 5%, transparent 5.2%)
}

.placeholder-media>div {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 1;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: .75rem;
    background: rgba(19, 36, 30, .77);
    color: #fff;
    backdrop-filter: blur(8px)
}

.placeholder-media span,
.placeholder-media strong,
.placeholder-media small {
    display: block
}

.placeholder-media span {
    font-size: .65rem;
    letter-spacing: .13em;
    text-transform: uppercase
}

.placeholder-media strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem
}

.placeholder-media small {
    color: #d9e3dd
}

.evidence-media {
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: #d9dfd6
}

.evidence-media img {
    display: block;
    width: 100%;
    height: 20rem;
    object-fit: cover
}

.evidence-media figcaption {
    padding: .85rem 1rem;
    background: var(--green);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700
}

.section {
    padding: 4.5rem 0
}

.section-heading {
    max-width: 43rem;
    margin-bottom: 2.2rem
}

.section-heading>p:last-child,
.split-heading>p,
.two-column>div>p {
    color: var(--muted)
}

.plot-grid {
    display: grid;
    gap: .8rem
}

.plot-card {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: #fff
}

.plot-card.featured {
    border-color: #a7bdaf;
    background: #f4f8f4
}

.plot-card>span,
.tag {
    color: var(--green-2);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.plot-card h3 {
    margin: .5rem 0 .1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.7rem
}

.plot-card p {
    margin: 0 0 1.5rem;
    color: var(--muted)
}

.card-link {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: .8rem;
    color: var(--green);
    font-weight: 750;
    text-decoration: none
}

.validation-note,
.placeholder-warning {
    margin-top: 1rem;
    padding: .8rem 1rem;
    border-radius: .5rem;
    background: var(--warning);
    font-size: .76rem
}

.tinted {
    background: var(--cream)
}

.split-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem
}

.split-heading>p {
    max-width: 39rem
}

.benefit-grid {
    display: grid;
    gap: 1rem
}

.benefit-grid article {
    padding: 1.4rem;
    border-top: 1px solid #c8cbbf;
    background: rgba(255, 255, 255, .4)
}

.benefit-grid h3 {
    margin: .8rem 0 .35rem
}

.benefit-grid h3,
.service-panel h3,
.process-grid h3 {
    font-family: var(--font-heading);
    font-weight: 700
}

.benefit-grid p {
    margin: 0;
    color: var(--muted)
}

.icon {
    font-family: var(--font-heading);
    color: #8c9f95
}

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

.media-grid figure {
    margin: 0;
    min-height: 18rem
}

.media-grid figcaption {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .75rem 1rem;
    background: #fff;
    font-size: .78rem
}

.media-grid figure>div {
    bottom: 3.25rem
}

.center-action {
    text-align: center;
    margin-top: 1.5rem
}

.two-column {
    display: grid;
    gap: 2rem
}

.info-card {
    padding: 1.6rem;
    border: 1px solid #d7d5ca;
    border-radius: var(--radius);
    background: var(--cream)
}

.info-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2
}

.info-card a {
    color: var(--green);
    font-weight: 750
}

.dark-section {
    background: var(--green);
    color: #fff
}

.dark-section .eyebrow {
    color: #a9d2bd
}

.dark-section .two-column>div>p {
    color: #d2ddd7
}

.service-panel {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07)
}

.service-panel h3 {
    margin-top: 0
}

.service-panel ul {
    padding-left: 1.2rem
}

.service-panel li {
    margin: .35rem 0
}

.overseas-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 18rem;
    border-radius: var(--radius);
    background: var(--cream);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 4rem;
    color: var(--green)
}

.overseas-art i {
    position: absolute;
    width: 65%;
    border-top: 2px dashed #9aaa9e;
    transform: rotate(-12deg)
}

.overseas-art b {
    position: absolute;
    right: 10%;
    bottom: 18%;
    font-family: inherit;
    font-size: .65rem;
    letter-spacing: .1em
}

.steps {
    padding: 0;
    list-style: none
}

.steps li {
    display: flex;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--line)
}

.steps span {
    display: grid;
    place-items: center;
    flex: 0 0 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--cream);
    font-weight: 800
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem
}

.process-grid {
    display: grid;
    gap: 1rem
}

.process-grid article {
    padding: 1.35rem;
    border-left: 2px solid #aab7ac
}

.process-grid b {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: #89978e
}

.process-grid h3 {
    margin: .4rem 0
}

.process-grid p {
    color: var(--muted)
}

.budget-cta {
    padding: 3.5rem 0;
    background: #b96b3f;
    color: #fff
}

.budget-cta .eyebrow {
    color: #ffe2cc
}

.budget-inner {
    display: grid;
    gap: 2rem;
    align-items: center
}

.budget-inner p:not(.eyebrow) {
    max-width: 42rem
}

.faq-wrap {
    max-width: 850px
}

.faq-list {
    border-top: 1px solid var(--line)
}

details {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0
}

summary {
    cursor: pointer;
    padding-right: 2rem;
    font-weight: 750;
    list-style: none
}

summary:after {
    content: "+";
    float: right;
    margin-right: -1.5rem;
    color: var(--green);
    font-size: 1.4rem
}

details[open] summary:after {
    content: "−"
}

details p {
    color: var(--muted)
}

.final-cta {
    text-align: center;
    background: linear-gradient(#fff, #edf1ec)
}

.final-inner {
    display: grid;
    justify-items: center
}

.final-inner>p:not(.eyebrow) {
    max-width: 40rem
}

.site-footer {
    padding: 3.5rem 0 6rem;
    background: #102a23;
    color: #fff
}

.footer-grid {
    display: grid;
    gap: 2rem
}

.footer-brand small,
.disclosure {
    color: #b8c7c0
}

.disclosure {
    max-width: 38rem;
    font-size: .8rem
}

.site-footer h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem
}

.site-footer p {
    font-size: .85rem;
    color: #c7d1cc
}

.site-footer>div a:not(.brand) {
    display: block;
    margin: .45rem 0;
    color: #dbe4df
}

.placeholder {
    color: #ffe0a3
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #9eb0a7;
    font-size: .72rem
}

.mobile-actions {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, .12)
}

.mobile-actions a {
    display: grid;
    place-items: center;
    gap: .05rem;
    min-height: 4rem;
    padding: .35rem;
    border-right: 1px solid var(--line);
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none
}

.mobile-actions a:first-child {
    background: var(--wa);
    color: #fff
}

.mobile-actions span {
    font-size: 1rem
}

@media(min-width:640px) {
    .plot-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .benefit-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .media-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-media {
        min-height: 30rem
    }
}

@media(min-width:900px) {
    .container {
        width: min(1160px, calc(100% - 4rem))
    }

    .menu-button {
        display: none
    }

    .site-nav {
        display: flex;
        align-items: center;
        gap: .25rem;
        margin-left: auto
    }

    .site-nav a {
        font-size: .82rem
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem
    }

    .header-actions .button {
        min-height: 2.65rem;
        padding: .5rem .85rem;
        font-size: .8rem
    }

    .text-link {
        font-size: .8rem;
        font-weight: 750;
        text-decoration: none
    }

    .hero {
        padding: 5.5rem 0
    }

    .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 4rem
    }

    .section {
        padding: 6.5rem 0
    }

    .plot-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .split-heading,
    .two-column {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5rem
    }

    .split-heading>p {
        font-size: 1.08rem
    }

    .benefit-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .budget-inner {
        grid-template-columns: 1fr auto
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr .7fr
    }

    .mobile-actions {
        display: none
    }

    .site-footer {
        padding-bottom: 2.5rem
    }
}

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

    .button {
        transition: none
    }
}
