/* ─── Variables ─────────────────────────────── */
:root {
    --bg:          #0C0A0B;
    --surface:     #141012;
    --surface-2:   #1C181A;
    --gold:        #C8A951;
    --gold-light:  #E5C97A;
    --gold-dim:    rgba(200, 169, 81, 0.18);
    --gold-border: rgba(200, 169, 81, 0.14);
    --crimson:     #8B1726;
    --text:        #EDE8E0;
    --text-muted:  #9A9088;
    --text-dim:    #5C5450;
    --border:      rgba(237, 232, 224, 0.07);

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

    --max-w: 1200px;
    --section-pad: clamp(80px, 10vw, 140px);
    --gutter: clamp(24px, 5vw, 64px);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Animations ────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Nav ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px var(--gutter);
    transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
    background: rgba(12, 10, 11, 0.92);
    backdrop-filter: blur(12px);
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-sep {
    color: var(--text-dim);
    font-size: 0.7rem;
}
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    padding: 4px 2px;
    transition: color 0.2s;
}
.lang-btn:hover { color: var(--text-muted); }
.lang-btn.active {
    color: var(--gold);
    font-weight: 500;
}
.nav-cta {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--gold-border);
    padding: 9px 22px;
    border-radius: 2px;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.nav-cta:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-dim);
}

/* ─── Shared ─────────────────────────────────── */
.eyebrow {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--text);
}
.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.btn {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(0);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px var(--gutter) 80px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.45;
    filter: sepia(20%) contrast(110%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(12, 10, 11, 0.97) 40%,
        rgba(12, 10, 11, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-w);
}

.hero-scroll {
    z-index: 2;
}

.hero-title {
    font-family: var(--ff-display);
    font-weight: 300;
    line-height: 0.88;
    margin-bottom: 32px;
    display: block;
}
.title-main {
    display: block;
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: -0.02em;
    color: var(--text);
}
.title-accent {
    display: block;
    font-size: clamp(6rem, 18vw, 14rem);
    letter-spacing: -0.04em;
    color: var(--gold);
    line-height: 0.82;
    padding-left: 0.05em;
}

.hero-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

.hero-tagline {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

/* ─── Numbers ─────────────────────────────────── */
.numbers {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--section-pad) var(--gutter);
}
.numbers-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
}
.stat {
    text-align: center;
    padding: 20px;
}
.stat-n {
    display: block;
    font-family: var(--ff-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.stat-suffix {
    font-size: 0.65em;
    opacity: 0.7;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
}
.numbers-footnote {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
    font-family: var(--ff-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Story ───────────────────────────────────── */
.story {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-pad) var(--gutter);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}
.story-text p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.85;
    max-width: 560px;
}
.story-text p:last-child { margin-bottom: 0; }

.story-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--gold-border);
    display: block;
}

/* ─── Cherry Strip ─────────────────────────────── */
.cherry-strip {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.cherry-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: contrast(108%) brightness(0.75);
    display: block;
}
.cherry-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12,10,11,0.7), rgba(12,10,11,0.2), rgba(12,10,11,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}
.cherry-strip-overlay span {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 var(--gutter);
}

/* ─── Scarcity ─────────────────────────────────── */
.scarcity {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--section-pad) var(--gutter);
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(40px, 6vw, 100px);
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: center;
}
.bottle-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center center;
    border: 1px solid var(--gold-border);
    display: block;
}
.scarcity-inner {
    text-align: left;
}
.scarcity-desc {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.bottle-display {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.bottle-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 24px 48px;
    border: 1px solid var(--gold-border);
    background: var(--surface-2);
}
.bottle-hash {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    font-weight: 300;
}
.bottle-number {
    font-family: var(--ff-display);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.12em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.bottle-caption {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ─── Details ──────────────────────────────────── */
.details {
    padding: var(--section-pad) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.detail-card {
    background: var(--bg);
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
}
.detail-card h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}
.detail-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
}

/* ─── Reserve ──────────────────────────────────── */
.reserve {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--section-pad) var(--gutter);
}
.reserve-inner {
    max-width: 620px;
    margin: 0 auto;
}
.reserve-desc {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 52px;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.label-opt {
    font-size: 0.65rem;
    color: var(--text-dim);
    opacity: 0.7;
    letter-spacing: 0.06em;
    text-transform: none;
}
input, textarea {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: vertical;
}
input::placeholder, textarea::placeholder {
    color: var(--text-dim);
}
input:focus, textarea:focus {
    border-color: var(--gold);
}
.form .btn {
    margin-top: 8px;
    align-self: flex-start;
}

/* Success state */
.form-success {
    display: none;
    padding: 40px;
    border: 1px solid var(--gold-border);
    background: var(--surface-2);
    text-align: center;
}
.form-success.visible {
    display: block;
}
.success-title {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 16px;
}
.form-success p:last-child {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.9rem;
}

.btc-note {
    margin-top: 32px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-align: center;
    text-transform: uppercase;
}
.lightning {
    color: var(--gold);
    margin-right: 6px;
}

/* ─── Footer ───────────────────────────────────── */
.footer {
    padding: 80px var(--gutter);
    text-align: center;
    border-top: 1px solid var(--border);
}
.footer-logo {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-tagline {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.footer-place {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
    .numbers-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
        margin: 0 auto;
    }

    .story {
        grid-template-columns: 1fr;
    }
    .story-image img {
        height: 340px;
        object-position: center 20%;
    }

    .cherry-strip {
        height: 280px;
    }

    .scarcity {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
    .bottle-image img {
        height: 340px;
    }
    .scarcity-inner {
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .title-main {
        font-size: clamp(4rem, 18vw, 6rem);
    }
    .title-accent {
        font-size: clamp(5.5rem, 24vw, 8rem);
    }
    .hero-scroll {
        display: none;
    }
    .nav-cta {
        display: none;
    }
}
