

:root {
    --gold: #9a7b3a;
    --gold-light: #b8953a;
    --gold-pale: #f5ead8;
    --ink: #0d0d14;
    --slate: #4a5068;
    --slate-light: #7a8099;
    --cream: #f7f4ef;
    --ivory: #fdfcf9;
    --border-gold: rgba(154, 123, 58, 0.18);
    --border-light: rgba(0, 0, 0, 0.07);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alef';
    background: #ffffff;
    color: var(--ink);
    overflow-x: hidden;
}

.display {
    font-family: "Playfair Display", Georgia, serif;
}

.label {
    font-family: "DM Mono", monospace;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f0ece5;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* CURSOR */
#cursor-dot {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
}

#cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(154, 123, 58, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: multiply;
}

/* NAV */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
    background: rgba(253, 252, 249, 0.99);
    box-shadow: 0 1px 28px rgba(0, 0, 0, 0.07);
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', 'Georgia', 'serif';
    font-size: 19px;
    font-weight: 600;
    color: var(--gold);
    position: relative;
}

.nav-logo-mark::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(154, 123, 58, 0.25);
}

.nav-wordmark-main {
    font-family: 'Playfair Display', 'Georgia', 'serif';
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}

.nav-wordmark-sub {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav-ghost {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 9px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-nav-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav-solid {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ink);
    border: 1px solid var(--ink);
    padding: 9px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-nav-solid:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    display: block;
    transition: all 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(253, 252, 249, 0.99);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    padding: 28px 32px 36px;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav ul a {
    display: block;
    padding: 15px 0;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
}

.mobile-nav-cta {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.mobile-nav-cta a {
    flex: 1;
    text-align: center;
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ivory);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-geo {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-geo-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(154, 123, 58, 0.1) 30%, rgba(154, 123, 58, 0.1) 70%, transparent);
}

.hero-geo-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 123, 58, 0.08) 30%, rgba(154, 123, 58, 0.08) 70%, transparent);
}

.hero-geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.06);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    padding: 120px 40px 100px;
    gap: 80px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 700;
    line-height: 1.07;
    color: var(--ink);
    margin-bottom: 26px;
}

.hero-h1 em {
    font-style: bold;
    color: var(--gold);
    display: block;
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 42px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ink);
    border: 1px solid var(--ink);
    padding: 15px 34px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.18);
    padding: 15px 34px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero panels */
.hero-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 20px 14px;
    position: relative;
}

.hero-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.hp-label {
    font-family: 'Alef', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 5px;
}

.hp-val {
    font-family: 'DM Mono', monospace;
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
}

.hp-sub {
    font-size: 13px;
    color: var(--slate-light);
    font-weight: 300;
    margin-top: 4px;
}

.hp-bar {
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    margin-top: 12px;
    overflow: hidden;
}

.hp-fill {
    height: 100%;
    background: var(--gold);
    animation: fillbar 2.5s ease forwards;
}

@keyframes fillbar {
    from {
        width: 0;
    }
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pgreen 2s ease-in-out infinite;
}

@keyframes pgreen {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}


/* SECTION COMMONS */
.sw {
    max-width: 1360px;
    margin: 0 auto;
}

.stag-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sline {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.stag {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.sh {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
}

.sh em {
    font-style: italic;
    color: var(--gold);
}

.slead {
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
}


/* FU = Fade Up animation */
.fu {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fu.vis {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

/* ABOUT */
.about-box {
    border: 1px solid var(--border-gold);
    background: #fff;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.globe {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.2);
    position: relative;
    animation: gspin 28s linear infinite;
}

.globe::before {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.12);
}

.globe::after {
    content: '';
    position: absolute;
    inset: 58px;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.07);
}

@keyframes gspin {
    to {
        transform: rotate(360deg);
    }
}

.gdot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pdot 2.2s ease-in-out infinite;
}

@keyframes pdot {

    0%,
    100% {
        opacity: .3;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.5)
    }
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--ink);
    padding: 16px 20px;
    text-align: center;
}

.abn {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-light);
}

.abl {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.pillar-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-top: 38px;
}

.pillar {
    background: #fff;
    padding: 20px 18px;
    transition: background 0.2s;
}

.pillar:hover {
    background: #faf6ef;
}

.pillar-ic {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 8px;
}

.pillar-t {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.pillar-d {
    font-size: 14px;
    color: var(--slate);
    font-weight: 300;
    line-height: 1.6;
}

/* SERVICES */
.svc-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.svc-c {
    background: #fff;
    padding: 38px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.svc-c::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-c:hover {
    background: #faf6ef;
}

.svc-c:hover::after {
    transform: scaleX(1);
}

.svc-n {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 500;
    color: rgba(154, 123, 58, 0.05);
    position: absolute;
    top: 6px;
    right: 12px;
    line-height: 1;
}

.svc-ib {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: border-color 0.3s;
}

.svc-c:hover .svc-ib {
    border-color: var(--gold);
    background: rgba(154, 123, 58, 0.06);
}

.svc-ib i {
    font-size: 20px;
    color: var(--gold);
}

.svc-t {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.svc-d {
    font-size: 14px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 22px;
}

@media (max-width: 767px) {
    .svc-d {
        font-size: 16px;
    }
    
}

.svc-r {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.svc-pct {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
}

.svc-lbl {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate);
}
@media (max-width: 767px) {
    .svc-lbl {
        font-size: 12px;
    }
}

.svc-xfer {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-top: none;
}

.xfer-g {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.xfer-c {
    padding: 36px 24px;
    border-right: 1px solid var(--border-light);
}

.xfer-c:last-child {
    border-right: none;
}

.xfer-mid {
    padding: 36px 30px;
}

.cf-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ca {
    text-align: center;
}

.ca-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 17px;
    margin: 0 auto 5px;
}

.ca-btc {
    background: rgba(247, 147, 26, .1);
    color: #f7931a
}

.ca-eth {
    background: rgba(98, 126, 234, .1);
    color: #627eea
}

.ca-usdt {
    background: rgba(38, 161, 123, .1);
    color: #26a17b
}

.ca-n {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--slate-light);
}

.ca-arr {
    color: var(--gold);
    opacity: .5;
    font-size: 12px;
}

.feat-l {
    list-style: none;
    margin-top: 12px;
}

.feat-l li {
    font-weight: 300;
    color: var(--slate);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-l li i {
    color: var(--gold);
    font-size: 9px;
}

/* HOW */
.how-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.how-s {
    background: #fff;
    padding: 52px 38px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.how-s:hover {
    background: #faf6ef;
}

.how-bgn {
    position: absolute;
    top: -16px;
    right: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    font-weight: 700;
    color: rgba(154, 124, 58, 0.128);
    line-height: 1;
}

.how-n {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.how-n::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.how-iw {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    position: relative;
}

.how-iw::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(154, 123, 58, 0.12);
}

.how-iw i {
    font-size: 22px;
    color: var(--gold);
}

.how-t {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
}

.how-d {
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 26px;
}

.how-bl {
    list-style: none;
}

.how-bl li {
    font-weight: 300;
    color: var(--slate);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.how-bl li::before {
    content: '—';
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* WHY */
.wpc {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    padding: 22px 26px;
    margin-bottom: 10px;
}

.wpc-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 5px;
}

.wpc-v {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
}

.wpc-s {
    font-size: 12px;
    color: var(--slate);
    font-weight: 300;
    margin-top: 2px;
}

.wpc-b {
    height: 2px;
    background: rgba(0, 0, 0, 0.07);
    margin-top: 12px;
    overflow: hidden;
}

.wpc-f {
    height: 100%;
    background: var(--gold);
    animation: fillbar 2.5s ease forwards;
}

.why-r {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding-left 0.3s;
}

.why-r:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-r:hover {
    padding-left: 6px;
}

.why-ib {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
}

.why-ib i {
    font-size: 14px;
    color: var(--gold);
}

.why-rt {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.why-rd {
    font-size: 15px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.7;
}

/* TESTIMONIALS */
.testi-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.testi-c {
    background: #fff;
    padding: 38px 32px;
    transition: background 0.3s;
}

.testi-c:hover {
    background: #faf6ef;
}

.testi-q {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: rgba(154, 123, 58, 0.13);
    line-height: .8;
    margin-bottom: 18px;
    display: block;
}

.testi-st {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-st i {
    font-size: 10px;
    color: var(--gold);
}

.testi-tx {
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 26px;
}

.testi-au {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--gold);
    font-weight: 500;
}

.testi-nm {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
}

.testi-rl {
    font-size: 13px;
    font-weight: 300;
    color: var(--slate-light);
    margin-top: 2px;
}

.testi-re {
    margin-left: auto;
    text-align: right;
}

.testi-rn {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #16a34a;
}

.testi-rl2 {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-light);
}

/* FAQ */
.faq-it {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-b {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-qt {
    font-size: 17px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
}

.faq-tog {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    display: grid;
    place-items: center;
    transition: border-color 0.2s;
}

.faq-tog i {
    font-size: 9px;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-it.open .faq-tog {
    border-color: var(--gold);
    background: #faf6ef;
}

.faq-it.open .faq-tog i {
    transform: rotate(45deg);
}

.faq-bd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-it.open .faq-bd {
    max-height: 300px;
}

.faq-bdi {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
}

/* NEWSLETTER */
#newsletter {
    background: var(--ink);
}

.nl-in {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 14px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.nl-in::placeholder {
    color: rgba(255, 255, 255, 0.916);
}

.nl-in:focus {
    border-color: var(--gold-light);
}

.nl-bt {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold-light);
    border: none;
    padding: 0 26px;
    cursor: pointer;
    transition: background 0.2s;
}

.nl-bt:hover {
    background: #c9a64c;
}

.nl-f {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.nl-fi {
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 7px;
    display: block;
}

.nl-ft {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.973);
    margin-bottom: 3px;
}

.nl-fd {
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 300;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background: var(--ink);
}

.ft-bn {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}

.ft-bt {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.ft-bd {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.938);
    line-height: 1.75;
    max-width: 470px;
}

.ft-soc {
    width: 33px;
    height: 33px;
    border: 1px solid rgba(255, 255, 255, 0.274);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.692);
    font-size: 12px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.ft-soc:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.ft-ct {
    font-size: 14px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.144);
}

.ft-lk {
    list-style: none;
}

.ft-lk li {
    margin-bottom: 9px;
}

.ft-lk a {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.744);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    gap: 7px;
    align-items: center;
}

.ft-lk a::before {
    content: '—';
    color: rgb(174, 136, 55);
    font-size: 10px;
}

.ft-lk a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.ft-ci {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ft-ci i {
    font-size: 13px;
    color: var(--gold-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.ft-ct2 {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.733);
    line-height: 1.5;
}

.ft-copy {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.655);
}

.ft-leg a {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgb(109, 155, 255);
    text-decoration: underline;
    transition: color 0.2s;
}

.ft-leg a:hover {
    color: var(--gold-light);
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .svc-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .xfer-g {
        grid-template-columns: 1fr;
    }

    .xfer-c {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .xfer-c:last-child {
        border-bottom: none;
    }
}

@media(max-width:900px) {

    .nav-links,
    .nav-cta-g {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hero-content-wrap {
        flex-direction: column;
        padding: 100px 24px 60px;
        gap: 36px;
    }

    .hero-right {
        width: 100%;
    }

    .how-g,
    .testi-g,
    .svc-g {
        grid-template-columns: 1fr;
    }

    .about-flex,
    .why-flex,
    .faq-flex,
    .nl-flex {
        flex-direction: column !important;
    }

    .abt-vis {
        margin-bottom: 56px;
    }

    .wpc-stack {
        order: -1;
    }
}

@media(max-width:600px) {
    .hero-h1 {
        font-size: 38px;
    }

    .sh {
        font-size: 28px;
    }

    .hero-act {
        flex-direction: column;
    }

    .nl-form {
        flex-direction: column;
    }

    .nl-in {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .nl-bt {
        padding: 13px 0;
        width: 100%;
    }

    .ft-leg {
        flex-wrap: wrap;
        gap: 12px !important;
    }
}