:root {
    --green: #005B32;
    --green-deep: #003D22;
    --green-ink: #06281A;
    --gold: #D0AD43;
    --gold-deep: #8C7024;
    --cream: #F4F0E6;
    --paper: #FFFCF6;
    --ink: #1C2416;
    --muted: #5E6758;
    --line: rgba(28, 36, 22, .12);
    --header: 86px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Outfit", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
a { color: inherit; }

.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--gold);
    color: var(--ink);
    padding: .5rem .8rem;
    z-index: 100;
}
.skip:focus { top: 1rem; }

#gw-loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1rem;
    background: var(--green-deep);
    transition: opacity .55s ease, visibility .55s ease;
}
#gw-loader.is-done { opacity: 0; visibility: hidden; }
.gw-loader-mark {
    position: relative;
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
}
.gw-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: var(--gold);
    border-right-color: rgba(208, 173, 67, .45);
    animation: gw-spin 1.7s linear infinite;
}
.gw-loader-mark img {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    animation: gw-breathe 1.7s ease-in-out infinite;
}
#gw-loader p {
    margin: 0;
    color: #F4F0E6;
    font-family: var(--serif);
    font-size: 1.7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}
@keyframes gw-spin { to { transform: rotate(360deg); } }
@keyframes gw-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.topbar {
    background: var(--green);
    color: #F4F0E6;
    font-size: .82rem;
    letter-spacing: .04em;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem 1.4rem;
    flex-wrap: wrap;
    padding-top: .45rem;
    padding-bottom: .45rem;
}
.topbar-item,
.topbar a,
.footer-line,
.mobile-bar a:first-child {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.topbar-links { display: flex; align-items: center; gap: .4rem 1.3rem; flex-wrap: wrap; }
.topbar a { color: var(--gold); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar svg,
.footer-line svg,
.mobile-bar svg {
    width: 14px;
    height: 14px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.navwrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 240, 230, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.navwrap.is-stuck { box-shadow: 0 10px 30px rgba(28, 36, 22, .06); }
.nav-inner {
    display: flex;
    align-items: center;
    min-height: var(--header);
    gap: 1rem;
}
.brand { flex: 0 0 auto; background: transparent; }
.brand img {
    height: 58px;
    width: auto;
    background: transparent;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-left: auto;
}
.site-nav > a,
.nav-drop-btn {
    background: none;
    border: 0;
    padding: .35rem 0;
    color: var(--ink);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    cursor: pointer;
}
.site-nav > a.is-active,
.nav-drop.is-active > .nav-drop-btn { color: var(--green); }
.site-nav > a.nav-cta {
    background: var(--green);
    color: #F7F3E8;
    padding: .65rem 1rem;
    margin-left: .35rem;
}
.site-nav > a.nav-cta:hover { background: var(--green-deep); color: #fff; }
.site-nav > a:hover,
.nav-drop-btn:hover { color: var(--gold-deep); }
.nav-drop { position: relative; }
.nav-drop-btn::after {
    content: "";
    display: inline-block;
    margin-left: .35rem;
    border: 4px solid transparent;
    border-top-color: currentColor;
    transform: translateY(2px);
}
.nav-sub {
    position: absolute;
    top: calc(100% + .6rem);
    left: 50%;
    min-width: 230px;
    padding: .55rem;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(28, 36, 22, .08);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    transition: .2s ease;
}
.nav-sub a {
    display: block;
    padding: .55rem .7rem;
    text-decoration: none;
    color: var(--ink);
}
.nav-sub a:hover,
.nav-sub a[aria-current="page"] { background: rgba(0, 91, 50, .06); color: var(--green); }
@media (min-width: 992px) {
    .nav-drop:hover .nav-sub,
    .nav-drop:focus-within .nav-sub,
    .nav-drop.is-open .nav-sub {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}
.nav-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: transparent;
    position: relative;
    z-index: 70;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    position: absolute;
    left: 13px;
}
.nav-toggle-lines { top: 22px; }
.nav-toggle-lines::before,
.nav-toggle-lines::after { content: ""; left: 0; }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
body.nav-open .nav-toggle-lines { background: transparent; }
body.nav-open .nav-toggle-lines::before { top: 0; transform: rotate(45deg); background: #F4F0E6; }
body.nav-open .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); background: #F4F0E6; }
body.nav-open .nav-toggle { border-color: transparent; }

.gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 48px;
    padding: .7rem 1.25rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: .2s ease;
}
.gw-btn-green { background: var(--green); color: #F7F3E8; }
.gw-btn-green:hover { background: var(--green-deep); color: #fff; }
.gw-btn-gold { background: var(--gold); color: var(--green-ink); }
.gw-btn-gold:hover { background: #e0c15d; color: var(--green-ink); }
.gw-btn-line { background: transparent; border-color: var(--green); color: var(--green); }
.gw-btn-line:hover { background: var(--green); color: #F7F3E8; }
.gw-btn-line.light { border-color: rgba(244, 240, 230, .7); color: #F4F0E6; }
.gw-btn-line.light:hover { background: #F4F0E6; color: var(--green); }

.kicker {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 .8rem;
    color: var(--gold-deep);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.kicker span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0; font-weight: 600; }
h1, h2, h3, .cover-meta strong, .hero-float strong {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.02em;
}
h1 {
    font-size: clamp(3rem, 6vw, 5.35rem);
    line-height: .94;
    margin: 0 0 1rem;
}
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.02; margin: 0 0 .8rem; }
.dek { font-size: 1.08rem; color: var(--muted); max-width: 40rem; }
.section { padding: 5.4rem 0; }
.section-head { max-width: 42rem; margin-bottom: 2.2rem; }
section[id] { scroll-margin-top: 96px; }

.hero { padding: 3.2rem 0 4rem; }
.hero-visual { position: relative; }
.hero-visual img {
    width: 100%;
    height: min(620px, 72vw);
    object-fit: cover;
    border: 1px solid var(--line);
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 16px -14px -14px 16px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.hero-float {
    position: absolute;
    left: -1.2rem;
    bottom: 1.6rem;
    max-width: 230px;
    padding: 1rem 1.1rem;
    background: var(--paper);
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 40px rgba(28, 36, 22, .12);
}
.hero-float span {
    display: block;
    color: var(--gold-deep);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-float strong { display: block; font-size: 1.55rem; line-height: 1.05; margin-top: .25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 1.3rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.hero-points li { padding-left: 1.1rem; position: relative; color: var(--muted); }
.hero-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: .55rem;
}

.consult { background: var(--paper); }
.consult-copy h2 { max-width: 14ch; }
.form-card, .quote-form {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 1.4rem;
    box-shadow: 0 20px 50px rgba(28, 36, 22, .05);
}
.consult .quote-form { border-top: 3px solid var(--gold); }
.quote-form h3 { font-size: 2rem; margin: 0 0 .35rem; }
.form-dek { color: var(--muted); margin: 0 0 1rem; font-size: .95rem; }
.field { display: grid; gap: .35rem; }
.field span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    padding: .75rem .8rem;
    outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(208, 173, 67, .35);
}
.consent {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    margin: 1rem 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}
.consent input { margin-top: .2rem; }
.quote-form .gw-btn { width: 100%; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.shelf { padding: 1.3rem 0; background: var(--green-ink); color: #F4F0E6; overflow: hidden; }
.shelf-label {
    text-align: center;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: gw-marquee 32s linear infinite;
}
.marquee-track span {
    padding: .35rem 1.1rem;
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: .04em;
    white-space: nowrap;
}
.marquee-track span::before { content: "·"; color: var(--gold); margin-right: 1.1rem; }
@keyframes gw-marquee { to { transform: translateX(-50%); } }

.genre-card {
    display: block;
    position: relative;
    min-height: 280px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}
.genre-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .6s ease; }
.genre-card:hover img { transform: scale(1.05); }
.genre-card div {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.4rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(6, 40, 26, .88));
}
.genre-card h3 { margin: 0; font-size: 2rem; color: #fff; }
.genre-card p { margin: .15rem 0 0; color: rgba(244, 240, 230, .82); font-size: .92rem; }

.opportunity {
    position: relative;
    color: #F4F0E6;
    padding: 6.5rem 0;
    background: #06281A center/cover no-repeat;
}
.opportunity::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 40, 22, .88), rgba(0, 40, 22, .55));
}
.opportunity .container { position: relative; }
.opportunity h2 { max-width: 12ch; color: #fff; }
.opportunity h2 em { color: var(--gold); }
.opportunity .dek { color: rgba(244, 240, 230, .86); }

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--paper);
    text-decoration: none;
    border: 1px solid var(--line);
    color: inherit;
}
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card div { padding: 1.15rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.service-card span { color: var(--gold-deep); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { font-size: 1.85rem; margin: .3rem 0 .4rem; }
.service-card p { color: var(--muted); margin: 0 0 1rem; }
.service-card em { margin-top: auto; font-style: normal; color: var(--green); font-weight: 500; }
.service-card:hover { border-color: var(--gold); }
.service-card:hover h3 { color: var(--green); }

.ribbon { background: var(--green); color: #F4F0E6; overflow: hidden; padding: .85rem 0; }
.ribbon .marquee-track span { font-size: 1.15rem; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); }

.cover-card { position: relative; overflow: hidden; background: var(--green-ink); min-height: 100%; }
.cover-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cover-meta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(6, 24, 16, .9));
    color: #F4F0E6;
}
.cover-meta span { display: block; color: var(--gold); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.cover-meta strong { display: block; font-size: 1.7rem; line-height: 1; margin-top: .2rem; }

.why { background: var(--paper); }
.why-item { padding: 1.4rem 0; border-top: 1px solid var(--line); height: 100%; }
.why-item strong {
    display: block;
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 500;
}
.why-item h3 { font-size: 1.8rem; margin: .4rem 0; }
.why-item p { color: var(--muted); margin: 0; }

.process-list { display: grid; gap: 0; }
.process-step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    padding: 1.3rem 0;
    border-top: 1px solid var(--line);
}
.process-step b {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold-deep);
    line-height: 1;
}
.process-step h3 { font-size: 1.7rem; margin: 0 0 .3rem; }
.process-step p { margin: 0; color: var(--muted); }

.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 2rem 1.1rem 0;
    font-family: var(--serif);
    font-size: 1.55rem;
    position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: .85rem;
    color: var(--gold-deep);
    font-size: 1.6rem;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); max-width: 46rem; margin: 0 0 1.1rem; }

.finale {
    background:
        linear-gradient(100deg, rgba(0, 40, 22, .92), rgba(0, 91, 50, .78)),
        url("../images/forest-path.jpg") center/cover no-repeat;
    color: #F4F0E6;
    padding: 5.4rem 0;
}
.finale h2 { color: #fff; }
.finale h2 em { color: var(--gold); }
.finale .dek { color: rgba(244, 240, 230, .86); }
.finale-points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .55rem; }
.finale-points li { padding-left: 1.2rem; position: relative; }
.finale-points li::before { content: ""; width: 8px; height: 1px; background: var(--gold); position: absolute; left: 0; top: .7rem; }
.finale .quote-form { background: var(--paper); color: var(--ink); }

.page-hero {
    background: var(--green);
    color: #F4F0E6;
    padding: 4.5rem 0 3.4rem;
    position: relative;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero h1 { max-width: 16em; color: #fff; }
.page-hero h1 em { color: var(--gold); }
.page-hero .kicker { color: var(--gold); }
.page-hero .dek { color: rgba(244, 240, 230, .86); }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.crumbs a { color: var(--gold); text-decoration: none; }
.prose { font-size: 1.05rem; color: #2A3326; }
.prose p { margin: 0 0 1rem; }
.frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.frame { border: 1px solid var(--line); position: relative; }
.frame::after { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid var(--gold); z-index: -1; }
.sticky-form { position: sticky; top: 104px; }
.include-item { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.include-item h3 { font-size: 1.6rem; margin: 0 0 .3rem; }
.include-item p { margin: 0; color: var(--muted); }
.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.fit-list li { padding-left: 1.2rem; position: relative; }
.fit-list li::before { content: ""; width: 8px; height: 8px; background: var(--gold); position: absolute; left: 0; top: .5rem; }
.related a {
    display: block;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    text-decoration: none;
}
.related a strong { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.related a span { color: var(--muted); }
.related a:hover strong { color: var(--green); }

.svc-banner {
    position: relative;
    padding: 4.2rem 0 3.6rem;
    background: var(--cream);
    overflow: hidden;
}
.svc-banner::before {
    content: "";
    position: absolute;
    inset: 0 0 0 46%;
    background: var(--svc-photo) center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 26%);
    mask-image: linear-gradient(to right, transparent 0%, #000 26%);
    pointer-events: none;
}
.svc-banner .container { position: relative; z-index: 1; }
.svc-banner::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--gold);
    z-index: 1;
}
.svc-banner h1 {
    max-width: 12em;
    color: var(--green-deep);
    font-size: clamp(2.7rem, 4.4vw, 4.3rem);
    line-height: .96;
}
.svc-banner .dek { max-width: 34rem; color: #2A3326; font-size: 1.08rem; }
.svc-banner .crumbs a { color: var(--green); }
.svc-banner .crumbs span { color: var(--muted); }
.svc-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.svc-banner .quote-form {
    background: rgba(255, 252, 246, .94);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 24px 50px rgba(0, 61, 34, .16);
}
.svc-form-badge {
    display: inline-block;
    background: var(--green);
    color: #F4F0E6;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .35rem .75rem;
    margin: 0 0 .75rem;
}
.svc-note { text-align: center; color: var(--muted); font-size: .78rem; margin: .15rem 0 0; }

.svc-platforms { background: var(--green-ink); color: #F4F0E6; padding: .95rem 0; }
.svc-platforms ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: .8rem 1.4rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.svc-platforms li {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(244, 240, 230, .88);
}
.svc-platforms li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: .55rem;
    background: var(--gold);
    vertical-align: middle;
}

.svc-cards { background: var(--paper); }
.svc-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 1.25rem 1.15rem 1.35rem;
}
.svc-card h3 { font-size: 1.65rem; margin: 0 0 .35rem; }
.svc-card p { margin: 0; color: var(--muted); }

.svc-path { background: var(--green); color: #F4F0E6; }
.svc-path h2, .svc-path h3 { color: #fff; }
.svc-path .kicker { color: var(--gold); }
.svc-path p { color: rgba(244, 240, 230, .84); }
.svc-path-step { border-top: 1px solid rgba(244, 240, 230, .22); padding-top: .9rem; }
.svc-path-step b {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: .2rem;
}
.svc-path-step h3 { font-size: 1.7rem; margin: 0 0 .25rem; }
.svc-path-step p { margin: 0; }
.svc-path-step a { color: #fff; text-decoration: none; }
.svc-path-step a:hover { color: var(--gold); }

.svc-books { padding: 4.6rem 0 3.2rem; overflow: hidden; }
.svc-books .section-intro { max-width: 38rem; margin: 0 auto 1.8rem; text-align: center; }
.svc-books .section-intro p { color: var(--muted); }
.book-rail { overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.book-rail-track {
    display: flex;
    gap: 1.15rem;
    width: max-content;
    animation: gw-books 55s linear infinite;
}
.book-rail:hover .book-rail-track { animation-play-state: paused; }
.book-rail img {
    width: 168px;
    height: 252px;
    object-fit: cover;
    border-radius: 4px 8px 8px 4px;
    box-shadow: 8px 16px 28px rgba(6, 40, 26, .22);
}
@keyframes gw-books { to { transform: translateX(-50%); } }

.finale .kicker { color: var(--gold); }

.legal { max-width: 760px; }
.legal h2 { font-size: 2rem; margin-top: 2rem; }
.legal p, .legal li { color: #2A3326; }
.map-frame { border: 0; width: 100%; min-height: 320px; filter: grayscale(.25) contrast(1.05); }
.thanks, .missing {
    min-height: 62vh;
    display: grid;
    align-items: center;
    padding: 4rem 0 5rem;
}
.thanks-panel, .missing-panel { max-width: 680px; }
.thanks-panel img { width: 92px; height: auto; margin-bottom: 1rem; background: transparent; }
.panel-links { display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin-top: 1rem; }
.panel-links a { color: var(--green); }

.site-footer { background: var(--green-deep); color: rgba(244, 240, 230, .86); padding: 4rem 0 0.5rem; }
.footer-brand img { height: 64px; width: auto; background: transparent; margin-bottom: 1rem; }
.footer-note { max-width: 28rem; }
.site-footer h2 {
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 .8rem;
}
.site-footer a { display: block; color: rgba(244, 240, 230, .86); text-decoration: none; padding: .18rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer-line { margin: 0 0 .55rem; align-items: flex-start; }
.site-footer a.footer-line { display: inline-flex; }
.footer-line svg { margin-top: .2rem; }
.footer-mail { color: #fff !important; margin-bottom: .4rem; }
.footer-cta { display: inline-flex; }
.footer-base {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 240, 230, .14);
    font-size: .85rem;
}
.footer-base p { margin: 0; }

.mobile-bar { display: none; }
.quote-modal[hidden] { display: none !important; }
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1rem;
}
.quote-modal-backdrop { position: absolute; inset: 0; background: rgba(6, 24, 16, .62); }
.quote-modal-dialog {
    position: relative;
    width: min(560px, 100%);
    max-height: min(88vh, 760px);
    overflow: auto;
    z-index: 1;
}
.quote-close {
    position: absolute;
    top: .7rem;
    right: .7rem;
    z-index: 2;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 991px) {
    .nav-toggle { display: inline-block; }
    .site-nav {
        position: fixed;
        inset: 0;
        margin: 0;
        background: var(--green-deep);
        color: #F4F0E6;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: .2rem;
        padding: 5rem 1.8rem 2rem;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 60;
    }
    body.nav-open .site-nav { transform: none; }
    .site-nav > a, .nav-drop-btn { color: #F4F0E6; font-size: 1.45rem; font-family: var(--serif); }
    .nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        min-width: 0;
        padding: .2rem 0 .4rem  .4rem;
    }
    .nav-drop.is-open .nav-sub { display: block; }
    .nav-sub a { color: rgba(244, 240, 230, .84); font-family: var(--sans); font-size: 1rem; }
    .nav-cta { margin-top: .8rem; }
    .hero-float { left: .8rem; bottom: .8rem; }
    .hero-visual::before { display: none; }
    .sticky-form { position: static; }
    .svc-banner { padding: 2.4rem 0 2.2rem; }
    .svc-banner::before { inset: 0; opacity: .28; -webkit-mask-image: none; mask-image: none; }
    .svc-platforms ul { justify-content: center; }
    .book-rail img { width: 132px; height: 198px; }
    .mobile-bar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 45;
        background: var(--paper);
        border-top: 1px solid var(--line);
        padding: .55rem .8rem;
        gap: .6rem;
        align-items: center;
    }
    .mobile-bar a:first-child { color: var(--green); text-decoration: none; font-size: .9rem; }
    .mobile-bar .gw-btn { margin-left: auto; min-height: 42px; }
    .site-footer { padding-bottom: 6.5rem; }
}
@media (max-width: 575px) {
    .topbar-inner { justify-content: center; }
    .topbar-item { display: none; }
    .brand img { height: 46px; }
    .section { padding: 3.6rem 0; }
    h1 { font-size: 2.7rem; }
    .process-step { grid-template-columns: 58px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
