:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4af37;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    color-scheme: light;
}

/* Force light appearance even if the user prefers dark */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
    body {
        background: linear-gradient(180deg, #f8f6f2 0%, #f1eee7 100%) !important;
        color: var(--primary-color) !important;
    }
    input, textarea, select, button {
        background: #fff !important;
        color: var(--primary-color) !important;
        border-color: rgba(0, 0, 0, 0.12) !important;
    }
}

/* Basic Reset & Body */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    forced-color-adjust: none;
    background: #f8f6f2;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background: linear-gradient(180deg, #f8f6f2 0%, #f1eee7 100%);
    color: var(--primary-color);
    overflow-x: hidden;
    forced-color-adjust: none;
}

.no-scroll {
    overflow: hidden;
}

main {
    margin-top: 90px; /* clears fixed header overlap */
}

body::before {
    content: "";
    position: fixed;
    inset: -20% -10% 40% 30%;
    z-index: 0;
    background: radial-gradient(45% 35% at 20% 20%, rgba(212, 175, 55, 0.08), transparent 60%),
                radial-gradient(40% 40% at 80% 10%, rgba(0, 0, 0, 0.06), transparent 65%);
    pointer-events: none;
    filter: blur(4px);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background-color: rgba(244, 244, 244, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

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

nav ul li a {
    font-weight: 700;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 36px;
    background: #f8f6f2;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    cursor: pointer;
    padding: 4px;
    z-index: 120;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #0f0f0f;
    border-radius: 2px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 110;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 24px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin: 1.5rem 0;
    color: var(--primary-color);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    max-width: 100%;
    margin: 0;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/IMG_1434 (2).JPEG') no-repeat center 20%/cover;
    color: white;
    position: relative;
    overflow: hidden;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(100% 120% at 50% 50%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    max-width: 720px;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.85rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.55);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.hero-body {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    letter-spacing: normal;
    text-transform: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.65));
    border: none;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
}

/* Wallet cards: neutral white to sit cleanly on the lighter background */
.product-item.glass-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.cta-button.sold-out {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/* Intro Section */
#intro {
    padding: 4rem 5%;
    text-align: center;
    position: relative;
}

#intro p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#intro .cta-button {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

#intro .cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

#intro .meta-pills {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#intro .meta-pills span {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-bar {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--primary-color);
    border: none;
    backdrop-filter: none;
}

.trust-bar div {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Sections */
section {
    padding: 6rem 5%;
    opacity: 1;
    transform: none;
    max-width: 1200px;
    margin: 0 auto;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

/* Products Section */
#products {
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    padding: 2.25rem;
    border-radius: 26px;
}

.product-item {
    text-align: center;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    border-radius: 16px;
}

.product-item.product-card-link {
    cursor: pointer;
}

.product-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    border: none;
}

.product-item h3 {
    font-size: 1.3rem;
}

.product-item .meta {
    color: #555;
    font-size: 0.95rem;
}

.product-item .buy-now-btn {
    margin-top: auto;
}

/* About Section */
#about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.galland-standard-grid,
.details-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.standard-item,
.detail-item,
.faq-item {
    padding: 1.25rem;
    text-align: left;
}

.standard-item h3 {
    text-align: center;
}

#about,
#details,
#faq,
#store-products {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 5rem 5%;
}

#about::before,
#details::before,
#faq::before,
#store-products::before {
    content: none;
}

#details .detail-item,
#faq .faq-item {
    background: transparent;
}

#current-release {
    position: relative;
    background: linear-gradient(145deg, #f0e8da 0%, #dcd4c4 100%);
    border-radius: 24px;
    overflow: hidden;
}

#current-release .kicker {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

#current-release > * {
    position: relative;
    z-index: 1;
}

#current-release .product-grid {
    background: transparent;
    border: none;
    box-shadow: none;
}

#current-release .product-item {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 4rem 5%;
}

.footer a,
footer a {
    color: var(--secondary-color);
}

.footer a:hover,
footer a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--secondary-color);
    margin: 0 1rem;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Store Page Specifics */
#store-hero,
.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/IMG_1434 (2).JPEG') no-repeat center 20%/cover;
    background-blend-mode: normal;
    filter: none;
    mix-blend-mode: normal;
    color: white;
    position: relative;
    overflow: hidden;
}

#store-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(100% 120% at 50% 50%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
    mix-blend-mode: multiply;
}

#store-products {
    padding-top: 4rem;
}

.product-link {
    display: block;
}

.product-link img {
    transition: transform 0.18s ease;
}

.product-link:hover img {
    transform: translateY(-3px);
}

#product-detail {
    max-width: 1200px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.product-figure {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-figure img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
}

.product-thumbnails button {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f6f2;
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-thumbnails button:hover {
    border-color: rgba(208, 160, 101, 0.6);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.product-thumbnails button.active {
    border-color: rgba(208, 160, 101, 0.8);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    aspect-ratio: 1 / 1;
}

.product-copy {
    background: #f8f6f2;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-copy h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.product-summary {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.25rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.65rem;
}

.spec-list li {
    position: relative;
    padding-left: 1.3rem;
    line-height: 1.5;
    color: #222;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pill {
    padding: 0.45rem 0.85rem;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-item .description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.add-to-cart-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--accent-color);
}

.buy-now-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.buy-now-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.buy-now-btn.sold-out {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/* Craft Page */
#built-by-hand {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0)) ,
                radial-gradient(circle at 80% 0%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0)),
                linear-gradient(135deg, #faf6ee 0%, #f0ede6 100%);
    border-radius: 24px;
    overflow: hidden;
}

#built-by-hand::before {
    content: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #333;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

#join-drop-list {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)), #f8f6f2;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
}

#join-drop-list .note {
    color: #555;
}

.drop-form {
    margin: 1.5rem auto 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    max-width: 520px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.drop-form input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.drop-form input[type="email"]:focus {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.drop-form .cta-button {
    margin: 0;
    white-space: nowrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    header {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.3rem;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero-feature {
        text-align: center;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-copy {
        order: 2;
    }

    .product-figure {
        order: 1;
    }
}











