:root {
    --queen-gold: #f4bd22;
    --queen-gold-dark: #d79b0e;
    --ink: #111217;
    --soft-ink: #4c4b50;
    --cream: #fffaf0;
    --paper: #ffffff;
    --line: rgba(17, 18, 23, .12);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(244, 189, 34, .18), transparent 32rem),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 55%, #fffaf0 100%);
}

a {
    color: inherit;
}

.site-header {
    padding: .85rem 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 18, 23, .08);
}

.brand {
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--queen-gold);
    box-shadow: 0 10px 24px rgba(244, 189, 34, .22);
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: var(--soft-ink);
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    background: var(--ink);
    color: white !important;
    padding: .65rem 1rem;
    border-radius: 999px;
}

.hero-section {
    padding: 9rem 0 5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--queen-gold-dark);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: "";
    width: 2.25rem;
    height: 2px;
    background: var(--queen-gold);
    display: inline-block;
}

h1 {
    font-size: clamp(2.65rem, 7vw, 5.8rem);
    line-height: .92;
    letter-spacing: -.07em;
    font-weight: 950;
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 900;
}

.hero-copy,
.mission-card p,
.section-heading p,
.waitlist-section p {
    color: var(--soft-ink);
    font-size: 1.08rem;
    line-height: 1.75;
}

.btn-queen {
    --bs-btn-bg: var(--queen-gold);
    --bs-btn-border-color: var(--queen-gold);
    --bs-btn-hover-bg: var(--queen-gold-dark);
    --bs-btn-hover-border-color: var(--queen-gold-dark);
    --bs-btn-color: var(--ink);
    --bs-btn-hover-color: var(--ink);
    font-weight: 900;
    border-radius: 999px;
    padding-inline: 1.35rem;
    box-shadow: 0 18px 35px rgba(244, 189, 34, .28);
}

.btn-outline-dark {
    border-radius: 999px;
    font-weight: 900;
    padding-inline: 1.35rem;
}

.launch-note {
    margin-top: 2rem;
    padding: 1rem 1.2rem;
    background: rgba(244, 189, 34, .16);
    border-left: 5px solid var(--queen-gold);
    border-radius: 1rem;
    color: var(--soft-ink);
}

.hero-card {
    position: relative;
    padding: .75rem;
    background: linear-gradient(135deg, var(--queen-gold), #fff6dc 38%, #111217 39%, #111217);
    border-radius: 2.25rem;
    box-shadow: 0 35px 90px rgba(17, 18, 23, .18);
    transform: rotate(1deg);
}

.hero-card img {
    border-radius: 1.75rem;
    width: 100%;
    object-fit: cover;
    transform: rotate(-1deg);
}

.mission-section,
.products-section,
.waitlist-section {
    padding: 5rem 0;
}

.mission-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: 2.25rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 22px 60px rgba(17, 18, 23, .08);
}

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

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.7rem;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(17, 18, 23, .13);
}

.product-image {
    aspect-ratio: 4 / 3;
    background: #f6f6f6;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-body {
    padding: 1.25rem;
}

.product-body span {
    display: inline-block;
    margin-bottom: .75rem;
    color: var(--queen-gold-dark);
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
}

.product-body h3 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.product-body p {
    color: var(--soft-ink);
    line-height: 1.65;
    margin-bottom: 0;
}

.waitlist-section {
    background:
        radial-gradient(circle at right center, rgba(244, 189, 34, .28), transparent 24rem),
        #111217;
    color: white;
}

.waitlist-section .eyebrow {
    color: var(--queen-gold);
}

.waitlist-section p,
.waitlist-section .text-muted,
.waitlist-section a {
    color: rgba(255, 255, 255, .74) !important;
}

.waitlist-form {
    background: white;
    color: var(--ink);
    border-radius: 2rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.form-control {
    border-radius: 1rem;
    border: 1px solid rgba(17, 18, 23, .18);
}

.form-control:focus {
    border-color: var(--queen-gold);
    box-shadow: 0 0 0 .25rem rgba(244, 189, 34, .2);
}

.footer-strip {
    padding: 1.25rem 0;
    background: #050507;
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 7.75rem;
    }

    .brand img {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }

    .brand span {
        font-size: .85rem;
    }
}

.uploaded-gallery {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.uploaded-photo-card {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 1.7rem;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 20px 55px rgba(17, 18, 23, .08);
}

.uploaded-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.uploaded-photo-card:hover img {
    transform: scale(1.04);
}

.footer-admin-link {
    color: rgba(255, 255, 255, .72);
    margin-left: .75rem;
    text-decoration: underline;
    text-underline-offset: .25rem;
}

.admin-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(244, 189, 34, .24), transparent 32rem),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 48%, #f5f5f5 100%);
}

.admin-card {
    width: min(100%, 1080px);
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 2rem;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: 0 30px 90px rgba(17, 18, 23, .14);
}

.login-card {
    width: min(100%, 520px);
}

.admin-logo {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--queen-gold);
}

.admin-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 950;
    max-width: none;
}

.admin-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -.03em;
}

.admin-form,
.upload-box {
    background: #fffaf0;
    border: 1px solid rgba(17, 18, 23, .1);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.empty-state {
    padding: 2rem;
    border: 1px dashed rgba(17, 18, 23, .25);
    border-radius: 1.25rem;
    color: var(--soft-ink);
    background: #fffaf0;
    text-align: center;
}

.admin-photo-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 18px 45px rgba(17, 18, 23, .08);
}

.admin-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f6f6f6;
}

.admin-stat-card {
    background: #fffaf0;
    border: 1px solid rgba(17, 18, 23, .1);
    border-radius: 1.25rem;
    padding: 1.25rem;
    min-height: 116px;
}

.admin-stat-card span {
    display: block;
    color: var(--soft-ink);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.admin-stat-card strong {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.admin-table-wrap {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 18px 45px rgba(17, 18, 23, .08);
}

.admin-table thead th {
    background: #111217;
    color: white;
    border-bottom: none;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 1rem;
}

.admin-table tbody td {
    padding: 1rem;
    border-color: rgba(17, 18, 23, .08);
}


/* Story teaser and full story page */
.story-teaser-section {
    padding: 5rem 0;
    background:
        radial-gradient(circle at left top, rgba(244, 189, 34, .15), transparent 28rem),
        #fffdf8;
}

.story-teaser-card {
    border: 1px solid var(--line);
    border-radius: 2.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,240,.92));
    padding: clamp(1.35rem, 4vw, 2.5rem);
    box-shadow: 0 24px 70px rgba(17, 18, 23, .09);
}

.story-mini-stack {
    display: grid;
    gap: 1rem;
}

.story-mini-stack span {
    display: block;
    padding: 1.1rem 1.2rem;
    border-radius: 1.25rem;
    background: #111217;
    color: white;
    font-weight: 850;
    box-shadow: 0 16px 40px rgba(17, 18, 23, .12);
}

.story-mini-stack span:nth-child(2) {
    background: var(--queen-gold);
    color: var(--ink);
}

.story-mini-stack span:nth-child(3) {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.story-hero-section {
    padding: 9rem 0 5rem;
}

.story-hero-card {
    transform: rotate(-1deg);
}

.story-hero-card img {
    transform: rotate(1deg);
}

.story-body-section {
    padding: 1rem 0 5rem;
}

.story-grid,
.story-section-row,
.promise-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.story-section-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    margin-top: 1.5rem;
}

.promise-section {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    margin-top: 1.5rem;
}

.story-panel,
.promise-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 22px 60px rgba(17, 18, 23, .08);
}

.story-panel p,
.promise-card p,
.ritual-card p {
    color: var(--soft-ink);
    font-size: 1.02rem;
    line-height: 1.75;
}

.story-panel-feature h2,
.promise-card h2 {
    margin-bottom: 1.2rem;
}

.story-quote-card {
    background:
        radial-gradient(circle at top, rgba(244, 189, 34, .32), transparent 18rem),
        #111217;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.story-quote-card img {
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--queen-gold);
    margin: 0 auto 1.5rem;
}

.story-quote-card blockquote {
    font-size: clamp(1.65rem, 4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 950;
    margin-bottom: 1rem;
}

.story-quote-card p {
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}

.story-image-panel {
    padding: .75rem;
    overflow: hidden;
}

.story-image-panel img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 1.45rem;
}

.creation-section {
    padding: 5rem 0 3.5rem;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ritual-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    padding: 1.35rem;
    box-shadow: 0 20px 50px rgba(17, 18, 23, .07);
}

.ritual-card::after {
    content: "";
    position: absolute;
    width: 7rem;
    height: 7rem;
    right: -3.25rem;
    top: -3.25rem;
    border-radius: 50%;
    background: rgba(244, 189, 34, .22);
}

.ritual-card span {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--queen-gold);
    color: var(--ink);
    font-weight: 950;
    margin-bottom: 1rem;
}

.ritual-card strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: .65rem;
}

.ritual-card p {
    margin-bottom: 0;
}

.promise-card.dark {
    background:
        radial-gradient(circle at right top, rgba(244, 189, 34, .34), transparent 24rem),
        #111217;
    color: white;
}

.promise-card.dark p,
.promise-card.dark .eyebrow {
    color: rgba(255,255,255,.76);
}

.promise-card.dark .eyebrow::before {
    background: var(--queen-gold);
}

@media (max-width: 991.98px) {
    .story-grid,
    .story-section-row,
    .promise-section,
    .ritual-grid {
        grid-template-columns: 1fr;
    }

    .reverse-on-mobile .story-image-panel {
        order: 2;
    }

    .story-image-panel img {
        min-height: 280px;
    }
}
