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

/* ---------- Global Styles ---------- */

:root {
    --midnight: #090718;
    --deep-purple: #17102d;
    --purple: #4a2d73;
    --lavender: #b9a3d5;
    --gold: #d7b66f;
    --light-gold: #f1dda8;
    --cream: #f8f2e7;
    --white: #ffffff;
    --soft-white: rgba(255, 255, 255, 0.82);
    --glass: rgba(24, 15, 48, 0.72);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--midnight);
    color: var(--cream);
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: "Cormorant Garamond", serif;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

section {
    scroll-margin-top: 85px;
}

/* ---------- Navigation ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(9, 7, 24, 0.88);
    border-bottom: 1px solid rgba(215, 182, 111, 0.22);
    backdrop-filter: blur(14px);
}

.navbar {
    width: min(1180px, 92%);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    color: var(--light-gold);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--soft-white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background-color: var(--gold);
    content: "";
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--light-gold);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--light-gold);
    cursor: pointer;
    font-size: 1.8rem;
}

/* ---------- Hero Section ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 7% 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(151, 105, 197, 0.32),
            transparent 38%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(215, 182, 111, 0.15),
            transparent 30%
        ),
        linear-gradient(135deg, #090718 0%, #21133d 52%, #0d0a20 100%);
}

.hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
}

.hero::after {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(215, 182, 111, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 80px rgba(162, 118, 211, 0.16),
        inset 0 0 80px rgba(215, 182, 111, 0.08);
    content: "";
}

.hero-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 7, 24, 0.12),
        rgba(9, 7, 24, 0.48)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(870px, 100%);
    padding: 3rem;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--cream);
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    font-weight: 500;
    line-height: 0.98;
    text-shadow: 0 5px 35px rgba(0, 0, 0, 0.45);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2.3rem;
    color: var(--soft-white);
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ---------- Buttons ---------- */

.button {
    min-width: 195px;
    padding: 0.9rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.button:hover,
.button:focus {
    transform: translateY(-3px);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--midnight);
    box-shadow: 0 10px 28px rgba(215, 182, 111, 0.22);
}

.button-primary:hover,
.button-primary:focus {
    box-shadow: 0 14px 35px rgba(215, 182, 111, 0.36);
}

.button-secondary {
    border-color: rgba(241, 221, 168, 0.65);
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus {
    background-color: var(--cream);
    color: var(--midnight);
}

/* ---------- Shared Section Styles ---------- */

.intro-section,
.offerings-section,
.about-section,
.contact-section {
    padding: 7rem 7%;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2,
.about-content h2 {
    color: var(--cream);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--soft-white);
    font-size: 1.08rem;
    text-align: center;
}

/* ---------- Journey Introduction ---------- */

.intro-section {
    position: relative;
    background:
        radial-gradient(
            circle at center,
            rgba(92, 54, 133, 0.2),
            transparent 50%
        ),
        var(--midnight);
}

.intro-section::after {
    width: 80px;
    height: 1px;
    margin: 3rem auto 0;
    display: block;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    content: "";
}

/* ---------- Offerings ---------- */

.offerings-section {
    background: linear-gradient(180deg, #0c091e 0%, #17102d 100%);
}

.card-grid {
    width: min(1150px, 100%);
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offering-card {
    min-height: 285px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(215, 182, 111, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.offering-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 182, 111, 0.58);
}

.offering-card h3 {
    margin-bottom: 1rem;
    color: var(--light-gold);
    font-size: 2rem;
    font-weight: 500;
}

.offering-card p {
    color: var(--soft-white);
    font-size: 0.95rem;
}
/* ---------- Product Storefront ---------- */

.offerings-introduction {
    max-width: 720px;
    margin: 1.25rem auto 0;
    color: var(--soft-white);
    font-size: 1rem;
}

.product-grid {
    width: min(1250px, 100%);
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.6rem;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(215, 182, 111, 0.25);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 182, 111, 0.65);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
}

.featured-product {
    border-color: rgba(215, 182, 111, 0.7);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(215, 182, 111, 0.12);
}

.best-value-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    color: var(--midnight);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--deep-purple);
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    height: 100%;
    padding: 2rem 1.7rem;
    display: flex;
    flex-direction: column;
}

.product-type {
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 4.8rem;
    margin-bottom: 1rem;
    color: var(--light-gold);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
}

.product-description {
    margin-bottom: 1.35rem;
    color: var(--soft-white);
    font-size: 0.91rem;
}

.product-features {
    margin: 0 0 1.8rem;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    margin-bottom: 0.65rem;
    padding-left: 1.45rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
}

.product-features li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    content: "✦";
}

.product-purchase {
    margin-top: auto;
    text-align: center;
}

.original-price {
    margin-bottom: -0.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: line-through;
}

.product-price {
    margin-bottom: 1rem;
    color: var(--cream);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.product-button {
    width: 100%;
    min-width: 0;
}

.digital-product-notice {
    max-width: 760px;
    margin: 2.5rem auto 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    line-height: 1.6;
    text-align: center;
}

/* ---------- About ---------- */

.about-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(215, 182, 111, 0.11),
            transparent 34%
        ),
        linear-gradient(135deg, #1b1032, #090718);
}

.about-content {
    width: min(880px, 100%);
    padding: 4rem;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-bottom: 1.6rem;
}

.about-content p:last-child {
    color: var(--soft-white);
    font-size: 1.05rem;
}

/* ---------- Contact ---------- */

.contact-section {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            rgba(121, 76, 169, 0.28),
            transparent 45%
        ),
        #0b081c;
    text-align: center;
}
/* ---------- Contact Information ---------- */

.contact-introduction {
    max-width: 650px;
    margin: 1.25rem auto 0;
    color: var(--soft-white);
    font-size: 1rem;
}

.contact-grid {
    width: min(1100px, 100%);
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    min-height: 210px;
    padding: 2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 182, 111, 0.28);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.contact-card:hover,
.contact-card:focus {
    transform: translateY(-7px);
    border-color: var(--gold);
    background-color: rgba(215, 182, 111, 0.08);
}

.contact-icon {
    margin-bottom: 0.75rem;
    color: var(--light-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    line-height: 1;
}

.contact-label {
    margin-bottom: 0.55rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-detail {
    max-width: 100%;
    color: var(--cream);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 2rem 7%;
    border-top: 1px solid rgba(215, 182, 111, 0.2);
    background-color: #070512;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-align: center;
}

/* ---------- Tablet ---------- */

@media (max-width: 900px) {
    .menu-button {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .contact-card {
        min-height: 175px;
    }

    .nav-links {
        position: absolute;
        top: 78px;

.contact-card {
    min-height: 175px;
} 
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        padding: 2rem;
        display: none;
        flex-direction: column;
        gap: 1.4rem;
        border-bottom: 1px solid rgba(215, 182, 111, 0.2);
        background-color: rgba(9, 7, 24, 0.98);
    }

    .nav-links.active {
        display: flex;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .offering-card {
        min-height: auto;
    }
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {
    .navbar {
        min-height: 70px;
    }

    .logo {
        font-size: 1.45rem;
    }

    .nav-links {
        top: 70px;
    }

    .hero {
        min-height: 100svh;
        padding: 110px 6% 70px;
    }

    .hero::after {
        width: 340px;
        height: 340px;
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.3rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: min(290px, 100%);
    }

    .intro-section,
    .offerings-section,
    .about-section,
    .contact-section {
        padding: 5rem 6%;
    }

    .about-content {
        padding: 2.2rem 1.6rem;
    }
}

/* ---------- Reduced Motion Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
/* Product Storefront Responsive Layout */

@media (max-width: 1000px) {
    .product-grid {
        max-width: 680px;
        grid-template-columns: 1fr;
    }

    .product-card h3 {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .product-content {
        padding: 1.7rem 1.3rem;
    }

    .product-card h3 {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 2.2rem;
    }
}