@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Outfit:wght@200;300;400;500&display=swap');
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --navy: #020916;
    --navy-mid: #050F20;
    --text-primary: #F5F0E8;
    --text-secondary: rgba(245, 240, 232, 0.55);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 168, 76, 0.12);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    overflow-x: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    mix-blend-mode: normal;
    transition: background 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background: rgba(2, 9, 22, 0.85);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--glass-border);
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--gold);
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    width: 100%;
}
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
}
.scroll-container {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.progress-indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.progress-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.25);
    transition: all 0.5s ease;
}
.progress-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    transform: scale(1.5);
}
#hero {
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 10vw 15vh;
}
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 24px;
    display: block;
    opacity: 1;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    opacity: 1;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 1;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}
.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 300;
    writing-mode: vertical-rl;
}
@keyframes scrollLineAnim {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}
.layout-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}
.layout-split-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    padding: 0 10vw;
    align-items: center;
}
.layout-split-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    padding: 0 10vw;
    align-items: center;
}
.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    font-weight: 400;
}
.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.section-heading em {
    font-style: italic;
    color: var(--gold);
}
.section-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 480px;
}
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.feature-pill {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 100px;
}
.section-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-quote span {
    color: var(--gold);
}
.stat-row {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    font-weight: 300;
}
.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
    opacity: 0.6;
}
.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-top: 40px;
    transition: color 0.3s;
}
.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.contact-email:hover::after {
    transform: scaleX(1);
}
.h-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.mockup-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.07);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}
.mockup-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 168, 76, 0.15);
}
.mockup-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 6s ease;
}
.mockup-wrapper:hover img {
    transform: translateY(-30%);
}
.mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(2, 9, 22, 0.85) 100%);
    pointer-events: none;
}
.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}
.btn-discover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 0;
}
.btn-discover:hover::before {
    transform: scaleX(1);
}
.btn-discover:hover {
    color: var(--navy);
}
.btn-discover span,
.btn-discover .arrow {
    position: relative;
    z-index: 1;
}
.btn-discover .arrow {
    transition: transform 0.3s ease;
}
.btn-discover:hover .arrow {
    transform: translateX(4px);
}
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(2, 9, 22, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}
.mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
}
.mobile-nav a:hover {
    color: var(--gold);
}
@media (max-width: 900px) {
    .navbar {
        padding: 20px 24px;
    }
    .navbar.scrolled {
        padding: 14px 24px;
    }
    .nav-links {
        display: none;
    }
    #hero {
        padding: 0 8vw 20vh;
    }
    .hero-title {
        font-size: clamp(2.8rem, 8vw, 5rem);
    }
    .layout-split-left,
    .layout-split-right {
        grid-template-columns: 1fr;
        padding: 0 8vw;
        gap: 32px;
    }
    .stat-row {
        gap: 24px;
    }
    .progress-indicator {
        right: 14px;
    }
    .section-heading {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 18px 20px;
    }
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s ease;
    }
    #hero {
        padding: 0 6vw 12vh;
    }
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
        line-height: 1.0;
    }
    .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.25em;
        margin-bottom: 14px;
    }
    .hero-scroll-hint {
        bottom: 24px;
    }
    .scroll-line {
        height: 36px;
    }
    .layout-split-left,
    .layout-split-right {
        grid-template-columns: 1fr;
        padding: 0 6vw;
        gap: 20px;
        width: 100%;
    }
    .layout-split-right>div:first-child {
        order: 2;
    }
    .layout-split-right>div:last-child {
        order: 1;
    }
    .scene {
        align-items: flex-start;
        padding-top: 70px;
    }
    .section-heading {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }
    .section-number {
        font-size: 0.6rem;
    }
    .section-body {
        font-size: 0.88rem;
        line-height: 1.75;
    }
    .section-quote {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        padding: 0 20px;
    }
    .glass-card {
        padding: 22px 18px;
    }
    .feature-list {
        gap: 8px;
        margin-top: 18px;
    }
    .feature-pill {
        font-size: 0.6rem;
        padding: 5px 12px;
    }
    .stat-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 2rem;
    }
    .progress-indicator {
        display: none;
    }
    .btn-discover {
        padding: 12px 22px;
        font-size: 0.68rem;
        margin-top: 18px;
    }
    .contact-email {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    .layout-center {
        padding: 0 6vw;
    }
    #three-container {
        opacity: 0.65;
    }
}