*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #f2f7f1;
    --white: #ffffff;
    --green-ink: #1a2e1c;
    --green-mid: #2d5c33;
    --green-pale: #c8ddc9;
    --green-ghost: rgba(200, 221, 201, 0.22);
    --gold: #b8963e;
    --gold-light: #d4ae5c;
    --gold-pale: rgba(212, 174, 92, 0.15);
    --glass: rgba(255, 255, 255, 0.58);
    --glass-str: rgba(255, 255, 255, 0.78);
    --glass-b: rgba(255, 255, 255, 0.80);
    --glass-thin: rgba(255, 255, 255, 0.32);
    --border: rgba(255, 255, 255, 0.72);
    --border-dark: rgba(180, 210, 182, 0.35);
    --text: #1a2e1c;
    --text-2: #4a6b50;
    --text-3: #85a48a;
    --sh-sm: 0 2px 16px rgba(26, 46, 28, 0.06);
    --sh-md: 0 8px 40px rgba(26, 46, 28, 0.09);
    --sh-lg: 0 20px 80px rgba(26, 46, 28, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    transition: all .4s ease;
}

nav.solid {
    background: rgba(242, 247, 241, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--sh-sm);
    padding: 1rem 0;
}

nav.solid .logo {
    color: var(--green-ink)
}

nav.solid .logo span {
    color: var(--gold)
}

nav.solid .nl a {
    color: var(--text-2)
}

nav.solid .nl a:hover {
    color: var(--green-ink)
}

nav.solid .ncta {
    border-color: var(--gold);
    color: var(--gold)
}

nav.solid .ncta:hover {
    background: var(--gold);
    color: #fff
}

.nav-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .95);
    transition: color .3s;
}

.logo span {
    color: var(--gold)
}

.nl {
    display: flex;
    gap: 2.5rem;
    list-style: none
}

.nl a {
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-weight: 300;
    transition: color .2s;
}

.nl a:hover {
    color: #fff
}

.ncta {
    padding: .5rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .9);
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.ncta:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .7)
}

.logo a {
  text-decoration: none;
  color: inherit;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* WHEAT FIELD IMAGE */
.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80&fit=crop') center center / cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04) translateX(0)
    }
    to {
        transform: scale(1.08) translateX(-1%)
    }
}

/* layered overlays */
.hero-ov1 {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
    rgba(10, 24, 12, .42) 0%,
    rgba(10, 24, 12, .15) 35%,
    rgba(10, 24, 12, .62) 70%,
    rgba(8, 18, 10, .88) 100%);
}

.hero-ov2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 60% 80% at 30% 60%,
    rgba(10, 24, 12, .3) 0%, transparent 70%);
}

/* grain */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* right floating stats */
.hero-stats {
    position: absolute;
    right: 2.5rem;
    bottom: 6rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    opacity: 0;
    animation: fadeLeft .9s .9s forwards;
}

.hstat {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .85rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    transition: all .3s;
}

.hstat:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateX(-4px)
}

.hstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    white-space: nowrap;
}

.hstat-lbl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .58);
    letter-spacing: .05em;
    line-height: 1.35;
}

/* hero content */
.hero-body {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2.5rem 5.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp .8s .25s forwards;
}

.hero-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold)
}

h1.hero-ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.06;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .9s .4s forwards;
}

h1.hero-ttl em {
    font-style: italic;
    color: var(--gold-light)
}

.hero-pill {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 1rem 1.6rem;
    max-width: 500px;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp .9s .55s forwards;
}

.hero-pill p {
    font-size: .93rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 300;
    line-height: 1.75;
}

.hero-acts {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp .9s .7s forwards;
}

.btn-gold {
    padding: .85rem 2.2rem;
    background: var(--gold);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 62, .35)
}

.btn-outline {
    padding: .85rem 2.2rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, .88);
    font-family: 'DM Sans', sans-serif;
    font-size: .76rem;
    font-weight: 300;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .22);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .4)
}

/* scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.sc-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
    animation: scpulse 2s ease-in-out infinite;
}

.sc-txt {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .36)
}

@keyframes scpulse {
    0%, 100% {
        opacity: .4
    }
    50% {
        opacity: 1
    }
}

/* ── BODY SECTIONS ─────────────────────────────── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2
}

/* section labels */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: .6
}

h2.sh, .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--green-ink);
    margin-bottom: 1.2rem;
}

h2.sh em, .title-highlight {
    font-style: italic;
    color: var(--green-mid)
}

.sb, .subtitle {
    font-size: .95rem;
    color: var(--text-2);
    line-height: 1.85;
    font-weight: 300;
}

/* ── TICKER BAND ────────────────────────────────── */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: .85rem 0;
    position: relative;
    z-index: 2;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerMove 28s linear infinite;
    width: max-content;
}

.ticker-item {
    padding: 0 3rem;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-3);
    font-weight: 300;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
    flex-shrink: 0;
}

@keyframes tickerMove {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

/* ── BENTO GRID (intro) ─────────────────────────── */
.bento-section {
    padding: 6rem 0
}

.bento {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-template-rows:auto auto;
    gap: 1rem;
}

.bento.bento-pair {
    grid-template-columns: 1fr 1fr;
}


/* CARDS di SERVICES */
.cards-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-template-rows:auto auto;
    gap: 1rem;

    .card {
        background: var(--glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--sh-sm);
        transition: all .35s;
        overflow: hidden;
        position: relative;

        &:hover {
            background: var(--glass-str);
            box-shadow: var(--sh-md);
            transform: translateY(-4px);
        }

        .card-wrapper {
            padding: 2.2rem 2rem;

            .intro-title {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(1.6rem, 2.8vw, 2.4rem);
                font-weight: 300;
                line-height: 1.15;
                color: var(--green-ink);
                margin-bottom: 1rem;

                .title-highlight {
                    font-style: italic;
                    color: var(--green-mid);
                }
            }

            .card-icon {
                width: 42px;
                height: 42px;
                border-radius: 10px;
                background: var(--gold-pale);
                border: 1px solid rgba(184, 150, 62, .2);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 1.4rem;
                flex-shrink: 0;

                svg {
                    width: 20px;
                    height: 20px;
                    stroke: var(--gold);
                    fill: none;
                    stroke-width: 1.5;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }

                &.icon-highlight {
                    background:rgba(45,92,51,.08);
                    border-color:rgba(45,92,51,.15);
                }
            }

            .card-title {
                font-family: 'Cormorant Garamond', serif;
                font-size: 1.25rem;
                font-weight: 400;
                color: var(--green-ink);
                margin-bottom: .5rem;
            }

            .card-body {
                font-size: .83rem;
                color: var(--text-2);
                line-height: 1.72;
                font-weight: 300;
            }

            .card-section {
                flex: 1;

                &:last-of-type {
                    padding-left: 2rem;
                    border-left: 1px solid var(--border-dark);
                }
            }
        }
    }

    .card-wide {
        grid-column: span 2;

        .card-wrapper {
            display:flex;
            gap:2.5rem;
            align-items:flex-start;
        }
    }

    .card-tall {
        grid-row: span 2;
    }
}

/* CARDS --- da eliminare in seguito a sostituzione con card*/
.gc {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    transition: all .35s;
    overflow: hidden;
    position: relative;
}

.gc:hover {
    background: var(--glass-str);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

/* spans */
.gc-wide {
    grid-column: span 2
}

.gc-tall {
    grid-row: span 2
}

/* card inner padding */
.gcp {
    padding: 2.2rem 2rem
}

.gcpb {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px
}

/* Card: large intro text */
.gc-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--green-ink);
    margin-bottom: 1rem;
}

.gc-intro-title em {
    font-style: italic;
    color: var(--green-mid)
}

.gc-card-section {
    flex: 1;
    padding-left: 1rem;
    border-left: 1px solid var(--border-dark);
}

/* Card accent top bar */
.gc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.gc:hover::before {
    opacity: 1
}

/* metric cards */
.gc-metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
}

.gc-metric-sub {
    font-size: .78rem;
    color: var(--text-2);
    font-weight: 300;
    line-height: 1.5
}

.gc-metric-lbl {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-top: auto;
    padding-top: 1rem;
    font-weight: 300;
}

/* icon card */
.gc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 150, 62, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    flex-shrink: 0;
}

.gc-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.gc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green-ink);
    margin-bottom: .5rem;
}

.gc-card-body {
    font-size: .83rem;
    color: var(--text-2);
    line-height: 1.72;
    font-weight: 300
}

/* dark tinted card */
.gc-dark {
    background: linear-gradient(135deg, rgba(26, 46, 28, .9), rgba(20, 38, 22, .95));
    border: none;
}

.gc-dark:hover {
    background: linear-gradient(135deg, rgba(32, 56, 34, .95), rgba(26, 46, 28, 1))
}

.gc-dark .gc-card-title {
    color: #fff
}

.gc-dark .gc-card-body {
    color: rgba(255, 255, 255, .6)
}

.gc-dark .gc-metric-num {
    color: var(--gold-light)
}

.gc-dark .gc-metric-sub {
    color: rgba(255, 255, 255, .5)
}

.gc-dark .gc-metric-lbl {
    color: rgba(255, 255, 255, .28)
}

.gc-dark::before {
    opacity: 0 !important
}

/* no top bar on dark */

/* pill tag inside card */
.gc-pill {
    display: inline-block;
    padding: .28rem .75rem;
    border-radius: 100px;
    background: rgba(184, 150, 62, .1);
    border: 1px solid rgba(184, 150, 62, .2);
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

/* ── BENTO CAROUSEL ─────────────────────────────── */
.bento-carousel {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-top: auto;
    flex-shrink: 0;
}

.bc-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.bc-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    display: block;
}

.bc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%);
}

.bc-hint {
    position: absolute;
    bottom: .9rem;
    right: .9rem;
    background: rgba(184, 150, 62, .85);
    color: #fff;
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}

.bc-slide:hover .bc-hint {
    opacity: 1;
}

.bc-dots {
    position: absolute;
    bottom: .7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
    z-index: 5;
}

.bc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s;
}

.bc-dot.bc-dot-active {
    background: #d4ae5c;
    width: 14px;
    border-radius: 3px;
}

/* ── SERVICES STRIP ──────────────────────────────── */
.svc-section {
    padding: 4rem 0 6rem
}

.svc-header {
    max-width: 525px;
    margin-bottom: 3rem;
}

/*.svc-grid {*/
/*    display: grid;*/
/*    grid-template-columns:repeat(3, 1fr);*/
/*    gap: 1rem;*/
/*}*/

/*.svc-card {*/
/*    background: var(--glass);*/
/*    backdrop-filter: blur(20px);*/
/*    -webkit-backdrop-filter: blur(20px);*/
/*    border: 1px solid var(--border);*/
/*    border-radius: var(--radius);*/
/*    box-shadow: var(--sh-sm);*/
/*    padding: 2.4rem 1.8rem 2rem;*/
/*    transition: all .35s;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.svc-card::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 2px;*/
/*    background: linear-gradient(to right, transparent, var(--gold), transparent);*/
/*    opacity: 0;*/
/*    transition: opacity .35s;*/
/*}*/

/*.svc-card:hover {*/
/*    background: var(--glass-str);*/
/*    box-shadow: var(--sh-md);*/
/*    transform: translateY(-6px)*/
/*}*/

/*.svc-card:hover::after {*/
/*    opacity: 1*/
/*}*/

/*.svc-num {*/
/*    font-family: 'Cormorant Garamond', serif;*/
/*    font-size: 2.8rem;*/
/*    font-weight: 300;*/
/*    color: var(--green-pale);*/
/*    line-height: 1;*/
/*    margin-bottom: 1.4rem;*/
/*    display: block;*/
/*}*/

/*.svc-title {*/
/*    font-family: 'Cormorant Garamond', serif;*/
/*    font-size: 1.3rem;*/
/*    font-weight: 400;*/
/*    color: var(--green-ink);*/
/*    margin-bottom: .7rem;*/
/*    line-height: 1.2;*/
/*}*/

/*.svc-body {*/
/*    font-size: .83rem;*/
/*    color: var(--text-2);*/
/*    line-height: 1.75;*/
/*    font-weight: 300*/
/*}*/

.cta-ttl-plain {
    font-style: normal;
}

/* ── MANIFESTO ───────────────────────────────────── */
.mfst-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.mfst-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200, 221, 201, .22) 0%, transparent 70%);
    z-index: 0;
}

.mfst-glass {
    background: var(--glass);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--sh-lg);
    padding: 4.5rem 5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mfst-glass::before, .mfst-glass::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.mfst-glass::before {
    top: 0
}

.mfst-glass::after {
    bottom: 0
}

.mfst-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--green-ink);
    margin-bottom: 2rem;
    position: relative;
}

.mfst-quote::before {
    content: '"';
    position: absolute;
    top: -2.5rem;
    left: -2rem;
    font-size: 9rem;
    color: var(--green-pale);
    line-height: 1;
    font-style: normal;
    z-index: -1;
}

.mfst-sig {
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/* ── VIDEO SECTION ────────────────────────────────── */
.video-section {
    padding: 3rem 0;
}
.video-section .wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.video-wrap-inner {
    margin-top: 3.5rem;
}
.video-block {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    overflow: hidden;
    transition: all .35s;
}
.video-block:hover {
    background: var(--glass-str);
    box-shadow: var(--sh-md);
}
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    background: #000;
}
.video-embed iframe,
.video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    background: #000;
}
.video-embed video {
    background: #000;
}

/* ── PROCESS — MODERN HORIZONTAL ─────────────────── */
.proc-section {
    padding: 6rem 0
}

.proc-steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.proc-step {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    padding: 2rem 1.6rem;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.proc-step:hover {
    background: var(--glass-str);
    box-shadow: var(--sh-md);
    transform: translateY(-4px)
}

.proc-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.proc-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.proc-step-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 150, 62, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proc-step-arrow svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.proc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--green-ink);
    margin-bottom: .5rem;
}

.proc-body {
    font-size: .81rem;
    color: var(--text-2);
    line-height: 1.7;
    font-weight: 300
}

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
    padding: 6rem 0 8rem
}

.cta-glass {
    background: var(--glass);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--sh-lg);
    padding: 5rem 4.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    justify-content: center;
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.cta-ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--green-ink);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-ttl em {
    font-style: italic;
    color: var(--green-mid)
}

.cta-sub {
    font-size: .93rem;
    color: var(--text-2);
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.cta-row {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto 1.2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.cta-row input {
    flex: 1;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-dark);
    border-right: none;
    color: var(--green-ink);
    padding: .9rem 1.3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 300;
    outline: none;
    transition: all .2s;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.cta-row input::placeholder {
    color: var(--text-3)
}

.cta-row input:focus {
    background: rgba(255, 255, 255, .92);
    border-color: var(--gold)
}

.cta-row button {
    padding: .9rem 1.9rem;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    border-radius: 0;
}

.cta-row button:hover {
    background: var(--gold-light)
}

.cta-row button:disabled {
    cursor: default;
    background: var(--gold-light)
}

.cta-note {
    font-size: .69rem;
    color: var(--text-3);
    letter-spacing: .04em
}

.cta-reset {
    margin: 1.2rem auto;
    width: fit-content;
    color: var(--gold);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cta-reset:hover {
    text-decoration: none;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
    background: var(--green-ink);
    padding: 3rem 0 3rem;
    position: relative;
    z-index: 2;
}

.footer-wrap {
    width: 100%;
    padding: 0 2.5rem;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    justify-items: center;
}

.ftcol-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ftcol-brand .ftcol-about {
    display: flex;
    flex-direction: column;
}

.ftcol {
    display: flex;
    flex-direction: column;
}

.flogo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--white);
}

.flogo span {
    color: var(--gold)
}

.ftag {
    font-size: .8rem;
    color: var(--green-pale);
    font-weight: 300;
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 1rem;
}

.fmail {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--green-pale);
    text-decoration: none;
    transition: color .25s ease;
}

.fmail:hover {
    color: var(--gold-light);
}

.fmail svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.fthead {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1.1rem;
    font-weight: 500;
}

.ftlinks {
    list-style: none;
}

.ftlinks li + li {
    margin-top: .7rem;
}

.ftlinks a {
    font-size: .84rem;
    color: var(--green-pale);
    text-decoration: none;
    transition: color .25s ease;
}

.ftlinks a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.fgs {
    font-size: .68rem;
    color: var(--text-3);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.flogo-img {
    max-width: 100px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
    .ftcol-brand {
        grid-column: span 2;
    }
}
/* ── REVEAL ──────────────────────────────────────── */
.r {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s ease, transform .75s ease
}

.r.v {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ── ANIM ────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(22px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

/* ── LEGAL PAGES ──────────────────────────────────── */
.page-body {
    color: #000;
    padding: 60px 150px;
    padding-top: 100px;
}

.page-body h1 {
    margin-top: 0;
    padding-top: 0;
}

.page-body ul {
    margin-left: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {

    .page-body {
        padding: 40px 30px;
    }

    .cards-grid {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto auto auto;

        .card-tall {
            grid-column: span 2;
            grid-row: span 1;
        }
    }

    .bento {
        display: flex;
        flex-direction: column;

        .gcp {
            flex-direction: column;
        }

        .gc-card-section {
            padding-left: 0;
            padding-top: 1rem;
            border-left: none;
            border-top: 1px solid var(--border-dark);
        }
    }

    .hero {
        height: unset;
        min-height: 100vh;
        justify-content: center;
    }

    .hero-body {
        padding: 4.5rem 1.5rem 5.5rem;
    }

    h1.hero-ttl {
        font-size: clamp(3.0rem, 6.5vw, 6rem);
    }

    .gc-wide {
        grid-column: span 2
    }

    .svc-grid, .proc-steps {
        grid-template-columns:1fr
    }

    .svc-header {
        grid-template-columns:1fr
    }

    .proc-step:not(:last-child) .proc-step-arrow svg {
        transform: rotate(90deg);
    }

    .hero-stats {
        display: none
    }

    .mfst-glass {
        padding: 2.5rem 2rem
    }

    .cta-glass {
        padding: 3rem 1.8rem
    }

    .cta-row {
        flex-direction: column
    }

    .cta-row input {
        border-right: 1px solid var(--border-dark);
        border-bottom: none;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }

    .nl {
        display: none
    }

    .footer-i {
        flex-direction: column;
        text-align: center
    }

    .video-section {
        padding: 2rem 0;
    }

    .video-wrap-inner {
        margin-top: 2.5rem;
    }

    .video-block {
        max-width: 100%;
        border-radius: calc(var(--radius) * 0.75);
    }

    .video-embed {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 1.5rem;
    }

    .page-body {
        padding: 30px 20px;
    }

    .page-body h1 {
        font-size: 1.8rem;
    }

    .page-body h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .page-body p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .page-body ul {
        margin-left: 15px;
        font-size: 0.95rem;
    }

    .hero-tag::before {
        content: none;
    }

    .cards-grid {
        display: flex;
        flex-direction: column;

        .card {
            .card-wrapper {
                .card-section {
                    &:last-of-type {
                        padding-left: 0;
                        padding-top: 2rem;
                        border-left: none;
                        border-top: 1px solid var(--border-dark);
                    }
                }
            }
        }

        .card-wide {
            .card-wrapper {
                display:flex;
                flex-direction: column;
                gap:2.5rem;
                align-items:flex-start;
            }
        }
    }

    .video-section {
        padding: 1.5rem 0;
    }

    .video-section .title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .video-wrap-inner {
        margin-top: 1.75rem;
    }

    .video-block {
        border-radius: calc(var(--radius) * 0.6);
    }

    .video-embed {
        aspect-ratio: 16 / 10;
        min-height: 180px;
    }
}