:root {
    --or: #E8752A;
    --or-l: #F09952;
    --bk: #0A0A0C;
    --bk2: #111114;
    --bk3: #141418;
    --bk4: #1A1A1F;
    --g9: #222228;
    --g8: #2E2E35;
    --g7: #3E3E46;
    --g5: #6B6B76;
    --g4: #8E8E9A;
    --g3: #B0B0BA;
    --wh: #FAFAFA
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bk);
    color: var(--wh);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

.cx {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 88px)
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(28px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pu {
    0%, 100% {
        opacity: .3;
        transform: scale(1)
    }
    50% {
        opacity: 1;
        transform: scale(1.3)
    }
}

@keyframes espin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes ereveal {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(.85)
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1)
    }
}

.fade {
    opacity: 0;
    transform: translateY(36px);
    transition: all .85s cubic-bezier(.22, 1, .36, 1)
}

.fade.vis {
    opacity: 1;
    transform: translateY(0)
}

.bt {
    font-size: 15px;
    line-height: 1.85;
    color: var(--g3);
    font-weight: 300
}

.bt p + p {
    margin-top: 20px
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100
}

.nav-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, .94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    transition: opacity .5s;
    border-bottom: 1px solid rgba(232, 117, 42, .05)
}

.nav.scrolled .nav-bg {
    opacity: 1
}

.nav-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 88px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--wh);
    flex-shrink: 0
}

.nav-logo svg {
    height: 30px;
    width: auto
}

.nav-desk {
    display: flex;
    gap: 20px;
    align-items: center
}

.nav-desk a {
    color: var(--g4);
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color .3s;
    white-space: nowrap;
    cursor: pointer
}

.nav-desk a:hover {
    color: var(--or)
}

.nav-cta {
    border: 1px solid var(--or);
    color: var(--or);
    padding: 9px 24px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    background: transparent
}

.nav-cta:hover {
    background: var(--or);
    color: var(--bk)
}

/* MOBILE MENU */
.mob-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mob-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--g3);
    margin: 5px 0;
    transition: all .3s
}

.mob-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px)
}

.mob-toggle.active span:nth-child(2) {
    opacity: 0
}

.mob-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px)
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    z-index: 98;
    background: rgba(10, 10, 12, .98);
    backdrop-filter: blur(20px);
    padding: 40px clamp(24px, 5vw, 88px);
    overflow-y: auto
}

.mob-menu.show {
    display: block
}

.mob-menu a {
    display: block;
    color: var(--g3);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px solid rgba(232, 117, 42, .04)
}

.mob-menu a:hover {
    color: var(--or)
}

.mob-cta {
    margin-top: 24px;
    text-align: center;
    display: block;
    padding: 14px 0;
    border: 1px solid var(--or) !important;
    color: var(--or) !important;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 600
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(232, 117, 42, .06), transparent 60%)
}

.hero-wm {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .03;
    animation: espin 120s linear infinite;
    pointer-events: none
}

.hero-emblem {
    position: relative;
    width: 240px;
    height: 200px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: fu 1s .5s forwards
}

.hero-emblem-flower {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .18
}

.hero-emblem-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 2
}

.hero-emblem-line {
    width: 36px;
    height: 1px;
    background: var(--or);
    opacity: .35;
    margin: 0 auto
}

.hero-emblem-tag {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--g3);
    font-style: italic;
    margin-top: 8px
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
    margin-bottom: 36px;
    opacity: 0;
    animation: fu .8s .2s forwards
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 82px);
    font-weight: 400;
    line-height: 1.06;
    margin-bottom: 24px;
    opacity: 0;
    animation: fu .8s .35s forwards
}

.hero h1 em {
    font-style: italic;
    color: var(--or)
}

.hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--g4);
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0;
    animation: fu .8s .5s forwards
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fu .8s .7s forwards
}

.bf {
    background: var(--or);
    color: var(--bk);
    padding: 15px 40px;
    border: none;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit', sans-serif
}

.bf:hover {
    background: var(--or-l);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(232, 117, 42, .2)
}

.bg {
    background: transparent;
    color: var(--g3);
    padding: 15px 40px;
    border: 1px solid var(--g7);
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit', sans-serif
}

.bg:hover {
    border-color: var(--or);
    color: var(--or)
}

/* BADGES */
.badges {
    border-top: 1px solid rgba(232, 117, 42, .06);
    border-bottom: 1px solid rgba(232, 117, 42, .06);
    padding: 24px 0
}

.badges-inner {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 3.5vw, 56px);
    flex-wrap: wrap
}

.badge {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px
}

.badge::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--or);
    border-radius: 50%;
    opacity: .5
}

/* SECTIONS */
.sec {
    padding: clamp(80px, 10vw, 80px) 0
}

.sec-alt {
    background: var(--bk2)
}

.sh {
    margin-bottom: clamp(44px, 5vw, 68px)
}

.sh-c {
    text-align: center
}

.sh-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px
}

.sh-line {
    width: 24px;
    height: 1px;
    background: var(--or)
}

.sh-txt {
    font-size: 9.5px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600
}

.sh h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 400;
    line-height: 1.18
}

.sh h2 em {
    font-style: italic;
    color: var(--or)
}

.sh p {
    font-size: 14px;
    color: var(--g4);
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
    margin: 16px auto 0
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(48px, 6vw, 72px) 24px;
    border-top: 1px solid rgba(232, 117, 42, .04);
    border-bottom: 1px solid rgba(232, 117, 42, .04);
    text-align: center
}

.divider-q {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 400;
    font-style: italic;
    color: var(--g3);
    line-height: 1.4;
    max-width: 680px
}

.divider-q em {
    color: var(--or)
}

/* ABOUT */
.about-row {
    display: grid;
    grid-template-columns:1.1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center
}

.about-card {
    background: var(--bk3);
    border: 1px solid rgba(232, 117, 42, .08);
    border-radius: 6px;
    padding: clamp(32px, 3vw, 48px);
    position: relative;
    overflow: hidden
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--or), transparent)
}

.ac-s {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 400;
    color: var(--or);
    line-height: 1;
    margin-bottom: 4px
}

.ac-l {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g5);
    margin-bottom: 28px;
    font-weight: 500
}

.ac-d {
    width: 28px;
    height: 1px;
    background: var(--or);
    opacity: .3;
    margin-bottom: 24px
}

.ac-items {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ac-item {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.ac-dot {
    width: 4px;
    height: 4px;
    background: var(--or);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0
}

.ac-item span {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--g4);
    font-weight: 300
}

/* FO */
.fo-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start
}

.fo-cards {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.fo-card {
    background: var(--bk3);
    border-left: 3px solid var(--or);
    padding: clamp(20px, 2vw, 32px);
    border-radius: 0 6px 6px 0;
    transition: all .4s
}

.fo-card:hover {
    background: var(--bk4);
    transform: translateX(4px)
}

.fo-lbl {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600;
    margin-bottom: 8px
}

.fo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--wh);
    line-height: 1.3
}

.fo-card p {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--g4);
    font-weight: 300
}

/* SEGMENTS */
.seg-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.seg-card {
    background: var(--bk3);
    border: 1px solid rgba(232, 117, 42, .06);
    border-radius: 6px;
    padding: clamp(15px, 2vw, 15px);
    transition: all .4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block
}

.seg-card-index {
    background: var(--bk3);
    border: 1px solid rgba(232, 117, 42, .06);
    border-radius: 6px;
    padding: clamp(24px,2vw,36px);
    transition: all .4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block
}

.seg-card:hover {
    border-color: rgba(232, 117, 42, .2);
    transform: translateY(-3px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .3)
}

.seg-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--or);
    opacity: 0;
    transition: opacity .3s
}

.seg-card:hover::after {
    opacity: 1
}

.seg-card-index:hover {
    border-color: rgba(232, 117, 42, .2);
    transform: translateY(-3px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .3)
}

.seg-card-index::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--or);
    opacity: 0;
    transition: opacity .3s
}

.seg-card-index:hover::after {
    opacity: 1
}

.seg-n {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: rgba(232, 117, 42, .06);
    position: absolute;
    top: 2px;
    right: 10px;
    line-height: 1
}

.seg-n-c {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(232, 117, 42, .5);
    position: absolute;
    top: 2px;
    right: 10px;
    line-height: 1
}

.seg-ico {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 117, 42, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--or)
}

.seg-ico-c {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(232, 117, 42, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--or)
}

.seg-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--wh)
}

.seg-card p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--g4);
    font-weight: 300
}

.seg-card-index h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--wh)
}

.seg-card-index p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--g4);
    font-weight: 300
}


.seg-lnk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600;
    transition: gap .3s
}

.seg-card:hover .seg-lnk {
    gap: 9px
}

/* CAPS */
.cap-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: rgba(232, 117, 42, .06);
    border: 1px solid rgba(232, 117, 42, .06);
    border-radius: 6px;
    overflow: hidden
}

.cap {
    background: var(--bk);
    padding: clamp(24px, 2.5vw, 44px);
    transition: background .4s
}

.cap:hover {
    background: var(--bk2)
}

.cap-n {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    color: var(--or);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 1px
}

.cap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--wh)
}

.cap p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--g5);
    font-weight: 300
}

/* ADVANTAGE */
.adv-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start
}

.adv-sticky {
    position: sticky;
    top: 120px
}

.adv-item {
    padding: clamp(20px, 2vw, 28px) 0;
    border-bottom: 1px solid rgba(232, 117, 42, .06)
}

.adv-item:first-child {
    border-top: 1px solid rgba(232, 117, 42, .06)
}

.adv-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--wh);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px
}

.adv-item h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--or);
    border-radius: 50%;
    flex-shrink: 0
}

.adv-item p {
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--g4);
    font-weight: 300;
    padding-left: 16px
}

/* NUMBERS */
.num-bar {
    padding: clamp(44px, 5vw, 72px) 0;
    border-top: 1px solid rgba(232, 117, 42, .06);
    border-bottom: 1px solid rgba(232, 117, 42, .06)
}

.num-row {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.num-v {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 400;
    color: var(--wh);
    line-height: 1;
    margin-bottom: 4px
}

.num-v span {
    color: var(--or)
}

.num-l {
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g5);
    font-weight: 500
}

/* AM */
.am-sec {
    padding: clamp(72px, 8vw, 110px) 0;
    background: var(--bk3);
    border-top: 1px solid rgba(232, 117, 42, .06);
    border-bottom: 1px solid rgba(232, 117, 42, .06)
}

.am-inner {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center
}

.am-badge {
    width: clamp(120px, 12vw, 160px);
    height: clamp(120px, 12vw, 160px);
    border-radius: 50%;
    border: 1px solid rgba(232, 117, 42, .15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    color: var(--or)
}

.am-badge::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(232, 117, 42, .06)
}

/* TRUST */
.trust-row {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px
}

.trust-item {
    text-align: center
}

.trust-ico {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border: 1px solid rgba(232, 117, 42, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600
}

.trust-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px
}

.trust-item p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--g4);
    font-weight: 300;
    max-width: 260px;
    margin: 0 auto
}

/* LEADERSHIP */
.lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.85;
    color: var(--g3);
    font-weight: 300;
    text-align: center
}

.lead-text p + p {
    margin-top: 20px
}

/* CTA */
.cta {
    padding: clamp(80px, 10vw, 160px) 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 117, 42, .05), transparent 50%)
}

.cta-inner {
    position: relative;
    z-index: 1
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px
}

.cta h2 em {
    font-style: italic;
    color: var(--or)
}

.cta p {
    font-size: 13px;
    color: var(--g5);
    font-weight: 300;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 40px
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(232, 117, 42, .04);
    padding: 48px 0 28px
}

.f-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px
}

.f-brand {
    font-size: 12px;
    color: var(--g5);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 10px;
    max-width: 280px
}

.f-col-t {
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 14px;
    font-weight: 600
}

.f-col a {
    display: block;
    color: var(--g5);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 9px;
    transition: color .3s
}

.f-col a:hover {
    color: var(--or)
}

.f-btm {
    border-top: 1px solid rgba(232, 117, 42, .04);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.f-btm span {
    font-size: 10px;
    color: var(--g7);
    font-weight: 300
}

/* SEG DETAIL */
.seg-hero {
    padding: clamp(120px, 16vw, 120px) 0 clamp(90px, 10vw, 90px);
    position: relative
}

.seg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(232, 117, 42, .06), transparent 50%);
    pointer-events: none;
}

.seg-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g5);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 40px;
    transition: color .3s;
    cursor: pointer
}

.seg-back:hover {
    color: var(--or)
}

.seg-back svg {
    width: 16px;
    height: 16px
}

.seg-detail {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start
}

.seg-detail h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px
}

.seg-detail h1 em {
    font-style: italic;
    color: var(--or)
}

.seg-why {
    margin-top: 40px
}

.seg-why h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--wh);
    margin-bottom: 14px
}

.seg-wi {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px
}

.seg-wi::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--or);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0
}

.seg-wi span {
    font-size: 13px;
    line-height: 1.7;
    color: var(--g3);
    font-weight: 300
}

.seg-caps {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.seg-cap {
    background: var(--bk3);
    border: 1px solid rgba(232, 117, 42, .06);
    border-radius: 6px;
    padding: 20px 24px
}

.seg-cap h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--wh);
    margin-bottom: 6px
}

.seg-cap p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--g4);
    font-weight: 300
}

.seg-am {
    margin-top: 24px;
    padding: 20px;
    background: rgba(232, 117, 42, .04);
    border-radius: 6px;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.seg-am svg {
    flex-shrink: 0;
    color: var(--or);
    margin-top: 2px
}

.seg-am p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--g3);
    font-weight: 300
}

/* EDELWEISS DIVIDER */
.ew-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.ew-div-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--or), transparent);
    opacity: .3
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .seg-grid, .cap-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .num-row {
        grid-template-columns:repeat(2, 1fr)
    }

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

    .seg-detail {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .nav-desk {
        display: none
    }

    .mob-toggle {
        display: block
    }

    .about-row, .fo-row, .adv-row, .am-inner {
        grid-template-columns:1fr
    }

    .seg-grid, .cap-grid, .trust-row {
        grid-template-columns:1fr
    }

    .num-row {
        grid-template-columns:repeat(2, 1fr)
    }

    .f-grid {
        grid-template-columns:1fr;
        gap: 24px
    }

    .adv-sticky {
        position: static
    }

    .hero {
        min-height: 92vh
    }

    .seg-caps {
        grid-template-columns:1fr
    }
}
