:root {
    --bg: #111216;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f3eee6;
    --muted: #c8beb1;
    --gold-soft: #e8d5b9;
    --stone: #8d877d;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
    --max-width: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(227, 199, 159, 0.08), transparent 24%),
        radial-gradient(circle at 76% 12%, rgba(123, 133, 148, 0.12), transparent 20%),
        linear-gradient(180deg, #101115 0%, #17191f 50%, #0d0e12 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 46%, transparent 100%);
    opacity: 0.36;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 18%, rgba(230, 205, 164, 0.12), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(99, 110, 127, 0.14), transparent 20%);
    filter: blur(24px);
}

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

.topbar,
.hero,
.section,
.contact-card {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(12, 13, 17, 0.74);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(226, 205, 172, 0.96), rgba(160, 145, 122, 0.74));
    color: #18130d;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-text small,
.nav a,
.eyebrow,
.card-label,
.text-link {
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.nav a,
.text-link {
    transition: color 0.2s ease;
}

.nav a:hover,
.text-link:hover {
    color: var(--gold-soft);
}

.hero {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 28px;
    align-items: center;
    padding: 70px 0 42px;
}

.eyebrow,
.card-label {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", "Songti SC", serif;
    font-weight: 600;
    line-height: 0.98;
}

h1 {
    font-size: clamp(50px, 8vw, 92px);
    max-width: 700px;
}

h2 {
    font-size: clamp(34px, 5vw, 56px);
}

h3 {
    font-size: 30px;
}

.hero-text,
.section-heading p,
.category-copy p,
.feature-copy p,
.contact-card p,
.hero-card p,
#spotlightDescription,
.product-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.hero-text {
    max-width: 620px;
    margin-top: 22px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-solid {
    border-color: transparent;
    background: linear-gradient(135deg, #d0b18a, #f0ddc1);
    color: #19130c;
}

.btn-outline,
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-metrics article,
.hero-card,
.category-card,
.product-card,
.feature-shell,
.spotlight-shell,
.contact-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-metrics article {
    padding: 18px;
    border-radius: 22px;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    color: var(--gold-soft);
}

.hero-stage {
    position: relative;
    min-height: 650px;
    border-radius: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 54% 30%, rgba(227, 199, 159, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-card {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 2;
    width: min(340px, calc(100% - 68px));
    padding: 24px;
    border-radius: 30px;
}

.finish-list,
.feature-notes,
.product-meta,
.color-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.finish-list,
.feature-notes {
    margin-top: 18px;
}

.finish-list span,
.swatch,
.feature-notes span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.product-silhouette {
    position: absolute;
    box-shadow:
        inset -18px -18px 34px rgba(0, 0, 0, 0.28),
        inset 10px 10px 22px rgba(255, 255, 255, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.42);
}

.silhouette-bag {
    right: 10%;
    bottom: 2%;
    width: 290px;
    height: 360px;
    border-radius: 34px 34px 30px 30px;
    background: linear-gradient(155deg, rgba(224, 209, 192, 0.94), rgba(122, 97, 80, 0.82), rgba(42, 35, 31, 0.98));
}

.silhouette-bag::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -54px;
    width: 140px;
    height: 110px;
    border: 10px solid rgba(196, 171, 145, 0.7);
    border-bottom: none;
    border-radius: 80px 80px 0 0;
    transform: translateX(-50%);
}

.silhouette-bottle {
    left: 26%;
    bottom: 8%;
    width: 110px;
    height: 250px;
    border-radius: 38px;
    background: linear-gradient(160deg, rgba(247, 232, 201, 0.9), rgba(158, 116, 70, 0.74), rgba(55, 35, 19, 0.96));
}

.silhouette-bottle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -26px;
    width: 52px;
    height: 44px;
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(180deg, rgba(37, 38, 43, 0.96), rgba(15, 15, 18, 0.96));
    transform: translateX(-50%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.orb-lg {
    right: 7%;
    top: 10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(223, 196, 158, 0.44), transparent 70%);
}

.orb-sm {
    left: 18%;
    top: 24%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(100, 112, 128, 0.34), transparent 70%);
}

.section {
    padding: 44px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.category-card,
.product-card {
    border-radius: 30px;
    overflow: hidden;
}

.category-card {
    padding: 18px;
}

.category-visual {
    height: 280px;
    border-radius: 22px;
    margin-bottom: 18px;
}

.category-bag {
    background: linear-gradient(150deg, rgba(215, 199, 183, 0.96), rgba(132, 106, 87, 0.76), rgba(46, 37, 31, 0.98));
}

.category-fragrance {
    background: linear-gradient(150deg, rgba(242, 228, 203, 0.98), rgba(170, 126, 83, 0.74), rgba(49, 33, 22, 0.98));
}

.category-copy {
    max-width: 420px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    padding: 18px;
    min-height: 400px;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%);
    pointer-events: none;
}

.product-visual {
    height: 230px;
    border-radius: 22px;
    margin-bottom: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.product-card header {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 34px;
}

.product-card strong {
    color: var(--gold-soft);
    font-size: 15px;
    font-weight: 600;
}

.split-feature {
    padding-top: 18px;
}

.feature-shell,
.spotlight-shell,
.contact-card {
    border-radius: 34px;
    padding: 30px;
}

.feature-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
}

.feature-visual {
    min-height: 360px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(227, 210, 188, 0.1), transparent),
        linear-gradient(155deg, rgba(208, 181, 148, 0.88), rgba(96, 78, 67, 0.82), rgba(23, 19, 17, 0.98));
}

.spotlight-shell {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 26px;
    align-items: center;
}

.spec-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-item span {
    color: var(--muted);
}

.device-frame {
    position: relative;
    height: 440px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(232, 221, 206, 0.88), rgba(152, 129, 108, 0.72), rgba(42, 34, 29, 0.96));
    box-shadow:
        inset -22px -18px 42px rgba(0, 0, 0, 0.25),
        inset 12px 12px 30px rgba(255, 255, 255, 0.18),
        0 34px 90px rgba(0, 0, 0, 0.36);
}

.device-glow {
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 110px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(14, 17, 24, 0.08));
}

.swatch {
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.swatch:hover,
.swatch.is-active {
    transform: translateY(-1px);
    border-color: rgba(240, 221, 193, 0.54);
    background: rgba(255, 255, 255, 0.1);
}

.contact-card {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .nav {
        display: none;
    }

    .hero,
    .feature-shell,
    .spotlight-shell,
    .contact-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stage {
        min-height: 560px;
    }
}

@media (max-width: 720px) {
    .topbar,
    .hero,
    .section,
    .contact-card {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .topbar {
        top: 8px;
        padding: 14px 16px;
    }

    .hero {
        padding-top: 34px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    .hero-metrics,
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 520px;
    }

    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        margin: 18px;
        width: auto;
    }

    .silhouette-bag {
        right: 50%;
        bottom: 12px;
        width: 230px;
        height: 290px;
        transform: translateX(50%);
    }

    .silhouette-bottle {
        left: 16%;
        bottom: 40px;
        width: 86px;
        height: 200px;
    }

    .feature-shell,
    .spotlight-shell,
    .contact-card {
        padding: 22px;
    }
}
