:root {
    --white: #FFFFFF;
    --off-white: #F9F7F4;
    --light-gray: #F0EDE8;
    --mid-gray: #E2DDD6;
    --border-gray: #D8D2C9;
    --warm-gold: #A8855A;
    --coral: #C07040;
    --coral-dark: #9A5830;
    --coral-light: #E8927A;
    --charcoal: #1A1714;
    --charcoal-mid: #2C2724;
    --text-dark: #1A1714;
    --text-mid: #4A4540;
    --text-muted: #8A7F75;
    --border-soft: rgba(168, 133, 90, 0.18);
    --shadow-sm: 0 2px 12px rgba(26, 23, 20, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 23, 20, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 23, 20, 0.15);
    --border-radius: 16px;
    --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── 3D CANVAS BG ──────────────────────── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
}

/* ── NAV ───────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 1px 20px rgba(26, 23, 20, 0.06);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-dark);
}

.nav-logo span {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 40px;
    font-weight: 700 !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--coral-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(192, 112, 64, 0.3) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ──────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192, 112, 64, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(168, 133, 90, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-gray);
    border-radius: 40px;
    padding: 7px 20px;
    font-size: 0.63rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-bottom: 36px;
    background: var(--off-white);
    animation: fadeUp 0.8s ease both;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--text-dark);
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--coral);
}

.hero-title .line2 {
    display: block;
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-family: 'DM Mono', monospace;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    margin-top: 16px;
    text-transform: uppercase;
}

.hero-sub {
    max-width: 480px;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 52px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 60px;
    padding: 14px 36px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(192, 112, 64, 0.25);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s;
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(192, 112, 64, 0.35);
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-gray);
    border-radius: 60px;
    padding: 14px 36px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--warm-gold);
    color: var(--warm-gold);
    transform: translateY(-2px);
    background: rgba(168, 133, 90, 0.04);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeUp 1s 0.6s ease both;
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--warm-gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    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;
    }
}

/* ── COIN STRIP ────────────────────────── */
.coin-strip {
    position: relative;
    z-index: 1;
    background: var(--charcoal);
    border-top: 1px solid rgba(196, 164, 124, 0.12);
    border-bottom: 1px solid rgba(196, 164, 124, 0.12);
    padding: 0;
    overflow: hidden;
}

.coin-strip-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
}

.coin-strip:hover .coin-strip-track {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.coin-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 40px;
    border-right: 1px solid rgba(196, 164, 124, 0.1);
    flex-shrink: 0;
}

.coin-strip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    opacity: 0.8;
}

.coin-strip-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.coin-strip-text strong {
    color: var(--coral-light);
    font-weight: 400;
    letter-spacing: 0.18em;
}

/* ── SECTION COMMON ────────────────────── */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    max-width: 36px;
    height: 1px;
    background: var(--coral);
    opacity: 0.4;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title em {
    font-style: italic;
    color: var(--coral);
}

/* ── VIDEO REELS ───────────────────────── */
.reels-section {
    padding: 80px 0 0;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    overflow: hidden;
}

.reels-header {
    padding: 0 48px 44px;
}

#reel-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 48px 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#reel-container::-webkit-scrollbar {
    display: none;
}

.reel-item {
    flex: 0 0 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.reel-item:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-audio-btn {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}

.reel-audio-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.reel-item .reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.75) 55%, transparent 100%);
    padding: 20px 18px 18px;
}

.reel-item .reel-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--text-dark);
    line-height: 1.3;
}

.reel-item .reel-overlay .price {
    color: var(--warm-gold);
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.reel-item .reel-overlay .desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    padding: 9px 0;
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 14px rgba(192, 112, 64, 0.22);
}

.reel-shop-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(192, 112, 64, 0.32);
}

.reel-shop-btn::after {
    content: '→';
}

.reel-item .reel-top {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
    backdrop-filter: blur(8px);
}

.reel-item .reel-discount {
    position: absolute;
    top: 54px;
    right: 14px;
    background: var(--coral);
    color: var(--white);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.reel-empty {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.reel-placeholder-item {
    width: 200px;
    height: 360px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--light-gray), rgba(168, 133, 90, 0.07));
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.reel-placeholder-item .icon {
    font-size: 2rem;
    opacity: 0.3;
}

.reel-placeholder-item p {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-align: center;
    padding: 0 16px;
}

/* ── CUSTOM ORDER BANNER ───────────────── */
.custom-banner {
    position: relative;
    z-index: 1;
    padding: 0 48px 90px;
    background: var(--white);
}

.custom-banner-inner {
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 72px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.custom-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 133, 90, 0.4), transparent);
}

.custom-banner-inner::after {
    content: 'C';
    position: absolute;
    right: -24px;
    bottom: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(168, 133, 90, 0.05);
    pointer-events: none;
    user-select: none;
}

.custom-banner-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.custom-banner-text .section-label {
    color: var(--coral);
}

.custom-banner-text .section-title {
    margin-bottom: 12px;
}

.custom-banner-text p {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.85;
    max-width: 380px;
}

.custom-banner-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.custom-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 60px;
    padding: 16px 44px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.custom-banner-btn:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(192, 112, 64, 0.22);
}

.custom-banner-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    text-align: right;
    opacity: 0.7;
}

/* ── GALLERY ───────────────────────────── */
.gallery-section {
    padding: 90px 48px;
    background: var(--off-white);
}

.gallery-header {
    margin-bottom: 52px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.gallery-link {
    display: contents;
    text-decoration: none;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    aspect-ratio: 1;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 5;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(2) {
    grid-column: span 3;
    aspect-ratio: 3/4;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
    aspect-ratio: 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(5) {
    grid-column: span 5;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(6) {
    grid-column: span 3;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg,
            rgba(168, 133, 90, 0.06) 0%,
            rgba(192, 112, 64, 0.04) 100%);
}

.gallery-placeholder span {
    font-size: 1.8rem;
    opacity: 0.25;
}

.gallery-placeholder p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── FEATURES ──────────────────────────── */
.features-section {
    padding: 90px 48px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
}

.features-text p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.88rem;
    margin-top: 16px;
    max-width: 420px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-card {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 26px 22px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    background: var(--white);
    border-color: rgba(168, 133, 90, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--warm-gold);
}

.feature-card h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── COIN SECTION ──────────────────────── */
.coin-section {
    margin: 0 48px 90px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
    border-radius: 28px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.coin-section::before {
    content: 'A';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22rem;
    font-weight: 300;
    color: rgba(196, 164, 124, 0.05);
    font-family: 'Cormorant Garamond', serif;
    pointer-events: none;
    line-height: 1;
}

.coin-section .section-label {
    color: var(--coral-light);
}

.coin-section .section-title {
    color: var(--white);
}

.coin-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.coin-3d {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-gold), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    box-shadow:
        0 0 0 10px rgba(196, 164, 124, 0.12),
        0 0 0 20px rgba(196, 164, 124, 0.06),
        0 20px 60px rgba(192, 112, 64, 0.4);
    animation: floatCoin 4s ease-in-out infinite;
}

@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-12px) rotateY(10deg);
    }
}

.coin-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coin-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.coin-step-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(196, 164, 124, 0.15);
    border: 1px solid rgba(196, 164, 124, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--warm-gold);
}

.coin-step-text h5 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.coin-step-text p {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

/* ── B2B SECTION ───────────────────────── */
.b2b-section {
    padding: 0 48px 90px;
    text-align: center;
}

.b2b-inner {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: 28px;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.b2b-inner::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 112, 64, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.b2b-inner .section-label {
    justify-content: center;
}

.b2b-inner .section-label::after {
    display: none;
}

.b2b-inner p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto 36px;
}

/* ── TESTIMONIALS ──────────────────────── */
.testimonials-section {
    padding: 90px 48px;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
}

.testimonials-header {
    margin-bottom: 52px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(168, 133, 90, 0.35);
}

.testimonial-card.featured {
    border: 1.5px solid rgba(192, 112, 64, 0.35);
    background: var(--white);
}

.t-stars {
    color: var(--warm-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
    font-style: italic;
    flex: 1;
}

.t-divider {
    height: 1px;
    background: var(--border-gray);
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.t-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.t-role {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.t-badge {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.57rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(192, 112, 64, 0.1);
    color: var(--coral-dark);
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    border: 1px solid rgba(192, 112, 64, 0.2);
}

.testimonials-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.testimonials-summary-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonials-summary-stat .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-dark);
}

.testimonials-summary-stat .big em {
    font-style: italic;
    color: var(--coral);
}

.testimonials-summary-stat .small {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimonials-summary-divider {
    width: 1px;
    height: 48px;
    background: var(--border-gray);
}

/* ── FOOTER ────────────────────────────── */
footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(196, 164, 124, 0.15);
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 64px 48px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-section h3 {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-bottom: 20px;
}

.footer-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-brand-logo span {
    color: var(--coral);
}

.footer-brand-desc {
    font-size: 0.78rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.38);
    max-width: 300px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-section ul li a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--warm-gold);
}

.footer-section ul li a i {
    font-size: 0.8rem;
    width: 14px;
    opacity: 0.7;
}

.footer-section ul li a:hover i {
    opacity: 1;
}

.footer-follow-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-top: 6px;
    margin-bottom: 2px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 48px;
}

.footer-bottom p {
    font-size: 0.63rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-bottom-links a {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--warm-gold);
}

/* Hide mobile-only elements on desktop */
.testimonials-dots,
.testimonials-swipe-hint {
    display: none;
}

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* shimmer */
.shimmer {
    background: linear-gradient(90deg,
            rgba(168, 133, 90, 0.06) 0%,
            rgba(168, 133, 90, 0.14) 50%,
            rgba(168, 133, 90, 0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.loading-reel {
    flex: 0 0 280px;
    height: 500px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    flex-shrink: 0;
}

.reel-scroll-hint {
    padding: 10px 48px 0;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reel-scroll-hint::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.4;
}

/* ── MOBILE ────────────────────────────── */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 90px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 0.58rem;
        padding: 5px 14px;
    }

    .hero-sub {
        font-size: 0.82rem;
        margin-bottom: 32px;
    }

    .hero-scroll {
        display: none;
    }

    .custom-banner {
        padding: 0 16px 44px;
    }

    .custom-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 28px;
        gap: 32px;
        border-radius: 20px;
    }

    .custom-banner-inner::after {
        font-size: 8rem;
        right: -10px;
        bottom: -20px;
    }

    .custom-banner-cta {
        align-items: flex-start;
        width: 100%;
    }

    .custom-banner-btn {
        width: 100%;
        justify-content: center;
    }

    .custom-banner-note {
        text-align: left;
    }

    .reels-section {
        padding: 44px 0;
    }

    #reel-container {
        padding: 0 16px 14px;
        gap: 12px;
    }

    .reel-item {
        flex: 0 0 220px;
        height: 380px;
    }

    .reels-header {
        padding: 0 16px 24px;
    }

    .reel-scroll-hint {
        padding: 6px 16px 0;
    }

    .gallery-section {
        padding: 44px 16px;
    }

    .gallery-header {
        margin-bottom: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 6;
        aspect-ratio: 16/9;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 3;
        aspect-ratio: 1;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 3;
        aspect-ratio: 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 3;
        aspect-ratio: 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 3;
        aspect-ratio: 1;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 6;
        aspect-ratio: 16/9;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 16px;
    }

    .features-text p {
        max-width: 100%;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-card {
        padding: 18px 16px;
    }

    .coin-section {
        margin: 0 16px 44px;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px;
        border-radius: 20px;
    }

    .coin-section::before {
        font-size: 10rem;
        right: -20px;
    }

    .coin-3d {
        width: 100px;
        height: 100px;
        font-size: 1.8rem;
    }

    .b2b-section {
        padding: 0 16px 44px;
    }

    .b2b-inner {
        padding: 36px 20px;
        border-radius: 20px;
    }

    .b2b-inner p {
        font-size: 0.82rem;
    }

    /* Testimonials mobile — premium swipe carousel */
    .testimonials-section {
        padding: 52px 0;
    }

    .testimonials-header {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .testimonials-summary {
        gap: 20px;
    }

    .testimonials-summary-divider {
        display: none;
    }

    .testimonials-summary-stat .big {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 8px 20px 28px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        grid-template-columns: unset;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 82vw;
        max-width: 320px;
        scroll-snap-align: start;
        border-radius: 24px;
        padding: 26px 22px;
        background: var(--white);
        border: 1px solid var(--border-gray);
        box-shadow: 0 4px 24px rgba(26, 23, 20, 0.09);
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: -10px;
        right: 16px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 7rem;
        color: rgba(192, 112, 64, 0.08);
        line-height: 1;
        pointer-events: none;
    }

    .testimonial-card.featured {
        background: linear-gradient(145deg, var(--white) 0%, rgba(192, 112, 64, 0.03) 100%);
        border: 1.5px solid rgba(192, 112, 64, 0.3);
    }

    .t-quote {
        font-size: 1rem;
    }

    /* Swipe dots indicator */
    .testimonials-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 0 20px;
        margin-top: 4px;
    }

    .t-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--border-gray);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .t-dot.active {
        width: 20px;
        border-radius: 3px;
        background: var(--coral);
    }

    /* Swipe hint label */
    .testimonials-swipe-hint {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 20px 16px;
        font-family: 'DM Mono', monospace;
        font-size: 0.58rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .testimonials-swipe-hint::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--text-muted);
        opacity: 0.4;
    }

    /* Footer mobile */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 40px 20px 32px;
    }

    .footer-section:first-child {
        grid-column: span 2;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        text-align: center;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reel-item {
        flex: 0 0 200px;
        height: 340px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section:first-child {
        grid-column: span 1;
    }
}