@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #0d0d10;
    --bg-soft: #111116;
    --surface: #17171c;
    --surface-light: #1d1d23;

    --text: #f4f0ea;
    --muted: #aaa4a0;

    --champagne: #d6b98c;
    --champagne-light: #ead5b3;

    --rose: #b77a86;
    --rose-dark: #81535d;

    --border: rgba(255,255,255,.10);
    --border-light: rgba(255,255,255,.16);

    --max-width: 1240px;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;

    background: rgba(13,13,16,.78);
    border-bottom: 1px solid transparent;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background .3s ease,
        border-color .3s ease;
}

.site-header.scrolled {
    background: rgba(13,13,16,.94);
    border-color: var(--border);
}

.header-inner {
    width: min(
        calc(100% - 60px),
        var(--max-width)
    );

    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    position: relative;

    color: var(--text);

    font-size: 19px;
    font-weight: 600;
    letter-spacing: .28em;

    white-space: nowrap;
}

.logo::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 28px;
    height: 1px;

    background: var(--champagne);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-navigation a {
    position: relative;

    color: rgba(244,240,234,.72);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    transition: color .25s ease;
}

.main-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;

    height: 1px;

    background: var(--champagne);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.main-navigation a:hover {
    color: var(--text);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.language-button {
    min-width: 58px;
    padding: 9px 8px;

    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);

    color: var(--text);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.language-button:hover {
    border-color: rgba(214,185,140,.45);
    background: rgba(214,185,140,.06);
}

.language-arrow {
    margin-left: 5px;
    color: var(--champagne);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: 170px;
    padding: 7px;

    background: rgba(23,23,28,.98);
    border: 1px solid var(--border);

    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.language-menu[hidden] {
    display: none;
}

.language-menu button {
    display: block;

    width: 100%;
    padding: 9px 12px;

    border: 0;
    background: transparent;

    color: var(--muted);

    text-align: left;
    font-size: 11px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.language-menu button:hover {
    background: rgba(214,185,140,.08);
    color: var(--text);
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;
    padding: 9px;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 22px;
    height: 1px;

    margin: 5px auto;

    background: var(--text);

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.hero-section {
    position: relative;

    min-height: 100vh;
    min-height: 760px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background {
    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(183,122,134,.20),
            transparent 34%
        ),
        radial-gradient(
            circle at 30% 60%,
            rgba(214,185,140,.08),
            transparent 35%
        ),
        #101014;
}

.hero-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.placeholder-glow {
    position: absolute;

    width: 65vw;
    height: 65vw;
    max-width: 850px;
    max-height: 850px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,122,134,.25) 0%,
            rgba(183,122,134,.09) 30%,
            transparent 70%
        );

    filter: blur(20px);
}

.placeholder-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.placeholder-small {
    color: var(--champagne);

    font-size: 9px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.placeholder-name {
    margin-top: 8px;

    color: rgba(244,240,234,.12);

    font-family: var(--serif);
    font-size: clamp(80px, 15vw, 220px);
    font-weight: 500;
    line-height: .8;
    letter-spacing: .05em;
}

.placeholder-note {
    margin-top: 15px;

    color: rgba(244,240,234,.35);

    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(13,13,16,.97) 0%,
            rgba(13,13,16,.73) 35%,
            rgba(13,13,16,.22) 75%,
            rgba(13,13,16,.72) 100%
        ),
        linear-gradient(
            0deg,
            rgba(13,13,16,.92) 0%,
            transparent 35%,
            rgba(13,13,16,.35) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 60px),
        var(--max-width)
    );

    margin: 0 auto;
    padding-top: 80px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;

    color: var(--champagne);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.hero-eyebrow span:first-child,
.hero-eyebrow span:last-child {
    width: 28px;
    height: 1px;
    background: var(--champagne);
}

.hero-content h1 {
    max-width: 800px;

    margin: 0;

    font-family: var(--serif);
    font-size: clamp(80px, 12vw, 170px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -.035em;
}

.hero-content h1 strong {
    display: block;

    margin-left: 12%;

    color: var(--champagne);

    font-weight: 400;
}

.hero-subtitle {
    margin: 45px 0 8px;

    color: var(--text);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-description {
    max-width: 440px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 26px;

    border: 1px solid var(--border-light);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--champagne);
    border-color: var(--champagne);
    color: #17130f;
}

.button-primary:hover {
    background: var(--champagne-light);
    border-color: var(--champagne-light);
}

.button-secondary {
    background: rgba(255,255,255,.03);
    color: var(--text);
}

.button-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.25);
}

.scroll-indicator {
    position: absolute;
    z-index: 3;

    bottom: 35px;
    left: 50%;

    width: 24px;
    height: 40px;

    transform: translateX(-50%);
}

.scroll-indicator::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 0;

    width: 1px;
    height: 30px;

    background: rgba(255,255,255,.25);
}

.scroll-indicator span {
    position: absolute;
    left: 50%;
    top: 9px;

    width: 5px;
    height: 5px;

    border-right: 1px solid var(--champagne);
    border-bottom: 1px solid var(--champagne);

    transform:
        translateX(-50%)
        rotate(45deg);
}

.content-section {
    position: relative;

    padding: 150px 0;
}

.section-container {
    width: min(
        calc(100% - 60px),
        var(--max-width)
    );

    margin: 0 auto;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 28px;

    margin-bottom: 70px;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-number {
    color: var(--champagne);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
}

.section-label {
    display: inline-block;

    color: var(--champagne);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.section-heading h2,
.contact-grid h2,
.feature-content h2,
.social-content h2 {
    margin: 8px 0 0;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.025em;
}

.about-section {
    background:
        linear-gradient(
            180deg,
            var(--bg) 0%,
            var(--bg-soft) 100%
        );
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(50px, 9vw, 130px);

    align-items: center;
}

.about-image {
    position: relative;

    aspect-ratio: 4 / 5;

    max-width: 510px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(183,122,134,.20),
            transparent 48%
        ),
        #141419;

    border: 1px solid var(--border);
}

.about-image::before {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(214,185,140,.18);
}

.image-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 560px;
}

.about-content .large-text {
    margin: 0 0 28px;

    color: var(--text);

    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.about-content p:not(.large-text) {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 15px;
}

.about-signature {
    margin-top: 40px;

    color: var(--champagne);

    font-family: var(--serif);
    font-size: 34px;
    font-style: italic;
}

.platforms-section {
    background: #101014;
}

.section-intro {
    max-width: 570px;

    margin: -25px auto 60px;

    color: var(--muted);

    font-size: 15px;
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;

    background: var(--border);

    border: 1px solid var(--border);
}

.platform-card {
    position: relative;

    min-height: 280px;
    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: var(--surface);

    transition:
        background .3s ease,
        transform .3s ease;
}

.platform-card:hover {
    background: var(--surface-light);
    z-index: 2;
}

.platform-card-image {
    position: absolute;
    inset: 0;

    opacity: .32;

    transition:
        opacity .3s ease,
        transform .5s ease;
}

.platform-card:hover .platform-card-image {
    opacity: .48;
    transform: scale(1.03);
}

.mini-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(183,122,134,.32),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #19191f,
            #0e0e12
        );
}

.mini-placeholder span {
    color: rgba(244,240,234,.12);

    font-family: var(--serif);
    font-size: 80px;
}

.platform-card-number {
    position: absolute;
    top: 30px;
    right: 34px;

    color: rgba(244,240,234,.30);

    font-size: 10px;
    letter-spacing: .18em;
}

.platform-card-content {
    position: relative;
    z-index: 2;
}

.platform-category {
    display: block;

    margin-bottom: 7px;

    color: var(--champagne);

    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.platform-card h3 {
    margin: 0;

    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

.platform-link {
    display: inline-block;

    margin-top: 18px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.platform-arrow {
    position: absolute;
    right: 34px;
    bottom: 33px;

    color: var(--champagne);

    font-size: 23px;

    transition: transform .25s ease;
}

.platform-card:hover .platform-arrow {
    transform: translate(4px,-4px);
}

.platform-icon {
    position: absolute;
    top: 31px;
    left: 36px;

    color: rgba(244,240,234,.35);

    font-size: 34px;
    font-weight: 300;
}

.instagram-icon {
    font-size: 40px;
}

.x-icon {
    font-size: 28px;
}

.platform-card-coming {
    background:
        linear-gradient(
            135deg,
            rgba(183,122,134,.06),
            rgba(214,185,140,.025)
        ),
        var(--surface);
}

.feature-section {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.feature-image,
.wide-placeholder,
.feature-overlay {
    position: absolute;
    inset: 0;
}

.wide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(183,122,134,.22),
            transparent 35%
        ),
        radial-gradient(
            circle at 25% 60%,
            rgba(214,185,140,.12),
            transparent 35%
        ),
        #121217;
}

.wide-placeholder .placeholder-name {
    font-size: clamp(70px, 13vw, 190px);
}

.feature-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(13,13,16,.96) 0%,
            rgba(13,13,16,.76) 45%,
            rgba(13,13,16,.32) 100%
        );
}

.feature-content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 60px),
        var(--max-width)
    );

    margin: 0 auto;

    max-width: 680px;
}

.feature-content h2 {
    margin-bottom: 25px;
}

.feature-content p {
    max-width: 500px;

    margin: 0 0 32px;

    color: var(--muted);

    font-size: 15px;
}

.social-section {
    position: relative;

    padding: 145px 30px;

    overflow: hidden;

    text-align: center;

    background: #111116;
}

.social-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(183,122,134,.12),
            transparent 35%
        );
}

.social-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;
}

.social-content p {
    margin: 25px auto 50px;

    color: var(--muted);

    font-size: 15px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-link {
    min-height: 95px;
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-right: 1px solid var(--border);

    color: var(--text);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease;
}

.social-link:last-child {
    border-right: 0;
}

.social-link:hover {
    background: rgba(214,185,140,.06);
    color: var(--champagne);
}

.social-link strong {
    color: var(--champagne);
    font-size: 18px;
    font-weight: 300;
}

.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;

    align-items: end;

    padding-top: 30px;
}

.contact-content {
    max-width: 540px;
}

.contact-content p {
    margin: 0 0 28px;

    color: var(--muted);

    font-size: 15px;
}

.contact-email {
    display: inline-block;

    color: var(--champagne);

    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;

    border-bottom: 1px solid rgba(214,185,140,.25);

    transition:
        border-color .25s ease,
        color .25s ease;
}

.contact-email:hover {
    color: var(--champagne-light);
    border-color: var(--champagne);
}

.site-footer {
    padding: 35px 0;

    border-top: 1px solid var(--border);

    background: #0a0a0c;
}

.footer-inner {
    width: min(
        calc(100% - 60px),
        var(--max-width)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 30px;
}

.footer-brand {
    color: var(--text);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .25em;
}

.footer-copy {
    color: rgba(170,164,160,.65);

    font-size: 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-links a {
    color: var(--muted);

    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--champagne);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 22px;
    }

    .about-grid {
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

}

@media (max-width: 760px) {

    .header-inner {
        width: min(
            calc(100% - 34px),
            var(--max-width)
        );

        min-height: 72px;
    }

    .main-navigation {
        position: fixed;

        top: 72px;
        left: 0;
        right: 0;

        height: calc(100vh - 72px);

        padding: 40px 30px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 28px;

        background: rgba(13,13,16,.98);

        border-top: 1px solid var(--border);

        transform: translateX(100%);

        transition: transform .3s ease;
    }

    .main-navigation.open {
        transform: translateX(0);
    }

    .main-navigation a {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }

    .main-navigation a::after {
        bottom: -5px;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu-button.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .language-button {
        min-width: 52px;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-content,
    .section-container,
    .feature-content {
        width: min(
            calc(100% - 34px),
            var(--max-width)
        );
    }

    .hero-content h1 {
        font-size: clamp(68px, 19vw, 120px);
    }

    .hero-content h1 strong {
        margin-left: 8%;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(13,13,16,.92),
                rgba(13,13,16,.55)
            ),
            linear-gradient(
                0deg,
                rgba(13,13,16,.95),
                transparent
            );
    }

    .content-section {
        padding: 100px 0;
    }

    .section-heading {
        gap: 16px;
        margin-bottom: 45px;
    }

    .section-heading h2,
    .contact-grid h2,
    .feature-content h2,
    .social-content h2 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        max-width: none;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        min-height: 250px;
    }

    .feature-section {
        min-height: 600px;
    }

    .social-section {
        padding: 100px 17px;
    }

    .social-links {
        grid-template-columns: 1fr 1fr;
    }

    .social-link {
        min-height: 80px;
    }

    .social-link:nth-child(2) {
        border-right: 0;
    }

    .social-link:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        width: min(
            calc(100% - 34px),
            var(--max-width)
        );

        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .placeholder-name {
        font-size: 65px;
    }

    .platform-card {
        padding: 30px;
    }

    .platform-card h3 {
        font-size: 36px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-link,
    .social-link:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .social-link:last-child {
        border-bottom: 0;
    }

    .contact-email {
        font-size: 27px;
        word-break: break-word;
    }

}
