:root {
    /* Logo palette — gradient #004010 → #1a752c */
    --green-dark: #004010;
    --green: #1a752c;
    --green-light: #2d8f42;
    --green-bright: #3aa855;
    --green-glow: rgba(0, 64, 16, .22);
    --green-gradient: linear-gradient(135deg, #004010 0%, #1a752c 52%, #2d8f42 100%);
    --green-gradient-v: linear-gradient(180deg, #004010 0%, #1a752c 100%);
    --green-gradient-soft: linear-gradient(135deg, rgba(0, 64, 16, .06) 0%, rgba(26, 117, 44, .1) 100%);

    /* Light surfaces (no black) */
    --ink: #ffffff;
    --ink2: #f6faf7;
    --ink3: #eef4ef;
    --beige: #f8faf8;
    --newsprint: #fafcfa;
    --cream: #004010;
    --text-muted: #4a6b50;
    --text-soft: #6b8570;
    --on-green: #ffffff;
    --gold: #2d8f42;
    --gold-accent: #3aa855;
    --line: rgba(0, 64, 16, .12);
    --line-strong: rgba(0, 64, 16, .2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6
}

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

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

section {
    position: relative
}

::selection {
    background: var(--green);
    color: var(--on-green)
}

/* ============ MICRO DIVIDER NAVBAR ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(20px, 5vw, 64px);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: .4s;
    box-shadow: 0 4px 24px rgba(0, 64, 16, .06)
}

.nav.scrolled {
    background: rgba(255, 255, 255, .96);
    padding: 11px clamp(20px, 5vw, 64px)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-img {
    display: block;
    height: 82px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .35);
    transition: transform .2s ease, box-shadow .2s ease
}

.nav-logo:hover .logo-img {
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--green-glow)
}

@media (max-width: 480px) {
    .logo-img {
        height: 44px;
        max-width: 160px
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none
}

.nav-menu li {
    display: flex;
    align-items: center
}

.nav-menu a {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cream);
    padding: 6px 22px;
    position: relative;
    transition: .3s;
    opacity: .82
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--green-bright)
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 2px;
    background: var(--green-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.nav-menu a:hover::after {
    transform: scaleX(1)
}

/* tiny animated dividers */
.divider {
    width: 5px;
    height: 5px;
    position: relative;
    flex: 0 0 auto
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-bright);
    transform: translate(-50%, -50%) rotate(0);
    box-shadow: 0 0 8px var(--green-glow);
    animation: dot-pulse 2.4s ease-in-out infinite
}

.divider:nth-child(4)::before {
    animation-delay: .4s
}

.divider:nth-child(6)::before {
    animation-delay: .8s
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(.6);
        opacity: .4
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1
    }
}

.nav-cta {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--green-gradient);
    color: var(--on-green);
    padding: 11px 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    box-shadow: 0 6px 20px var(--green-glow)
}

.nav-cta:hover {
    background: linear-gradient(135deg, #1a752c 0%, #3aa855 100%);
    transform: translateY(-2px);
    color: var(--on-green)
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    fill: var(--on-green)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--cream);
    transition: .3s
}

@keyframes holo-shift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* ============ HERO — VERTICAL BLADE LOUVERS ============ */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background: var(--green-gradient)
}

.blade {
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: flex-grow .5s cubic-bezier(.4, 0, .2, 1), flex-basis .5s cubic-bezier(.4, 0, .2, 1);
    border-right: 1px solid rgba(255, 255, 255, .12);
    flex: 0 0 auto
}

.blade:last-child {
    border-right: none
}

/* unequal blade widths */
.b1 {
    flex-basis: 120px
}

.b2 {
    flex-basis: 280px
}

.b3 {
    flex-basis: 60px
}

.b4 {
    flex-basis: 340px;
    flex-grow: 1
}

.b5 {
    flex-basis: 80px
}

.b6 {
    flex-basis: 260px
}

.b7 {
    flex-basis: 60px
}

/* backgrounds — logo green gradient louvers */
.b1 {
    background: var(--green-dark)
}

.b2 {
    background: var(--green-gradient-v)
}

.b3 {
    background: linear-gradient(180deg, #2d8f42 0%, #1a752c 100%)
}

.b4 {
    background: linear-gradient(160deg, #004010 0%, #1a752c 70%, #2d8f42 100%)
}

.b5 {
    background: linear-gradient(180deg, #1a752c 0%, #004010 100%)
}

.b6 {
    background: var(--green-dark);
    isolation: isolate
}

.b7 {
    background: var(--green-dark)
}

/* louver hover — expand on hover */
.hero:hover .blade {
    flex-grow: 0
}

.blade:hover {
    flex-grow: 1;
    flex-basis: calc(var(--fb, 200px) + 60px)
}

.b1:hover {
    --fb: 120px
}

.b2:hover {
    --fb: 280px
}

.b3:hover {
    --fb: 60px
}

.b4 {
    --fb: 340px
}

.b5:hover {
    --fb: 80px
}

.b6:hover {
    --fb: 260px
}

.b7:hover {
    --fb: 60px
}

/* blade 1 — vertical eyebrow */
.b1-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap
}

.b1::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(rgba(255, 255, 255, .5), transparent)
}

/* blade 2 — sub content / CTA */
.b2-inner {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 22px
}

.blade-cta {
    background: #ffffff;
    color: var(--green-dark);
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 16px 24px;
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    transition: .35s;
    white-space: nowrap
}

.blade-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 64, 16, .25);
    color: var(--green-dark)
}

.trust {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.trust span {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .75)
}

.trust span b {
    color: #b8f0c0;
    font-weight: 700;
    margin-right: 5px
}

/* blade 3 — gold accent with vertical phone */
.b3-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--on-green);
    white-space: nowrap
}

/* blade 4 — headline */
.b4-inner {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 36px
}

.b4 h1 {
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: clamp(56px, 7vw, 96px);
    line-height: .86;
    letter-spacing: .03em;
    color: var(--on-green);
    margin-bottom: 18px
}

.b4 h1 em {
    font-style: normal;
    color: #b8f0c0;
    display: block
}

.b4 .tag {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.4
}

.b4-top {
    position: absolute;
    top: 60px;
    left: 36px;
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase
}

/* blade 5 — graphite slat with stat */
.b5-stat {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translate(-50%, 0) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Bebas Neue';
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap
}

.b5-stat b {
    color: #b8f0c0
}

/* blade 6 — hero photo */
.b6-media {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.b6 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 35%;
    filter: contrast(1.06) saturate(1.05) brightness(.9);
    transition: transform .55s cubic-bezier(.4, 0, .2, 1), filter .45s
}

.b6:hover img {
    transform: scale(1.05);
    filter: contrast(1.08) saturate(1.08) brightness(.95)
}

.b6::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 64, 16, .5) 0%, transparent 32%),
        linear-gradient(270deg, rgba(0, 64, 16, .35) 0%, transparent 18%),
        linear-gradient(180deg, rgba(0, 64, 16, .25) 0%, transparent 40%, rgba(0, 64, 16, .3) 100%)
}

.b6::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08)
}

.b6-caption {
    position: absolute;
    bottom: 48px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    white-space: nowrap;
    text-shadow: 0 1px 12px rgba(0, 64, 16, .6)
}

/* blade 7 — vertical mono */
.b7-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    white-space: nowrap
}

/* floating brand cluster top-left */
.hero-float {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.hero-float .line1 {
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-float .dia {
    color: #b8f0c0;
    font-size: 9px
}

.hero-float .line2 {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 10px;
    letter-spacing: .4em;
    color: rgba(255, 255, 255, .55)
}

.hero-float .grule {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
    margin-top: 4px
}

/* bottom accent bar */
.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 10;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .55), transparent)
}

/* mobile fallback — stack blades into rows */
@media(max-width:860px) {
    .hero {
        height: auto;
        min-height: 0;
        flex-direction: column;
        align-items: stretch
    }

    .blade {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .b1,
    .b3,
    .b5,
    .b7 {
        display: none
    }

    .b4 {
        min-height: 360px
    }

    .b2 {
        min-height: 260px
    }

    .b6 {
        flex-basis: auto;
        height: min(42vh, 320px)
    }

    .b6 img {
        object-position: 50% 30%
    }

    .b6-caption {
        bottom: 32px;
        font-size: 9px;
        letter-spacing: 3px
    }

    .b4-inner,
    .b2-inner {
        position: static;
        padding: 48px 32px
    }

    .b4-top {
        position: static;
        margin: 48px 0 0 32px
    }

    .hero:hover .blade,
    .blade:hover {
        flex: none
    }
}

.btn-primary {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--green-gradient);
    color: var(--on-green);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    box-shadow: 0 8px 28px var(--green-glow)
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a752c 0%, #3aa855 100%);
    transform: translateY(-2px);
    color: var(--on-green)
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: var(--on-green)
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.scroll-hint::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--green-bright), transparent);
    animation: scrolly 1.8s infinite
}

@keyframes scrolly {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ============ ABOUT — STACKED MANIFESTO + STAGGERED STAT RAIL ============ */
.about {
    background: var(--ink2);
    padding: 90px clamp(20px, 6vw, 90px);
    overflow: hidden
}

.about-top {
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 30px
}

.about-wrap {
    max-width: 1180px;
    margin: 0 auto
}

.manifesto {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(30px, 5.2vw, 72px);
    line-height: 1.04;
    color: var(--cream);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: -.5px
}

.manifesto .hl {
    color: var(--green-bright)
}

.manifesto .stroke {
    -webkit-text-stroke: 1.5px var(--green-bright);
    -webkit-text-fill-color: transparent;
    color: transparent
}

.about-lead {
    font-family: 'Cormorant Garamond';
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    max-width: 640px;
    margin: 26px auto 60px;
    line-height: 1.55
}

/* staggered horizontal stat rail — cells sit at alternating heights, connected by a zig-zag baseline */
.stat-rail {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
    padding-top: 30px
}

.stat-rail::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px)
}

.stat {
    position: relative;
    z-index: 1;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 14px;
    text-align: center;
    transition: .4s
}

.stat:nth-child(odd) {
    transform: translateY(-26px)
}

.stat:nth-child(even) {
    transform: translateY(26px)
}

.stat:hover {
    border-color: var(--green);
    box-shadow: 0 16px 40px var(--green-glow);
    transform: translateY(0) scale(1.04)
}

.stat .num {
    font-family: 'Bebas Neue';
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    color: var(--green-bright);
    letter-spacing: 1px
}

.stat .num span {
    color: var(--green-dark)
}

.stat .cap {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
    margin-top: 8px
}

/* ============ CTA BANNER ============ */
.cta-band {
    padding: 70px clamp(20px, 6vw, 90px);
    background: var(--green-gradient);
    position: relative;
    overflow: hidden;
    z-index: 5
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, .14), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 64, 16, .2), transparent 45%)
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-inner h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(34px, 5vw, 60px);
    line-height: .95;
    color: var(--on-green);
    max-width: 680px;
    letter-spacing: 1px
}

.cta-inner h2 em {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 500;
    color: #d4f5d8
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.btn-white {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #fff;
    color: var(--green);
    padding: 16px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
    color: var(--green)
}

.btn-ghost {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s
}

.btn-ghost:hover {
    background: #fff;
    color: var(--green);
    border-color: #fff
}

.btn-white svg,
.btn-ghost svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

/* ============ SERVICES — 3D CAROUSEL (dark stage — previous design) ============ */
.carousel-sec {
    --c-card-w: 380px;
    --c-card-h: 520px;
    --c-radius: 460px;
    --c-stage-h: 600px;
    --c-img-h: 200px;
    padding: clamp(70px, 10vw, 90px) 0 clamp(80px, 12vw, 100px);
    background: linear-gradient(165deg, #002a0b 0%, #004010 28%, #0a2814 55%, #004010 100%);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    z-index: 1;
    isolation: isolate
}

.carousel-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(58, 168, 85, .18), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(0, 64, 16, .5), transparent 40%);
    pointer-events: none
}

.sec-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 60px;
    padding: 0 20px
}

.sec-flag {
    display: inline-block;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 16px
}

.sec-head h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(40px, 6vw, 72px);
    line-height: .95;
    letter-spacing: 1px;
    color: var(--cream)
}

.sec-head p {
    font-family: 'Cormorant Garamond';
    font-size: 19px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 14px
}

.carousel-sec .sec-head {
    position: relative;
    z-index: 2
}

.carousel-sec .sec-head h2 {
    color: #f5f0e8
}

.carousel-sec .sec-head p {
    color: #a8c4ad
}

.carousel-stage {
    position: relative;
    width: 100%;
    max-width: calc(var(--c-card-w) + 80px);
    height: var(--c-stage-h);
    min-height: var(--c-stage-h);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    perspective-origin: 50% 50%;
    overflow: visible;
    padding: 20px 16px 28px;
    z-index: 2
}

.carousel-stage-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.carousel-stage::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow), transparent 65%);
    filter: blur(40px);
    z-index: 0
}

.carousel-track {
    position: relative;
    width: var(--c-card-w);
    height: var(--c-card-h);
    margin: 0 auto;
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform .8s cubic-bezier(.4, 0, .2, 1)
}

.c-card {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--c-card-w);
    height: var(--c-card-h);
    background: #101f12;
    border: 1px solid rgba(58, 168, 85, .28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    border-radius: 10px;
    overflow: hidden;
    backface-visibility: hidden;
    transition: opacity .8s, box-shadow .8s, outline .8s;
    display: flex;
    flex-direction: column;
    box-sizing: border-box
}

.c-card .c-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block
}

.c-imgwrap {
    position: relative;
    flex: 0 0 var(--c-img-h);
    height: var(--c-img-h);
    min-height: var(--c-img-h);
    overflow: hidden
}

.c-imgwrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10, 20, 12, .9)), rgba(26, 101, 32, .2);
    mix-blend-mode: multiply
}

.c-num {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 2;
    font-family: 'IBM Plex Mono';
    font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(10, 15, 10, .65);
    padding: 5px 11px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .15)
}

.c-body {
    padding: 20px 22px 22px;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0
}

.carousel-sec .c-body h3 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(20px, 2.5vw, 24px);
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #f5f0e8;
    line-height: 1.1;
    margin: 0;
    width: 100%
}

.carousel-sec .c-body .c-desc {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: clamp(14px, 1.8vw, 16px);
    color: #aaa499;
    margin: 10px 0 12px;
    line-height: 1.45;
    flex: 1 1 auto;
    width: 100%
}

.c-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    width: 100%
}

.carousel-sec .c-tags span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green-bright);
    border: 1px solid rgba(58, 168, 85, .45);
    padding: 4px 10px;
    border-radius: 30px
}

.carousel-sec .c-link {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5f0e8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: .3s
}

.carousel-sec .c-link:hover {
    color: var(--green-bright);
    gap: 13px
}

.c-card.active {
    box-shadow: 0 0 60px var(--green-glow), 0 20px 50px rgba(0, 0, 0, .4);
    outline: 3px solid var(--green-bright);
    outline-offset: -1px
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 28px);
    margin-top: clamp(28px, 5vw, 48px);
    position: relative;
    z-index: 3;
    padding: 0 clamp(12px, 4vw, 24px);
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.c-arrow {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .06);
    color: #f5f0e8;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
    padding: 0
}

.c-arrow:hover {
    background: var(--green);
    border-color: var(--green-bright);
    transform: scale(1.08);
    box-shadow: 0 0 22px var(--green-glow)
}

.c-arrow:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 3px
}

.c-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.c-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px
}

.c-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .22);
    cursor: pointer;
    transition: transform .3s, background .3s, box-shadow .3s
}

.c-dot:hover {
    background: rgba(58, 168, 85, .65)
}

.c-dot.on {
    background: var(--green-bright);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--green-glow)
}

/* ============ FAQ ============ */
.faq-sec {
    padding: 90px clamp(20px, 6vw, 90px);
    background: var(--ink2);
    position: relative;
    z-index: 5
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--cream);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: clamp(19px, 2.4vw, 26px);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .3s
}

.faq-q:hover {
    color: var(--green-bright)
}

.faq-q .ic {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--green);
    display: grid;
    place-items: center;
    transition: .4s;
    position: relative
}

.faq-q .ic::before,
.faq-q .ic::after {
    content: "";
    position: absolute;
    background: var(--green-bright);
    transition: .3s
}

.faq-q .ic::before {
    width: 14px;
    height: 2px
}

.faq-q .ic::after {
    width: 2px;
    height: 14px
}

.faq-item.open .ic {
    background: var(--green);
    transform: rotate(135deg)
}

.faq-item.open .ic::before,
.faq-item.open .ic::after {
    background: #fff
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    font-family: 'Cormorant Garamond';
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6
}

.faq-a p {
    padding: 0 0 26px
}

/* ============ MONDRIAN DETAILED SERVICES ============ */
.mond-sec {
    padding: 90px clamp(20px, 5vw, 70px);
    background: var(--ink);
    position: relative;
    z-index: 5
}

.mond {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    grid-template-rows: 300px 200px 250px;
    gap: 3px;
    background: var(--green-dark)
}

.cell {
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s
}

.cell:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 18px 40px rgba(0, 64, 16, .2)
}

.cell-service {
    background: var(--ink2);
    padding: 26px;
    border-left: 4px solid var(--green);
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.cell-service h4 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cream);
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.02
}

.cell-service p {
    font-family: 'Cormorant Garamond';
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.45
}

.cell-service .more {
    margin-top: 14px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-bright);
    opacity: 0;
    transform: translateY(6px);
    transition: .3s
}

.cell-service:hover .more {
    opacity: 1;
    transform: translateY(0)
}

.cell-olive {
    background: var(--green-gradient);
    display: grid;
    place-items: center
}

.cell-olive b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(70px, 9vw, 120px);
    color: rgba(255, 255, 255, .92);
    line-height: 1
}

.cell-beige {
    background: var(--beige);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cell-beige h5 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    text-transform: uppercase;
    color: var(--green-dark);
    font-size: 20px
}

.cell-beige p {
    font-family: 'Cormorant Garamond';
    font-size: 15px;
    color: #4a463c;
    margin-top: 8px;
    line-height: 1.5
}

.cell-img {
    min-height: 200px
}

.cell-img img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover
}

.cell-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 16, .12);
    mix-blend-mode: multiply
}

.cell-stat {
    background: var(--ink3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px
}

.cell-stat .num {
    font-family: 'Bebas Neue';
    font-size: clamp(46px, 6vw, 72px);
    color: var(--green-bright);
    line-height: 1
}

.cell-stat .cap {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
    margin-top: 6px
}

/* grid placement */
.m1 {
    grid-column: 1;
    grid-row: 1
}

.m2 {
    grid-column: 2;
    grid-row: 1
}

.m3 {
    grid-column: 3 / span 2;
    grid-row: 1
}

.m4 {
    grid-column: 1;
    grid-row: 2
}

.m5 {
    grid-column: 2;
    grid-row: 2 / span 2
}

.m6 {
    grid-column: 3;
    grid-row: 2
}

.m7 {
    grid-column: 4;
    grid-row: 2
}

.m8 {
    grid-column: 1;
    grid-row: 3
}

.m9 {
    grid-column: 3;
    grid-row: 3
}

.m10 {
    grid-column: 4;
    grid-row: 3
}

/* ============ SERVICE AREAS — FULL-WIDTH SCROLLING MARQUEE ============ */
.area-sec {
    padding: 90px 0;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
    z-index: 5
}

.area-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
    padding: 0 20px
}

.area-pin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-bright);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 16px
}

.area-pin svg {
    width: 18px;
    height: 18px;
    fill: var(--green-bright)
}

.area-head h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(40px, 6vw, 76px);
    line-height: .95;
    color: var(--cream);
    letter-spacing: 1px
}

.area-head h2 .accent {
    color: var(--green-bright)
}

.area-head p {
    font-family: 'Cormorant Garamond';
    font-size: 19px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 14px
}

.marquee {
    display: flex;
    flex-direction: column;
    gap: 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #004010 12%, #004010 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #004010 12%, #004010 88%, transparent)
}

.mq-row {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform
}

.mq-row.left {
    animation: mq-left 34s linear infinite
}

.mq-row.right {
    animation: mq-right 38s linear infinite
}

.area-sec:hover .mq-row {
    animation-play-state: paused
}

@keyframes mq-left {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes mq-right {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

.city {
    flex: 0 0 auto;
    background: var(--ink);
    border: 1px solid var(--line);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Bebas Neue';
    font-size: 30px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-radius: 60px;
    transition: .3s;
    white-space: nowrap
}

.city:hover {
    background: var(--green-gradient);
    color: var(--on-green);
    border-color: var(--green);
    box-shadow: 0 12px 30px var(--green-glow)
}

.city svg {
    width: 18px;
    height: 18px;
    fill: var(--green-bright);
    flex: 0 0 auto;
    transition: .3s
}

.city:hover svg {
    fill: #fff
}

.city.lead-city {
    background: var(--green-gradient);
    color: var(--on-green);
    border-color: var(--green)
}

.city.lead-city svg {
    fill: #fff
}

/* ============ WHY US ============ */
.why-sec {
    padding: 90px clamp(20px, 6vw, 90px);
    background: var(--ink);
    position: relative;
    z-index: 5
}

.why-grid {
    max-width: 1280px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.why-card {
    background: var(--ink2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 26px;
    position: relative;
    overflow: hidden;
    transition: .4s
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 64, 16, .35);
    box-shadow: 0 22px 50px rgba(0, 64, 16, .12)
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-ic {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--green-gradient);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 26px var(--green-glow)
}

.why-ic svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.why-card h4 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    text-transform: uppercase;
    font-size: 21px;
    color: var(--cream);
    letter-spacing: .5px
}

.why-card p {
    font-family: 'Cormorant Garamond';
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.55
}

/* ============ CONTACT — STACKED CHIP ROW + WIDE MAP ============ */
.contact-sec {
    padding: 90px clamp(20px, 6vw, 90px);
    background: var(--ink2);
    position: relative;
    z-index: 5
}

.contact-wrap {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center
}

.contact-wrap h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(40px, 6vw, 76px);
    line-height: .95;
    color: var(--cream);
    letter-spacing: 1px
}

.contact-wrap h2 .accent {
    color: var(--green-bright)
}

.contact-wrap .lead {
    font-family: 'Cormorant Garamond';
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    margin: 14px auto 44px;
    max-width: 560px
}

.cinfo-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 34px
}

.cinfo-row {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: .4s
}

.cinfo-row:hover {
    border-color: var(--green);
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 64, 16, .1)
}

.cinfo-ic {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: rgba(0, 64, 16, .08);
    border: 1px solid rgba(0, 64, 16, .2);
    display: grid;
    place-items: center
}

.cinfo-ic svg {
    width: 24px;
    height: 24px;
    fill: var(--green-bright)
}

.cinfo-row .t small {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
    display: block;
    margin-bottom: 4px
}

.cinfo-row .t a,
.cinfo-row .t span {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 19px;
    color: var(--cream);
    line-height: 1.2
}

.cinfo-row .t a:hover {
    color: var(--green-bright)
}

.contact-map {
    position: relative;
    height: 420px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.3) contrast(1.05)
}

.map-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--green-gradient);
    color: var(--on-green);
    padding: 10px 16px;
    border-radius: 10px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .4)
}

.map-tag svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

/* ============ FOOTER — NEWSPAPER ============ */
.paper {
    background: var(--newsprint);
    color: var(--green-dark);
    padding: 46px clamp(20px, 6vw, 70px) 30px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 5
}

.paper-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #cbc6b8;
    padding-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a564c
}

.masthead {
    text-align: center;
    padding: 20px 0 6px;
    border-bottom: 4px double var(--green-dark);
    margin-bottom: 4px
}

.masthead h2 {
    font-family: 'Playfair Display';
    font-weight: 900;
    font-size: clamp(34px, 7vw, 84px);
    line-height: .9;
    letter-spacing: 1px;
    color: var(--green-dark)
}

.masthead .sub {
    font-style: italic;
    font-size: clamp(13px, 1.6vw, 18px);
    color: #3a362e;
    margin-top: 8px;
    letter-spacing: 1px
}

.paper-rule {
    border-bottom: 1px solid var(--green-dark);
    margin-bottom: 22px
}

.paper-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    border-bottom: 2px solid var(--green-dark);
    padding-bottom: 26px
}

.pcol {
    border-left: 1px solid #cbc6b8;
    padding-left: 18px
}

.pcol:first-child {
    border-left: none;
    padding-left: 0
}

.pcol .flag {
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--green-dark);
    padding-bottom: 6px;
    margin-bottom: 14px;
    display: inline-block
}

.pcol ul {
    list-style: none
}

.pcol ul li {
    margin-bottom: 9px
}

.pcol ul li a {
    font-size: 16px;
    color: #2a2620;
    transition: .2s;
    border-bottom: 1px solid transparent
}

.pcol ul li a:hover {
    color: var(--green);
    border-bottom-color: var(--green)
}

.pcol p {
    font-size: 15px;
    color: #33302a;
    line-height: 1.5;
    margin-bottom: 8px
}

.pcol .brief b {
    font-weight: 700
}

.ad-box {
    border: 2px solid var(--green-dark);
    padding: 14px;
    text-align: center
}

.ad-box .small {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5a564c
}

.ad-box b {
    font-family: 'Playfair Display';
    font-weight: 900;
    font-size: 22px;
    display: block;
    margin: 4px 0;
    color: var(--green-dark)
}

.coupon {
    border: 2px dashed var(--green);
    padding: 14px;
    text-align: center;
    margin-top: 6px;
    background: rgba(0, 64, 16, .05)
}

.coupon b {
    font-family: 'Playfair Display';
    font-weight: 900;
    font-size: 24px;
    color: var(--green);
    display: block
}

.coupon small {
    font-size: 12px;
    color: #444;
    letter-spacing: .5px
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--green-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: .3s
}

.socials a:hover {
    background: var(--green-gradient);
    border-color: var(--green)
}

.socials a:hover svg {
    fill: #fff
}

.socials svg {
    width: 16px;
    height: 16px;
    fill: var(--green-dark)
}

.paper-legal {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #cbc6b8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #5a564c;
    letter-spacing: .5px;
    text-align: center
}

/* ============ RESPONSIVE ============ */
@media(max-width:980px) {

    .nav-menu,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .stat-rail {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px
    }

    .stat-rail::before {
        display: none
    }

    .stat:nth-child(odd),
    .stat:nth-child(even) {
        transform: none
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .mond {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, auto)
    }

    .m1,
    .m2,
    .m3,
    .m4,
    .m5,
    .m6,
    .m7,
    .m8,
    .m9,
    .m10 {
        grid-column: auto;
        grid-row: auto
    }

    .m3,
    .m5 {
        grid-column: 1 / span 2;
        min-height: 240px
    }

    .cell {
        min-height: 200px
    }

    .cinfo-rail {
        grid-template-columns: 1fr 1fr
    }

    .paper-cols {
        grid-template-columns: 1fr 1fr
    }

    .pcol {
        border-left: none;
        padding-left: 0
    }
}

@media(max-width:560px) {
    .stat-rail {
        grid-template-columns: 1fr 1fr
    }

    .why-grid,
    .paper-cols,
    .cinfo-rail {
        grid-template-columns: 1fr
    }

    .carousel-sec {
        --c-card-w: 300px;
        --c-card-h: 480px;
        --c-radius: 300px;
        --c-stage-h: 540px;
        --c-img-h: 170px
    }

    .carousel-stage {
        max-width: calc(100vw - 24px)
    }

    .carousel-sec .c-body {
        padding: 16px 18px 18px
    }

    .c-arrow {
        width: 48px;
        height: 48px
    }
}

@media (min-width: 561px) and (max-width: 900px) {
    .carousel-sec {
        --c-card-w: 340px;
        --c-card-h: 500px;
        --c-radius: 380px;
        --c-stage-h: 580px;
        --c-img-h: 190px
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.mobile-menu.show {
    opacity: 1;
    pointer-events: auto
}

.mobile-menu a {
    font-family: 'Bebas Neue';
    font-size: 34px;
    letter-spacing: 2px;
    color: var(--cream)
}

.mobile-menu a:hover {
    color: var(--green-bright)
}

.mm-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 34px;
    color: var(--cream);
    cursor: pointer
}

.reveal {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transform: none;
        transition: none
    }
}