/* ============================================
   ETERNO TEQUILA - LUXURY WEBSITE STYLES
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Dark Blue Theme matching logo */
    --color-bg-dark: #0a1628;
    --color-bg-darker: #060d1a;
    --color-bg-card: #0d1a2d;
    --color-bg-overlay: rgba(6, 13, 26, 0.85);
    --color-gold: #c39e6a;
    --color-gold-light: #d4b78a;
    --color-gold-dark: #a17d4a;
    --color-cream: #f5f0e8;
    --color-cream-dark: #e8dfd0;
    --color-text: #e8e4dc;
    --color-text-muted: #8a9eb0;
    --color-white: #ffffff;
    --color-border: rgba(195, 158, 106, 0.2);
    --color-border-light: rgba(195, 158, 106, 0.1);
    --color-blue-accent: #1a2d4a;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.section-header.light .section-title {
    color: var(--color-white);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-divider.left {
    justify-content: flex-start;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-divider.left .divider-line {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 0.75rem;
}

/* ============================================
   PRELOADER WITH LOGO DRAWING ANIMATION
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo SVG */
.logo-animation {
    width: 120px;
    height: auto;
    overflow: visible;
}

/* Logo segments - initially hidden */
.logo-segment {
    opacity: 0;
}

/* Simple fade in */
.segment-sunburst {
    animation: simpleFadeIn 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes simpleFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 17, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-cream);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--color-cream);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-cta {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-cream);
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Very subtle agave hint blended into dark blue */
    background-image: url('images/agave-field-hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: var(--color-bg-darker);
    /* Heavy blur for subtle texture only */
    filter: blur(3px) saturate(0.4) brightness(0.4);
    transform: scale(1.02);
    opacity: 0.35;
}

/* Dark blue overlay - primary color */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: -2%;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.92) 0%,
        rgba(10, 22, 40, 0.88) 30%,
        rgba(6, 15, 28, 0.9) 70%,
        rgba(4, 10, 20, 0.95) 100%
    );
    z-index: 1;
}

/* Subtle vignette */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: -2%;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(4, 10, 20, 0.4) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 120% 80% at 50% 20%, rgba(195, 158, 106, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 30% 90%, rgba(20, 50, 70, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 85%, rgba(20, 45, 65, 0.15) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
}

/* Decorative line above badge */
.hero-content::before {
    content: '';
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: lineReveal 1s ease 1.8s forwards;
}

@keyframes lineReveal {
    0% {
        opacity: 0;
        height: 0;
    }
    100% {
        opacity: 0.6;
        height: 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-border);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.2s forwards;
    letter-spacing: -0.01em;
}

.title-line {
    display: block;
}

.title-line:first-child {
    color: var(--color-cream);
    font-style: normal;
    margin-bottom: 0.25em;
}

.title-accent {
    color: var(--color-gold);
    font-style: italic;
    font-size: 1.1em;
    text-shadow: 0 0 60px rgba(195, 158, 106, 0.3);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.4s forwards;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

/* Hero actions - hidden when no button */
.hero-actions {
    display: none;
}

/* Decorative divider before button */
.hero-actions::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.6s forwards;
    position: relative;
    padding-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(195, 158, 106, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(195, 158, 106, 0.4);
}

.btn-secondary {
    border: 1px solid var(--color-border);
    color: var(--color-cream);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Button variants for light backgrounds */
.mission .btn-secondary,
.heritage-teaser .btn-secondary,
.collector-info .btn-primary,
.collection-preview .btn-secondary {
    border-color: var(--color-gold-dark);
    color: var(--color-bg-dark);
}

.mission .btn-secondary span,
.heritage-teaser .btn-secondary span,
.collector-info .btn-primary span,
.collection-preview .btn-secondary span {
    color: var(--color-bg-dark);
}

.mission .btn-secondary .btn-arrow,
.heritage-teaser .btn-secondary .btn-arrow,
.collector-info .btn-primary .btn-arrow,
.collection-preview .btn-secondary .btn-arrow {
    stroke: var(--color-bg-dark);
}

.mission .btn-secondary:hover,
.heritage-teaser .btn-secondary:hover,
.collector-info .btn-primary:hover,
.collection-preview .btn-secondary:hover {
    border-color: var(--color-gold-dark);
    background: var(--color-gold-dark);
    color: var(--color-white);
}

.mission .btn-secondary:hover span,
.heritage-teaser .btn-secondary:hover span,
.collector-info .btn-primary:hover span,
.collection-preview .btn-secondary:hover span {
    color: var(--color-white);
}

.mission .btn-secondary:hover .btn-arrow,
.heritage-teaser .btn-secondary:hover .btn-arrow,
.collector-info .btn-primary:hover .btn-arrow,
.collection-preview .btn-secondary:hover .btn-arrow {
    stroke: var(--color-white);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    background: var(--color-bg-dark);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.experience-text {
    padding-right: 2rem;
}

.lead-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.experience-text p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.05) 0%, transparent 100%);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-border);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ============================================
   TWO EMBODIMENTS SECTION
   ============================================ */
.embodiments {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.embodiments .section-label {
    color: var(--color-gold-dark);
}

.embodiments .section-title {
    color: var(--color-bg-dark);
}

.embodiments .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.embodiments .divider-icon {
    color: var(--color-gold-dark);
}

.embodiments .section-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.embodiments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.embodiment-card {
    padding: 3rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    transition: var(--transition-base);
}

.embodiment-card:hover {
    border-color: var(--color-gold-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.embodiment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.embodiment-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold-dark);
}

.embodiment-icon svg {
    width: 100%;
    height: 100%;
}

.embodiment-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
}

.embodiment-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.embodiment-translation {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 2rem;
}

.embodiment-meaning {
    padding: 1.5rem;
    background: rgba(195, 158, 106, 0.08);
    border-left: 3px solid var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.embodiment-meaning p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.embodiment-meaning p:last-child {
    margin-bottom: 0;
}

.embodiment-meaning strong {
    color: var(--color-bg-dark);
    font-weight: 500;
}

.embodiment-meaning em {
    color: var(--color-gold-dark);
    font-style: italic;
}

.embodiment-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.embodiment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    transition: var(--transition-base);
}

.embodiment-link:hover {
    gap: 1rem;
}

.embodiment-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.agave-varieties {
    padding: 1.5rem;
    background: rgba(10, 17, 24, 0.03);
    border: 1px solid rgba(195, 158, 106, 0.2);
    margin-bottom: 1.5rem;
}

.agave-varieties h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.agave-varieties > p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.agave-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.agave-list li {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-gold-dark);
    padding: 0.25rem 0.75rem;
    background: rgba(195, 158, 106, 0.1);
    border: 1px solid rgba(195, 158, 106, 0.3);
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection {
    background: var(--color-bg-darker);
    position: relative;
    overflow: hidden;
}

.collection-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(195, 158, 106, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(195, 158, 106, 0.03) 0%, transparent 70%);
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.bottle-display {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(195, 158, 106, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.bottle-placeholder {
    position: relative;
    z-index: 1;
}

.bottle-silhouette {
    width: 120px;
    height: 300px;
    color: var(--color-gold);
    opacity: 0.8;
}

.collection-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item {
    padding: 1.5rem;
    border-left: 2px solid var(--color-gold);
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-cream);
}

.collection-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.collection-description p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.story .section-label {
    color: var(--color-gold-dark);
}

.story .section-title {
    color: var(--color-bg-dark);
}

.story .divider-line {
    background: linear-gradient(90deg, var(--color-gold-dark), transparent);
}

.story .divider-icon {
    color: var(--color-gold-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content .lead-text {
    color: var(--color-bg-dark);
}

.story-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.visual-frame {
    position: relative;
    width: 300px;
    height: 300px;
}

.frame-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-gold-dark);
    transform: rotate(45deg);
}

.visual-content {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 158, 106, 0.1);
}

.agave-illustration {
    width: 150px;
    height: 150px;
    color: var(--color-gold-dark);
    animation: sway 6s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact {
    background: var(--color-bg-dark);
}

.impact-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.08) 0%, transparent 50%);
    border: 1px solid var(--color-border);
    position: relative;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.impact-content .section-title {
    margin-bottom: 1.5rem;
}

.impact-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.impact-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.stat-unit {
    font-size: 0.9rem;
    color: var(--color-cream);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.faq .section-label {
    color: var(--color-gold-dark);
}

.faq .section-title {
    color: var(--color-bg-dark);
}

.faq .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.faq .divider-icon {
    color: var(--color-gold-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(195, 158, 106, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-bg-dark);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-gold-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold-dark);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
}

/* ============================================
   SIMPLE INTRO SECTION
   ============================================ */
.simple-intro {
    padding: 5rem 0;
    background-color: var(--color-bg-darker);
    position: relative;
    overflow: hidden;
}

/* Agave field background */
.simple-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/agave-cta.jpg');
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    filter: saturate(0.6) brightness(0.5);
    opacity: 0.6;
    z-index: 0;
}

/* Dark overlay */
.simple-intro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.7) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(6, 13, 26, 0.75) 100%
    );
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-cream);
    margin-bottom: 0;
    font-style: italic;
}

.intro-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.text-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    position: relative;
    padding-bottom: 0.5rem;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-link:hover {
    color: var(--color-cream);
}

/* ============================================
   MINIMAL STATS SECTION
   ============================================ */
.minimal-stats {
    padding: 80px 0;
    background: var(--color-bg-darker);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

/* ============================================
   CTA BREAK SECTION
   ============================================ */
.cta-break {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    /* Primary dark blue background */
    background-color: var(--color-bg-darker);
}

/* Agave field background */
.cta-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/agave-cta.png');
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    filter: saturate(0.6) brightness(0.6);
    opacity: 0.7;
    z-index: 0;
}

/* Dark blue/black overlay */
.cta-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.7) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(6, 13, 26, 0.75) 100%
    );
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

/* ============================================
   WAITLIST SECTION
   ============================================ */
.waitlist {
    position: relative;
    overflow: hidden;
    /* Fallback */
    background-color: var(--color-bg-darker);
}

/* Very subtle agave texture layer */
.waitlist-bg {
    position: absolute;
    inset: -5px;
    background-image: url('images/agave-waitlist.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: blur(4px) saturate(0.3) brightness(0.35);
    transform: scale(1.01);
    opacity: 0.3;
    z-index: 0;
}

/* Dark blue overlay - primary color maintained */
.waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.92) 0%,
        rgba(10, 22, 40, 0.88) 50%,
        rgba(6, 13, 26, 0.94) 100%
    );
    z-index: 1;
}

.waitlist::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(195, 158, 106, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 30%, rgba(4, 12, 20, 0.4) 100%);
    z-index: 2;
}

.waitlist-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-intro {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(195, 158, 106, 0.05);
}

/* Select dropdown styling */
.form-group select {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c39e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    width: 100%;
}

.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(195, 158, 106, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c39e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--color-bg-dark);
    color: var(--color-cream);
    padding: 0.75rem;
}

.form-group select option:disabled {
    color: var(--color-text-muted);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    letter-spacing: normal;
    text-transform: none;
    color: var(--color-text-muted);
    line-height: 1.6;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(195, 158, 106, 0.15));
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-column p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-gold);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-trademarks {
    font-size: 0.7rem !important;
    font-style: italic;
}

.footer-legal-links {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

.footer-legal-links .separator {
    margin: 0 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* Form Disclaimer */
.form-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.form-disclaimer p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-disclaimer .recaptcha-notice {
    font-size: 0.7rem;
    margin-bottom: 0;
}

.form-disclaimer a {
    color: var(--color-gold);
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.page-hero-small {
    min-height: 40vh;
}

.legal-content {
    padding-top: 60px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--color-gold);
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .experience-content,
    .collection-showcase,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-text {
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 17, 24, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

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

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

    .impact-card {
        padding: 2rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Simple Intro Mobile */
    .simple-intro {
        padding: 60px 0;
    }

    .intro-text {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .intro-links {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .text-link {
        font-size: 0.9rem;
    }

    /* Minimal Stats Mobile */
    .minimal-stats {
        padding: 50px 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    }

    /* CTA Break Mobile */
    .cta-break {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .visual-frame {
        width: 200px;
        height: 200px;
    }

    .agave-illustration {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */

/* Base reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fade up animation - default */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Fade in from left */
.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale fade animation */
.scale-fade {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scale-fade.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur fade animation - luxury feel */
.blur-fade {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                filter 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.blur-fade.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger delays for child elements */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }

/* Stagger delays - slower variant */
.stagger-slow > *:nth-child(1) { transition-delay: 0s; }
.stagger-slow > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-slow > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-slow > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-slow > *:nth-child(5) { transition-delay: 0.6s; }
.stagger-slow > *:nth-child(6) { transition-delay: 0.75s; }

/* Individual delay utilities */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* Animated underline reveal */
.reveal-underline {
    position: relative;
    display: inline-block;
}

.reveal-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}

.reveal-underline.visible::after {
    width: 100%;
}

/* Section label animation */
.section-label {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section title animation */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s,
                transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section divider animation */
.section-divider {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}

.section-divider.visible {
    opacity: 1;
}

.divider-line {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}

.section-divider.visible .divider-line {
    transform: scaleX(1);
}

/* Luxury grid items - fade with scale */
.luxury-content,
.luxury-visual {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.luxury-content.visible,
.luxury-visual.visible {
    opacity: 1;
    transform: translateY(0);
}

.luxury-visual {
    transition-delay: 0.15s;
}

/* Card hover lift with shadow */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Smooth parallax for backgrounds */
@media (prefers-reduced-motion: no-preference) {
    .hero-bg {
        will-change: transform;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .fade-up,
    .fade-left,
    .fade-right,
    .scale-fade,
    .blur-fade,
    .section-label,
    .section-title,
    .section-divider,
    .divider-line,
    .luxury-content,
    .luxury-visual {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* ============================================
   BRAND HIERARCHY SECTION
   ============================================ */
.brand-hierarchy {
    background: var(--color-bg-darker);
    padding: 80px 0;
}

.brand-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand-item {
    text-align: center;
    padding: 2rem;
    min-width: 250px;
    max-width: 300px;
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.brand-item.featured {
    border-color: var(--color-gold);
    background: rgba(195, 158, 106, 0.08);
}

.brand-item .brand-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.brand-item .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.brand-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.brand-arrow {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    opacity: 0.5;
}

.brand-arrow svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   UPDATED NAVIGATION LOGO
   ============================================ */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

/* ============================================
   HERO BRAND TEXT
   ============================================ */
.hero-brand {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.8s forwards;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.3s forwards;
}

/* ============================================
   COSECHA SECTION UPDATES
   ============================================ */
.cosecha {
    background: var(--color-bg-darker);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.collection-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
}

.collection-info .collection-description {
    text-align: left;
    margin: 0;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.founder .section-label {
    color: var(--color-gold-dark);
}

.founder .section-title {
    color: var(--color-bg-dark);
}

.founder .divider-line {
    background: linear-gradient(90deg, var(--color-gold-dark), transparent);
}

.founder .divider-icon {
    color: var(--color-gold-dark);
}

.founder-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.founder-narrative {
    margin-top: 2rem;
}

.founder-narrative .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.founder-narrative p {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(195, 158, 106, 0.1);
    border-left: 3px solid var(--color-gold-dark);
}

.founder-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.founder-quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-gold-dark);
}

.founder-visual {
    position: sticky;
    top: 100px;
}

.heritage-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.heritage-card {
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.3);
    transition: var(--transition-base);
}

.heritage-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateX(8px);
}

.heritage-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--color-gold-dark);
}

.heritage-icon svg {
    width: 100%;
    height: 100%;
}

.heritage-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.5rem;
}

.heritage-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* ============================================
   POLAND-MEXICO ALLIANCE SECTION
   ============================================ */
.alliance {
    background: var(--color-bg-darker);
    position: relative;
}

.alliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.alliance .section-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 5rem auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-gold), var(--color-gold), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 4rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-marker::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(195, 158, 106, 0.5);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    background: var(--color-bg-darker);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    white-space: nowrap;
}

.timeline-content {
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
    padding: 2.5rem;
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--color-border);
    background: rgba(195, 158, 106, 0.05);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-highlight {
    color: var(--color-text) !important;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-gold);
    margin-top: 1.5rem !important;
}

/* Alliance Quote */
.alliance-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.alliance-quote blockquote {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.08) 0%, transparent 50%);
    border: 1px solid var(--color-border);
}

.alliance-quote blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.alliance-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.alliance-quote cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

/* ============================================
   WHY FOUNDED / MISSION SECTION
   ============================================ */
.why-founded {
    background: var(--color-bg-dark);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-card {
    padding: 2.5rem;
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.mission-card:hover {
    border-color: var(--color-border);
}

.mission-card.primary {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.08) 0%, transparent 50%);
    border-color: var(--color-border);
}

.mission-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */
.science {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.science .section-label {
    color: var(--color-gold-dark);
}

.science .section-title {
    color: var(--color-bg-dark);
}

.science .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.science .divider-icon {
    color: var(--color-gold-dark);
}

.science-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.science-intro .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-gold-dark);
    line-height: 1.6;
    padding: 1.5rem 2rem;
    background: rgba(195, 158, 106, 0.1);
    border-left: 3px solid var(--color-gold-dark);
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.science-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    transition: var(--transition-base);
}

.science-card:hover {
    border-color: var(--color-gold-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.science-card.featured {
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.1) 0%, white 100%);
    border-color: var(--color-gold-dark);
}

.science-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-gold-dark);
}

.science-icon svg {
    width: 100%;
    height: 100%;
}

.science-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
}

.science-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.oak-functions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.oak-function {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
}

.function-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold-dark);
    border: 2px solid var(--color-gold-dark);
    border-radius: 50%;
}

.function-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.function-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.function-content em {
    color: var(--color-gold-dark);
    font-style: italic;
}

.agave-distinction {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
}

.agave-distinction h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.agave-distinction > p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.agave-distinction strong {
    color: var(--color-bg-dark);
}

.agave-distinction em {
    color: var(--color-gold-dark);
    font-style: italic;
}

.barrel-fact {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(195, 158, 106, 0.08);
    border-left: 3px solid var(--color-gold-dark);
}

.fact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--color-gold-dark);
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.fact-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.fact-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.our-solution {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-bg-dark);
    margin-bottom: 2rem;
}

.solution-content .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.solution-content > p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solution-quote {
    margin: 0;
    padding: 2rem 3rem;
    background: var(--color-bg-dark);
}

.solution-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-gold);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FRONTIER / COMPARISON SECTION
   ============================================ */
.frontier {
    background: var(--color-bg-darker);
}

.frontier-content {
    max-width: 900px;
    margin: 0 auto;
}

.frontier-text {
    margin-bottom: 3rem;
}

.frontier-text .lead-text {
    margin-bottom: 1.5rem;
}

.frontier-text p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.comparison-table {
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: rgba(195, 158, 106, 0.1);
}

.comparison-header .comparison-col {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
}

.comparison-header .comparison-col.highlight {
    background: rgba(195, 158, 106, 0.2);
    color: var(--color-gold);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-top: 1px solid var(--color-border-light);
}

.comparison-row .comparison-col {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.comparison-row .comparison-col.label {
    font-weight: 400;
    color: var(--color-cream);
}

.comparison-row .comparison-col.highlight {
    background: rgba(195, 158, 106, 0.05);
    color: var(--color-gold);
}

.icon-check, .icon-x {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.icon-check {
    color: var(--color-gold);
}

.icon-x {
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* ============================================
   FOOTER BRAND UPDATE
   ============================================ */
.brand-company {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.footer .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1024px) {
    .brand-flow {
        flex-direction: column;
    }

    .brand-arrow {
        transform: rotate(90deg);
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-visual {
        position: static;
    }

    .heritage-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .heritage-card {
        flex: 1;
        min-width: 200px;
    }

    .mission-card.primary {
        grid-column: span 1;
    }

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

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

    .oak-functions {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(195, 158, 106, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROCESS STEPS (Science Page)
   ============================================ */
.how-it-works {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.how-it-works .section-label {
    color: var(--color-gold-dark);
}

.how-it-works .section-title {
    color: var(--color-bg-dark);
}

.how-it-works .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.how-it-works .divider-icon {
    color: var(--color-gold-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    transition: var(--transition-base);
}

.process-step:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE (Science Page)
   ============================================ */
.comparison {
    background: var(--color-bg-dark);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: rgba(195, 158, 106, 0.1);
}

.comparison-cell {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.comparison-row.header .comparison-cell {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
}

.comparison-cell.label {
    color: var(--color-cream);
}

.comparison-cell.highlight {
    background: rgba(195, 158, 106, 0.08);
    color: var(--color-gold);
}

/* ============================================
   ENVIRONMENTAL SECTION (Science Page)
   ============================================ */
.environmental {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.environmental .section-label {
    color: var(--color-gold-dark);
}

.environmental .section-title {
    color: var(--color-bg-dark);
}

.environmental .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.environmental .divider-icon {
    color: var(--color-gold-dark);
}

.impact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.impact-content .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
}

.impact-content > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impact-stat {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    text-align: center;
}

.impact-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold-dark);
    line-height: 1;
}

.impact-stat .stat-unit {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-bg-dark);
    margin-top: 0.5rem;
}

.impact-stat .stat-desc {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ============================================
   SCIENCE CTA
   ============================================ */
.science-cta {
    background: var(--color-bg-darker);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   SCIENCE INTRO (Science Page)
   ============================================ */
.science-intro {
    background: var(--color-bg-dark);
}

.science-content {
    max-width: 800px;
    margin: 0 auto;
}

.science-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.science-text .lead-text {
    margin-bottom: 1.5rem;
}

.science-text p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.science-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.science-list li {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.science-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.science-list li strong {
    color: var(--color-cream);
}

/* Science FAQ Section */
.science-faq {
    background: var(--color-bg-darker);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.faq-answer {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--color-gold);
}

.faq-answer em {
    color: var(--color-cream);
    font-style: italic;
}

/* ============================================
   FOUNDER SECTION (History Page)
   ============================================ */
.founder-origin {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

.founder-image {
    position: relative;
    padding: 20px;
}

/* Decorative background offset */
.founder-image::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    opacity: 0.15;
    z-index: 0;
}

/* Subtle gold line accent */
.founder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    z-index: 3;
}

.founder-image-frame {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(195, 158, 106, 0.2);
}

/* Outer decorative border */
.founder-image-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(195, 158, 106, 0.3);
    z-index: 3;
    pointer-events: none;
}

/* Inner glow effect */
.founder-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.founder-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: contrast(1.02) saturate(0.95);
}

.founder-image-frame:hover img {
    transform: scale(1.03);
    filter: contrast(1.05) saturate(1);
}

/* Frame Corners for Founder - Enhanced */
.founder-image-frame .frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
}

.founder-image-frame .frame-corner::before,
.founder-image-frame .frame-corner::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.founder-image-frame:hover .frame-corner::before,
.founder-image-frame:hover .frame-corner::after {
    opacity: 1;
}

.founder-image-frame .frame-corner::before {
    width: 100%;
    height: 1px;
}

.founder-image-frame .frame-corner::after {
    width: 1px;
    height: 100%;
}

.founder-image-frame .frame-corner.top-left {
    top: 20px;
    left: 20px;
}

.founder-image-frame .frame-corner.top-left::before { top: 0; left: 0; }
.founder-image-frame .frame-corner.top-left::after { top: 0; left: 0; }

.founder-image-frame .frame-corner.top-right {
    top: 20px;
    right: 20px;
}

.founder-image-frame .frame-corner.top-right::before { top: 0; right: 0; }
.founder-image-frame .frame-corner.top-right::after { top: 0; right: 0; }

.founder-image-frame .frame-corner.bottom-left {
    bottom: 20px;
    left: 20px;
}

.founder-image-frame .frame-corner.bottom-left::before { bottom: 0; left: 0; }
.founder-image-frame .frame-corner.bottom-left::after { bottom: 0; left: 0; }

.founder-image-frame .frame-corner.bottom-right {
    bottom: 20px;
    right: 20px;
}

.founder-image-frame .frame-corner.bottom-right::before { bottom: 0; right: 0; }
.founder-image-frame .frame-corner.bottom-right::after { bottom: 0; right: 0; }

.founder-text {
    max-width: 800px;
}

@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .founder-image::before {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 480px) {
    .founder-image {
        padding: 15px;
    }

    .founder-image::before {
        top: 25px;
        left: 25px;
    }

    .founder-image::after {
        height: 80px;
    }

    .founder-image-frame .frame-corner {
        width: 25px;
        height: 25px;
    }

    .founder-image-frame .frame-corner.top-left,
    .founder-image-frame .frame-corner.top-right,
    .founder-image-frame .frame-corner.bottom-left,
    .founder-image-frame .frame-corner.bottom-right {
        top: 15px;
        left: 15px;
    }

    .founder-image-frame .frame-corner.top-right,
    .founder-image-frame .frame-corner.bottom-right {
        left: auto;
        right: 15px;
    }

    .founder-image-frame .frame-corner.bottom-left,
    .founder-image-frame .frame-corner.bottom-right {
        top: auto;
        bottom: 15px;
    }
}

.founder-text .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.founder-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   WHY TEQUILA SECTION (History Page)
   ============================================ */
.why-tequila {
    background: var(--color-bg-dark);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content .lead-text {
    margin-bottom: 1.5rem;
}

.vision-content > p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(195, 158, 106, 0.08);
    border-left: 3px solid var(--color-gold);
}

.vision-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vision-quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-gold);
}

/* Industry Vision Section */
.industry-vision {
    background: var(--color-bg-darker);
}

.vision-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 2.5rem 0;
}

.vision-benefit {
    padding: 1.5rem;
    background: rgba(195, 158, 106, 0.05);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.vision-benefit:hover {
    border-color: var(--color-gold-dark);
    background: rgba(195, 158, 106, 0.08);
}

.vision-benefit h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.vision-benefit p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   MISSION SECTION (History Page)
   ============================================ */
.mission {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.mission .section-label {
    color: var(--color-gold-dark);
}

.mission .section-title {
    color: var(--color-bg-dark);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1.5rem;
}

.mission-content > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   INFO GRID (Products Page)
   ============================================ */
.collector-info {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.collector-info .section-label {
    color: var(--color-gold-dark);
}

.collector-info .section-title {
    color: var(--color-bg-dark);
}

.collector-info .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.collector-info .divider-icon {
    color: var(--color-gold-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    transition: var(--transition-base);
}

.info-card:hover {
    border-color: var(--color-gold-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   EMBODIMENT CARDS (Products Page)
   ============================================ */
.embodiment-card.featured {
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.1) 0%, white 100%);
    border-color: var(--color-gold-dark);
}

.embodiment-content {
    max-width: 100%;
}

.embodiment-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(195, 158, 106, 0.2);
    margin-top: 1.5rem;
}

.embodiment-details .detail-item {
    border-left: 2px solid var(--color-gold-dark);
    padding: 0 0 0 1rem;
}

.embodiment-details .detail-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.25rem;
}

.embodiment-details .detail-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-bg-dark);
}

/* ============================================
   EXCLUSIVITY & CONCIERGE SECTION (Homepage)
   ============================================ */
.exclusivity {
    background: var(--color-bg-darker);
}

.exclusivity-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.exclusivity-intro {
    max-width: 600px;
}

.exclusivity-intro .lead-text {
    font-size: 1.4rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.exclusivity-intro p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.concierge-card {
    background: rgba(195, 158, 106, 0.05);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.concierge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
}

.concierge-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.concierge-icon svg {
    width: 100%;
    height: 100%;
}

.concierge-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.concierge-card > p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.concierge-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.concierge-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.concierge-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .exclusivity-intro {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .concierge-card {
        padding: 2rem;
    }
}

/* ============================================
   FOOTER LINKS
   ============================================ */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ============================================
   KEY FEATURES (Homepage)
   ============================================ */
.key-features {
    background: var(--color-bg-dark);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.feature-highlight:hover {
    border-color: var(--color-border);
}

.feature-highlight .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.feature-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}

.feature-highlight p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   COLLECTION PREVIEW (Homepage)
   ============================================ */
.collection-preview {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.collection-preview .section-label {
    color: var(--color-gold-dark);
}

.collection-preview .section-title {
    color: var(--color-bg-dark);
}

.collection-preview .divider-line {
    background: linear-gradient(90deg, transparent, var(--color-gold-dark), transparent);
}

.collection-preview .divider-icon {
    color: var(--color-gold-dark);
}

.collection-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.collection-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(195, 158, 106, 0.2);
    transition: var(--transition-base);
}

.collection-card:hover {
    border-color: var(--color-gold-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.collection-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.75rem;
}

.collection-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.5rem;
}

.collection-translation {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.collection-card p:last-of-type {
    color: #555;
    line-height: 1.7;
}

/* ============================================
   INNOVATION HIGHLIGHT (Homepage)
   ============================================ */
.innovation-highlight {
    background: var(--color-bg-darker);
}

.innovation-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.innovation-text .lead-text {
    margin-bottom: 1rem;
}

.innovation-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.innovation-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(195, 158, 106, 0.05);
    border: 1px solid var(--color-border-light);
    text-align: center;
}

.stat-item .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
}

.stat-item .stat-unit {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-cream);
    margin-top: 0.25rem;
}

.stat-item .stat-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   HERITAGE TEASER (Homepage)
   ============================================ */
.heritage-teaser {
    background: var(--color-cream);
    color: var(--color-bg-dark);
}

.heritage-teaser .section-label {
    color: var(--color-gold-dark);
}

.heritage-teaser .section-title {
    color: var(--color-bg-dark);
}

.heritage-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.heritage-content .lead-text {
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
}

.heritage-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   ACTIVE NAV LINK
   ============================================ */
.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE UPDATES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .innovation-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .collection-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 6rem 1.5rem 3rem;
    }

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

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

    .comparison-cell.label {
        grid-column: span 2;
        border-bottom: 1px solid var(--color-border-light);
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .embodiment-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-logo-img {
        height: 40px;
    }

    .navbar.scrolled .nav-logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 80px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header .comparison-col:first-child,
    .comparison-row .comparison-col.label {
        display: none;
    }

    .comparison-row {
        padding: 0.5rem 0;
    }

    .comparison-row .comparison-col {
        padding: 0.75rem 1rem;
    }

    .comparison-row .comparison-col::before {
        content: attr(data-label);
        font-weight: 500;
        margin-right: auto;
    }

    .heritage-cards {
        flex-direction: column;
    }

    .heritage-card {
        min-width: auto;
    }

    /* Embodiments Section Responsive */
    .embodiments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .embodiment-card {
        padding: 2rem;
    }

    .embodiment-title {
        font-size: 1.6rem;
    }

    .embodiment-meaning {
        padding: 1.25rem;
    }

    .agave-list {
        gap: 0.5rem;
    }

    .agave-list li {
        font-size: 0.85rem;
        padding: 0.2rem 0.5rem;
    }

    .highlight-text {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .oak-function {
        flex-direction: column;
        text-align: center;
    }

    .function-number {
        margin: 0 auto;
    }

    .barrel-fact {
        flex-direction: column;
    }

    .fact-icon {
        margin: 0 auto;
    }

    .fact-content {
        text-align: center;
    }

    .fact-content p {
        text-align: center;
    }

    .agave-distinction {
        padding: 2rem;
    }

    .solution-quote {
        padding: 1.5rem;
    }

    .solution-quote p {
        font-size: 1.1rem;
    }

    /* Alliance Section Responsive */
    .timeline {
        padding-left: 25px;
        margin: 3rem auto;
    }

    .timeline::before {
        left: 3px;
    }

    .timeline-marker {
        left: -25px;
    }

    .timeline-marker::before {
        width: 8px;
        height: 8px;
    }

    .timeline-year {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .timeline-item {
        padding-bottom: 2.5rem;
    }

    .alliance-quote blockquote {
        padding: 2rem 1.5rem;
    }

    .alliance-quote p {
        font-size: 1.1rem;
    }

    .alliance-quote blockquote::before {
        font-size: 3rem;
        left: 1rem;
        top: 0.5rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .innovation-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .concierge-card {
        margin-top: 0;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Root variable adjustments */
    :root {
        --section-padding: 50px;
    }

    /* Base font size increase for mobile */
    html {
        font-size: 18px;
    }

    /* Container padding */
    .container {
        padding: 0 1.5rem;
    }

    /* Typography scaling - LARGER for mobile */
    .section-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .lead-text {
        font-size: 1.35rem;
        line-height: 1.7;
    }

    /* Body text larger */
    body {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100svh;
        padding: 100px 0 80px;
    }

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

    .hero-badge {
        padding: 0.6rem 1.25rem;
        margin-bottom: 2rem;
    }

    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        margin-bottom: 1.75rem;
        line-height: 1.15;
    }

    .title-accent {
        font-size: 1.1em;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-actions {
        gap: 1.25rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-scroll {
        bottom: 2rem;
    }

    .hero-scroll span {
        font-size: 0.7rem;
    }

    /* Navigation Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .nav-menu {
        padding: 6rem 2rem 2rem;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.3rem;
        letter-spacing: 0.08em;
    }

    .nav-link.nav-cta {
        padding: 0.85rem 1.75rem;
        margin-top: 1.5rem;
        font-size: 1.1rem;
    }

    /* Key Features Section */
    .key-features {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .feature-highlight {
        padding: 2rem;
        text-align: center;
    }

    .feature-highlight .feature-icon {
        margin: 0 auto 1.25rem;
        width: 48px;
        height: 48px;
    }

    .feature-highlight h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .feature-highlight p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Collection Preview Section */
    .collection-preview {
        padding: 60px 0;
    }

    .collection-cards {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .collection-card {
        padding: 2rem;
    }

    .collection-card h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .collection-card p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .collection-translation {
        font-size: 1.1rem;
    }

    .collection-label {
        font-size: 0.75rem;
    }

    /* Innovation Section */
    .innovation-highlight {
        padding: 60px 0;
    }

    .innovation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .innovation-text {
        text-align: center;
    }

    .innovation-text h2 {
        font-size: 2.2rem;
    }

    .innovation-text .lead-text {
        font-size: 1.3rem;
    }

    .innovation-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .innovation-text .btn {
        margin: 0 auto;
    }

    .innovation-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat-item {
        text-align: center;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 3.5rem;
    }

    .stat-unit {
        font-size: 1.1rem;
    }

    .stat-desc {
        font-size: 0.95rem;
    }

    /* Heritage Teaser */
    .heritage-teaser {
        padding: 60px 0;
    }

    .heritage-content {
        text-align: center;
        padding: 0 0.5rem;
    }

    .heritage-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .heritage-content .btn {
        margin: 2rem auto 0;
    }

    /* Exclusivity & Concierge Section */
    .exclusivity {
        padding: 60px 0;
    }

    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .exclusivity-intro {
        padding-right: 0;
    }

    .exclusivity-intro .lead-text {
        font-size: 1.35rem;
    }

    .exclusivity-intro p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .concierge-card {
        padding: 2rem;
        margin-top: 0;
    }

    .concierge-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.5rem;
    }

    .concierge-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .concierge-card > p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .concierge-cta {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .concierge-label {
        font-size: 1.1rem;
    }

    .concierge-desc {
        font-size: 1rem;
    }

    /* FAQ Section */
    .faq {
        padding: 60px 0;
    }

    .faq-list {
        gap: 1rem;
    }

    .faq-item {
        border-radius: 0;
    }

    .faq-question {
        padding: 1.5rem 1.25rem;
        font-size: 1.2rem;
    }

    .faq-question span:first-child {
        padding-right: 1rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    /* Waitlist Section */
    .waitlist {
        padding: 60px 0;
    }

    .waitlist-content {
        padding: 0;
    }

    .waitlist-intro {
        font-size: 1.15rem;
        padding: 0 0.5rem;
        line-height: 1.7;
    }

    .waitlist-form {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .form-group input {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
    }

    .form-checkbox {
        gap: 1rem;
    }

    .form-checkbox label {
        font-size: 1rem;
        line-height: 1.6;
    }

    .form-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .btn-full {
        padding: 1.15rem 1.75rem;
        font-size: 1rem;
    }

    .form-disclaimer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .form-disclaimer p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .recaptcha-notice {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        order: 1;
    }

    .footer-logo-img {
        height: 70px;
        margin: 0 auto;
    }

    .footer-links {
        order: 2;
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-links a {
        font-size: 1.1rem;
    }

    .footer-actions {
        order: 3;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.95rem;
    }

    .footer-trademarks {
        font-size: 0.85rem;
    }

    .footer-legal-links {
        margin-top: 0.75rem;
    }

    .footer-legal-links a {
        font-size: 0.95rem;
    }

    /* Preloader Mobile */
    .logo-animation {
        width: 320px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-divider {
        gap: 1rem;
    }

    .divider-line {
        width: 50px;
    }

    .divider-icon {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

    .btn-arrow {
        width: 20px;
        height: 20px;
    }

    .btn-secondary {
        padding: 1rem 2rem;
    }

    .btn-outline {
        padding: 0.9rem 1.75rem;
    }

    /* Section CTA */
    .section-cta {
        margin-top: 2.5rem;
    }
}

/* Small phones - keep text large and readable */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    /* Slightly smaller base but still large */
    html {
        font-size: 17px;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Typography - still large */
    .section-title {
        font-size: 1.9rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 90px 0 60px;
    }

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

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        max-width: 300px;
    }

    /* Navigation */
    .logo-text {
        font-size: 1.3rem;
    }

    .nav-toggle span {
        width: 24px;
    }

    /* Features */
    .feature-highlight {
        padding: 1.75rem;
    }

    .feature-highlight h3 {
        font-size: 1.3rem;
    }

    .feature-highlight p {
        font-size: 1rem;
    }

    /* Collection Cards */
    .collection-card {
        padding: 1.75rem;
    }

    .collection-card h3 {
        font-size: 1.6rem;
    }

    .collection-card p {
        font-size: 1.05rem;
    }

    /* Innovation */
    .innovation-text h2 {
        font-size: 1.9rem;
    }

    .stat-value {
        font-size: 3rem;
    }

    /* Concierge */
    .concierge-card {
        padding: 1.75rem;
    }

    .concierge-card h3 {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1.15rem;
    }

    .faq-answer {
        padding: 0 1rem 1.25rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    /* Waitlist */
    .waitlist-form {
        padding: 1.75rem 1.25rem;
    }

    .form-group input {
        padding: 1rem 1rem;
        font-size: 1.05rem;
    }

    .form-checkbox label {
        font-size: 0.95rem;
    }

    .form-disclaimer p {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-logo-img {
        height: 60px;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* Preloader */
    .logo-animation {
        width: 260px;
    }

    /* Buttons */
    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    html {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .collection-card {
        padding: 1.25rem;
    }

    .waitlist-form {
        padding: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:hover {
        transform: none;
    }

    .nav-link::after {
        display: none;
    }

    /* Increase tap targets */
    .nav-link {
        padding: 0.5rem;
    }

    .faq-question {
        min-height: 48px;
    }

    .form-checkbox input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Landscape mode on mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }

    .hero-actions {
        flex-direction: row;
        max-width: none;
    }

    .btn {
        width: auto;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .nav-container {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }

    .container {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-scroll {
        opacity: 1;
        animation: none;
    }

    .scroll-dot {
        animation: none;
    }

    .particle {
        animation: none;
        display: none;
    }

    .preloader {
        display: none;
    }
}

/* ============================================
   ADDITIONAL MOBILE FIXES
   ============================================ */

/* Prevent iOS bounce/pull-to-refresh */
@media (max-width: 1024px) {
    html, body {
        overscroll-behavior: none;
        overscroll-behavior-y: none;
        -webkit-overflow-scrolling: touch;
    }
}

/* Better mobile text handling */
@media (max-width: 768px) {
    /* Exclusivity section text fixes */
    .exclusivity-intro p,
    .exclusivity-intro .lead-text {
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Heritage section fixes */
    .heritage-content {
        padding: 0 0.5rem;
    }

    .heritage-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* FAQ fixes for mobile */
    .faq-question {
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .faq-question span:first-child {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
    }

    .faq-answer {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Collection cards padding */
    .collection-card {
        padding: 1.5rem 1.25rem;
    }

    .collection-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Innovation section text */
    .innovation-text {
        padding: 0 0.5rem;
    }

    .innovation-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Better section spacing */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    /* Concierge card mobile */
    .concierge-card {
        padding: 1.5rem;
    }

    .concierge-card > p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Form improvements */
    .waitlist-form {
        padding: 1.5rem 1rem;
    }

    .form-disclaimer {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .form-disclaimer p {
        hyphens: auto;
    }

    /* Footer mobile fixes */
    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-trademarks {
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }
}

/* Extra small screen fixes */
@media (max-width: 380px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-badge {
        padding: 0.3rem 0.6rem;
    }

    .badge-text {
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.65rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .collection-card {
        padding: 1.25rem 1rem;
    }

    .collection-card h3 {
        font-size: 1.2rem;
    }

    .concierge-card {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .form-group input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* ============================================
   FAQ SECTIONS
   ============================================ */
.faq-section {
    background: var(--color-bg-dark);
    padding: var(--section-padding) 0;
}

.faq-section:nth-child(odd) {
    background: var(--color-bg-darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-reverse .faq-grid {
    direction: rtl;
}

.faq-reverse .faq-grid > * {
    direction: ltr;
}

.faq-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.95);
    transition: var(--transition-slow);
}

.faq-image:hover img {
    transform: scale(1.03);
    filter: saturate(1) brightness(1);
}

.faq-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-border);
    pointer-events: none;
}

.faq-content {
    padding: 2rem 0;
}

.faq-content .section-label {
    margin-bottom: 1rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.faq-text {
    margin-bottom: 2rem;
}

.faq-text p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-text p:last-child {
    margin-bottom: 0;
}

.faq-text strong {
    color: var(--color-gold);
    font-weight: 500;
}

.faq-content .text-link {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.25rem;
    transition: var(--transition-base);
}

.faq-content .text-link:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
}

/* Secondary Button Style */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-secondary .btn-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */
.partnership {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-darker);
}

.partnership-bg {
    position: absolute;
    inset: -5px;
    background-image: url('images/imageHomepage-partnership.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px) saturate(0.3) brightness(0.35);
    transform: scale(1.01);
    opacity: 0.3;
    z-index: 0;
}

.partnership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.92) 0%,
        rgba(10, 22, 40, 0.88) 50%,
        rgba(6, 13, 26, 0.94) 100%
    );
    z-index: 1;
}

.partnership::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(195, 158, 106, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 30%, rgba(4, 12, 20, 0.4) 100%);
    z-index: 2;
}

.partnership-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.partnership-intro {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partnership-form .form-group.full-width {
    grid-column: 1 / -1;
}

.partnership-form select,
.partnership-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.partnership-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c39e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.partnership-form select option {
    background: var(--color-bg-dark);
    color: var(--color-cream);
}

.partnership-form textarea {
    resize: vertical;
    min-height: 120px;
}

.partnership-form select:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(195, 158, 106, 0.05);
}

.partnership-form textarea::placeholder {
    color: var(--color-text-muted);
}

/* ============================================
   FAQ & PARTNERSHIP RESPONSIVE STYLES
   ============================================ */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-reverse .faq-grid {
        direction: ltr;
    }

    .faq-image {
        aspect-ratio: 16/9;
    }

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-text p {
        font-size: 0.9rem;
    }

    .partnership-content {
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.3rem;
    }

    .faq-content .section-label {
        font-size: 0.65rem;
    }
}

/* ============================================
   ENHANCED HERO ANIMATIONS
   ============================================ */

/* Animated Light Rays */
.hero-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(195, 158, 106, 0.03) 20%,
        rgba(195, 158, 106, 0.08) 50%,
        rgba(195, 158, 106, 0.03) 80%,
        transparent 100%
    );
    transform-origin: center;
    opacity: 0;
    animation: rayRotate 20s linear infinite;
}

.ray-1 {
    animation-delay: 0s;
    transform: rotate(0deg);
}

.ray-2 {
    animation-delay: -6.66s;
    transform: rotate(60deg);
}

.ray-3 {
    animation-delay: -13.33s;
    transform: rotate(120deg);
}

@keyframes rayRotate {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(180deg);
    }
}

/* Floating Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(195, 158, 106, 0.15) 0%,
        rgba(195, 158, 106, 0.05) 40%,
        transparent 70%
    );
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.6;
    }
}

/* Hero Emblem */
.hero-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0;
    animation: emblemReveal 2s ease 1.5s forwards;
}

.emblem-svg {
    width: 100%;
    height: 100%;
    color: var(--color-gold);
    opacity: 0.1;
}

.emblem-ring {
    stroke-dasharray: 302;
    stroke-dashoffset: 302;
    animation: drawRing 3s ease 1.8s forwards;
}

.emblem-ring-inner {
    stroke-dasharray: 264;
    stroke-dashoffset: 264;
    animation: drawRing 3s ease 2s forwards;
}

@keyframes emblemReveal {
    to {
        opacity: 1;
    }
}

@keyframes drawRing {
    to {
        stroke-dashoffset: 0;
    }
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-border);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(10px);
}

.badge-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.badge-line:last-child {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.6s forwards;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta-primary:hover::before {
    transform: translateX(100%);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(195, 158, 106, 0.4);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-border);
    color: var(--color-cream);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.hero-cta-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* ============================================
   LUXURY SECTIONS - NEW DESIGN
   ============================================ */

.luxury-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

/* Background Textures */
.luxury-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.texture-grain {
    background:
        linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(13, 26, 45, 1) 50%, var(--color-bg-dark) 100%);
}

.texture-grain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.texture-marble {
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 1) 0%, rgba(15, 30, 50, 1) 50%, rgba(10, 22, 40, 1) 100%);
}

.texture-marble::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c39e6a' fill-opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.texture-silk {
    background:
        linear-gradient(160deg, rgba(10, 22, 40, 1) 0%, rgba(18, 35, 55, 1) 30%, rgba(12, 25, 42, 1) 70%, rgba(10, 22, 40, 1) 100%);
}

.texture-silk::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(195, 158, 106, 0.01) 2px,
            rgba(195, 158, 106, 0.01) 4px
        );
}

.texture-linen {
    background:
        linear-gradient(180deg, rgba(13, 26, 45, 1) 0%, rgba(10, 22, 40, 1) 50%, rgba(8, 18, 32, 1) 100%);
}

.texture-linen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23c39e6a' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

/* Section Accent Lines */
.luxury-section-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(270deg, rgba(195, 158, 106, 0.03) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.luxury-section-accent.accent-left {
    right: auto;
    left: 0;
    background: linear-gradient(90deg, rgba(195, 158, 106, 0.03) 0%, transparent 100%);
}

/* Luxury Grid */
.luxury-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.luxury-reverse .luxury-grid {
    direction: rtl;
}

.luxury-reverse .luxury-grid > * {
    direction: ltr;
}

/* Luxury Visual */
.luxury-visual {
    position: relative;
}

.luxury-image-frame {
    position: relative;
    overflow: hidden;
}

.luxury-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.luxury-image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.4) 100%);
    pointer-events: none;
}

/* Frame Corners */
.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.frame-corner::before,
.frame-corner::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    opacity: 0.6;
}

.frame-corner::before {
    width: 100%;
    height: 1px;
}

.frame-corner::after {
    width: 1px;
    height: 100%;
}

.frame-corner.top-left {
    top: 15px;
    left: 15px;
}

.frame-corner.top-left::before { top: 0; left: 0; }
.frame-corner.top-left::after { top: 0; left: 0; }

.frame-corner.top-right {
    top: 15px;
    right: 15px;
}

.frame-corner.top-right::before { top: 0; right: 0; }
.frame-corner.top-right::after { top: 0; right: 0; }

.frame-corner.bottom-left {
    bottom: 15px;
    left: 15px;
}

.frame-corner.bottom-left::before { bottom: 0; left: 0; }
.frame-corner.bottom-left::after { bottom: 0; left: 0; }

.frame-corner.bottom-right {
    bottom: 15px;
    right: 15px;
}

.frame-corner.bottom-right::before { bottom: 0; right: 0; }
.frame-corner.bottom-right::after { bottom: 0; right: 0; }

/* Stat Badge */
.luxury-stat-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 30, 50, 0.95) 100%);
    border: 1px solid rgba(195, 158, 106, 0.3);
    padding: 25px 35px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.luxury-stat-badge.badge-left {
    right: auto;
    left: 30px;
}

.luxury-stat-badge .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.luxury-stat-badge .stat-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.luxury-stat-badge .stat-icon {
    display: block;
    margin-bottom: 10px;
}

.luxury-stat-badge .stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

/* Luxury Content */
.luxury-content {
    padding: 20px 0;
}

.luxury-header {
    margin-bottom: 2rem;
}

.luxury-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.luxury-divider {
    display: flex;
    align-items: center;
    gap: 0;
}

.divider-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: rotate(45deg);
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.luxury-divider::after {
    background: linear-gradient(270deg, var(--color-gold), transparent);
}

.luxury-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.luxury-title em {
    font-style: italic;
    color: var(--color-gold);
}

.luxury-text {
    margin-bottom: 2rem;
}

.luxury-lead {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 20px;
    border-left: 2px solid rgba(195, 158, 106, 0.3);
}

.luxury-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.luxury-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-marker {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    background: transparent;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
}

.luxury-detail-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.luxury-detail-item strong {
    color: var(--color-cream);
    font-weight: 500;
}

/* Luxury Links */
.luxury-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.luxury-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.luxury-link:hover {
    color: var(--color-gold-light);
}

.luxury-link:hover svg {
    transform: translateX(5px);
}

/* Luxury CTA Button */
.luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.luxury-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.luxury-cta:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.luxury-cta:hover svg {
    transform: translateX(5px);
}

/* ============================================
   PARTNERSHIP PAGE STYLES
   ============================================ */

.partnership-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 100px;
    overflow: hidden;
    background-color: var(--color-bg-darker);
}

.partnership-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.partnership-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/Partnerships.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    filter: saturate(0.6) brightness(0.45);
    opacity: 0.7;
}

.partnership-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.7) 0%,
        rgba(10, 22, 40, 0.55) 50%,
        rgba(6, 13, 26, 0.75) 100%
    );
}

.partnership-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.partnership-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.partnership-hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* Partnership Philosophy */
.partnership-philosophy {
    background: var(--color-bg-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content .section-label {
    margin-bottom: 0.5rem;
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 2rem;
}

.philosophy-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-text strong {
    color: var(--color-cream);
}

.philosophy-visual {
    position: relative;
}

/* Philosophy Image - Luxury Frame Style */
.philosophy-image {
    position: relative;
    padding: 20px;
}

/* Decorative background offset */
.philosophy-image::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    opacity: 0.15;
    z-index: 0;
}

/* Subtle gold line accent */
.philosophy-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    z-index: 3;
}

.philosophy-image-frame {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(195, 158, 106, 0.2);
}

/* Outer decorative border */
.philosophy-image-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(195, 158, 106, 0.3);
    z-index: 3;
    pointer-events: none;
}

/* Inner glow effect */
.philosophy-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.philosophy-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: contrast(1.02) saturate(0.95);
}

.philosophy-image-frame:hover img {
    transform: scale(1.03);
    filter: contrast(1.05) saturate(1);
}

/* Frame Corners */
.philosophy-image-frame .frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
}

.philosophy-image-frame .frame-corner::before,
.philosophy-image-frame .frame-corner::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.philosophy-image-frame:hover .frame-corner::before,
.philosophy-image-frame:hover .frame-corner::after {
    opacity: 1;
}

.philosophy-image-frame .frame-corner::before {
    width: 100%;
    height: 1px;
}

.philosophy-image-frame .frame-corner::after {
    width: 1px;
    height: 100%;
}

.philosophy-image-frame .frame-corner.top-left {
    top: 20px;
    left: 20px;
}

.philosophy-image-frame .frame-corner.top-left::before { top: 0; left: 0; }
.philosophy-image-frame .frame-corner.top-left::after { top: 0; left: 0; }

.philosophy-image-frame .frame-corner.top-right {
    top: 20px;
    right: 20px;
}

.philosophy-image-frame .frame-corner.top-right::before { top: 0; right: 0; }
.philosophy-image-frame .frame-corner.top-right::after { top: 0; right: 0; }

.philosophy-image-frame .frame-corner.bottom-left {
    bottom: 20px;
    left: 20px;
}

.philosophy-image-frame .frame-corner.bottom-left::before { bottom: 0; left: 0; }
.philosophy-image-frame .frame-corner.bottom-left::after { bottom: 0; left: 0; }

.philosophy-image-frame .frame-corner.bottom-right {
    bottom: 20px;
    right: 20px;
}

.philosophy-image-frame .frame-corner.bottom-right::before { bottom: 0; right: 0; }
.philosophy-image-frame .frame-corner.bottom-right::after { bottom: 0; right: 0; }

.philosophy-stat {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: rgba(10, 22, 40, 0.95);
    border: 1px solid rgba(195, 158, 106, 0.3);
    padding: 20px 30px;
    text-align: center;
    z-index: 5;
}

.philosophy-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-gold);
}

.philosophy-stat .stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Partnership Criteria */
.partnership-criteria {
    position: relative;
    overflow: hidden;
}

.criteria-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 26, 45, 1) 0%, var(--color-bg-dark) 100%);
}

.criteria-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.criteria-card {
    padding: 40px 30px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(195, 158, 106, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.criteria-card:hover {
    border-color: rgba(195, 158, 106, 0.3);
    transform: translateY(-5px);
}

.criteria-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.criteria-icon svg {
    width: 100%;
    height: 100%;
}

.criteria-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.criteria-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Partnership Form Section */
.partnership-form-section {
    background: var(--color-bg-dark);
}

.partnership-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.partnership-form-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
    text-align: center;
}

/* ============================================
   LUXURY SECTIONS RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .luxury-section {
        padding: 100px 0;
    }

    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .luxury-reverse .luxury-grid {
        direction: ltr;
    }

    .luxury-stat-badge {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .luxury-stat-badge.badge-left {
        left: auto;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-emblem {
        width: 350px;
        height: 350px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .luxury-section {
        padding: 80px 0;
    }

    .luxury-grid {
        gap: 40px;
    }

    .luxury-title {
        font-size: 1.8rem;
    }

    .luxury-lead {
        font-size: 1rem;
        padding-left: 15px;
    }

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

    .criteria-card {
        padding: 30px 25px;
    }

    .hero-emblem {
        width: 280px;
        height: 280px;
    }

    .orb-1, .orb-2, .orb-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .luxury-section {
        padding: 60px 0;
    }

    .luxury-label {
        font-size: 0.6rem;
    }

    .luxury-title {
        font-size: 1.5rem;
    }

    .luxury-stat-badge {
        padding: 15px 20px;
    }

    .luxury-stat-badge .stat-number {
        font-size: 2rem;
    }

    .frame-corner {
        width: 20px;
        height: 20px;
    }

    .hero-emblem {
        width: 220px;
        height: 220px;
    }
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    position: relative;
    background: var(--color-bg-darker);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(195, 158, 106, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(195, 158, 106, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-lead {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
}

.mission-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.mission-value-item:hover {
    background: rgba(195, 158, 106, 0.06);
    border-color: var(--color-border);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mission-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.mission-link:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.mission-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.mission-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-lead {
        font-size: 1.2rem;
    }

    .mission-value-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   REDESIGNED FOOTER
   ============================================ */
.footer-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-light);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-muted);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-nav-column h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-nav-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-column li a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.footer-nav-column li a:hover {
    color: var(--color-cream);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-disclaimers p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-disclaimers p strong {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-bar p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-main {
        gap: 2.5rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav-column {
        text-align: center;
    }

    .footer-logo-img {
        height: 120px;
    }

    .footer-disclaimers p {
        font-size: 0.7rem;
        text-align: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom-bar p {
        font-size: 0.7rem;
    }
}

/* ============================================
   WAITLIST PAGE STYLES
   ============================================ */
.waitlist-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.waitlist-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 20%, rgba(195, 158, 106, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
    pointer-events: none;
}

.waitlist-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.waitlist-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.waitlist-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.waitlist-info {
    background: var(--color-bg-dark);
}

.waitlist-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.waitlist-info-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.waitlist-info-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.waitlist-info-text strong {
    color: var(--color-gold);
}

.allocation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.allocation-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(195, 158, 106, 0.03);
    border-left: 2px solid var(--color-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.waitlist-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    padding: 2rem;
    background: rgba(195, 158, 106, 0.04);
    border: 1px solid var(--color-border-light);
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.waitlist-form-section {
    position: relative;
    background: var(--color-bg-darker);
    overflow: hidden;
}

.waitlist-form-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 70%, rgba(195, 158, 106, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-form-wrapper {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waitlist-disclaimers {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(195, 158, 106, 0.03);
    border: 1px solid var(--color-border-light);
}

.waitlist-disclaimers h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.waitlist-disclaimers ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-disclaimers li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 1px solid var(--color-border);
}

.waitlist-disclaimers li strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.disclaimer-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .waitlist-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .waitlist-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .waitlist-hero {
        min-height: 40vh;
        padding: 100px 0 40px;
    }

    .allocation-step {
        gap: 1rem;
        padding: 1.25rem;
    }

    .step-number {
        font-size: 1.25rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .waitlist-disclaimers {
        padding: 1.5rem;
    }
}

/* ============================================
   HOMEPAGE LUXURY VISUAL ELEMENTS
   ============================================ */

/* Desktop Only Visuals */
.desktop-only {
    display: none;
}

@media (min-width: 992px) {
    .desktop-only {
        display: block;
    }

    .luxury-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .luxury-reverse .luxury-grid {
        direction: rtl;
    }

    .luxury-reverse .luxury-grid > * {
        direction: ltr;
    }
}

/* Section Background Textures */
.luxury-section-bg.texture-agave {
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(6, 13, 26, 0.98) 100%),
        url('images/agave-field-texture.jpg') center/cover no-repeat;
}

.luxury-section-bg.texture-agave-dark {
    background:
        linear-gradient(135deg, rgba(6, 13, 26, 0.98) 0%, rgba(10, 22, 40, 0.97) 100%),
        url('images/agave-field-texture.jpg') center/cover no-repeat;
}

.luxury-section-bg.texture-agave-light {
    background:
        linear-gradient(to right, rgba(10, 22, 40, 0.96) 0%, rgba(15, 30, 50, 0.97) 100%),
        url('images/agave-field-texture.jpg') center/cover no-repeat;
}

/* Bottles Visual - Singular & Exclusive */
.bottles-visual {
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.05) 0%, rgba(195, 158, 106, 0.02) 100%);
    border: 1px solid var(--color-border);
    padding: 3rem;
    position: relative;
}

.bottles-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.bottles-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.bottle-stack {
    text-align: center;
    padding: 2rem;
    flex: 1;
    position: relative;
}

.bottle-stack.collector {
    background: linear-gradient(180deg, rgba(195, 158, 106, 0.1) 0%, transparent 100%);
}

.bottle-stack.library {
    background: linear-gradient(180deg, rgba(195, 158, 106, 0.05) 0%, transparent 100%);
}

.bottle-divider {
    width: 1px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
    opacity: 0.3;
}

.bottle-count {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.bottle-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.bottle-sublabel {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.bottles-total {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.total-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-gold-light);
    display: block;
    margin-bottom: 0.25rem;
}

.total-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Value Chart Visual - Investment-Grade */
.value-chart {
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.05) 0%, rgba(195, 158, 106, 0.02) 100%);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
}

.value-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.chart-subtitle {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-cream);
}

.chart-visual {
    margin-bottom: 1.5rem;
}

.chart-line {
    height: 150px;
    position: relative;
    margin-bottom: 1rem;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

.chart-stroke {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawChart 2s ease forwards;
    animation-play-state: paused;
}

.chart-line:hover .chart-stroke,
.luxury-section:hover .chart-stroke {
    animation-play-state: running;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
}

.chart-labels span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.chart-note {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.chart-note span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold-light);
}

/* Activations Visual - Beyond Convention */
.activations-visual {
    background: linear-gradient(135deg, rgba(195, 158, 106, 0.05) 0%, rgba(195, 158, 106, 0.02) 100%);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
}

.activations-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.activations-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.activations-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.activations-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream);
}

.activations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(195, 158, 106, 0.03);
    border-left: 2px solid var(--color-gold);
    transition: var(--transition-base);
}

.activation-item:hover {
    background: rgba(195, 158, 106, 0.08);
}

.activation-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.activation-icon svg {
    width: 100%;
    height: 100%;
}

.activation-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.02em;
}

.activations-note {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* Fix Simple Intro spacing */
/* Simple intro override already defined above */

/* ============================================
   AGE VERIFICATION GATE
   ============================================ */
body.age-gate-active {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.age-gate.visible {
    opacity: 1;
}

.age-gate.hiding {
    opacity: 0;
    pointer-events: none;
}

.age-gate-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-bg-darker);
}

.age-gate-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/agave-cta.png');
    background-size: cover;
    background-position: center;
    filter: saturate(0.4) brightness(0.3);
    opacity: 0.6;
}

.age-gate-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(195, 158, 106, 0.08) 0%, transparent 60%),
                linear-gradient(180deg, rgba(6, 13, 26, 0.7) 0%, rgba(10, 22, 40, 0.8) 100%);
}

.age-gate-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-content {
    max-width: 520px;
    text-align: center;
    padding: 60px 50px;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid rgba(195, 158, 106, 0.25);
    backdrop-filter: blur(20px);
    position: relative;
}

/* Gold corner accents */
.age-gate-content::before,
.age-gate-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
    opacity: 0.4;
}

.age-gate-content::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.age-gate-content::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.age-gate-logo {
    width: 140px;
    margin: 0 auto 30px;
}

.age-gate-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(195, 158, 106, 0.3));
}

.age-gate-welcome {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.age-gate-brand {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.age-gate-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 40px;
}

.age-gate-question {
    margin-bottom: 30px;
}

.age-gate-question p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.age-gate-btn {
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.age-gate-yes {
    background: linear-gradient(135deg, #d4a854 0%, #c4913c 50%, #b8860b 100%);
    color: var(--color-bg-darker);
}

.age-gate-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(195, 158, 106, 0.4);
}

.age-gate-no {
    background: transparent;
    border: 1px solid rgba(195, 158, 106, 0.4);
    color: var(--color-text-muted);
}

.age-gate-no:hover {
    border-color: var(--color-gold);
    color: var(--color-cream);
}

/* Remember checkbox */
.age-gate-remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 30px;
}

.age-gate-remember input {
    display: none;
}

.age-gate-remember .checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(195, 158, 106, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.age-gate-remember input:checked + .checkmark {
    border-color: var(--color-gold);
    background: rgba(195, 158, 106, 0.2);
}

.age-gate-remember input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--color-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.age-gate-remember .remember-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Language selector */
.age-gate-language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.age-gate-language .lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.age-gate-language .lang-btn:hover,
.age-gate-language .lang-btn.active {
    color: var(--color-gold);
}

.age-gate-language .lang-divider {
    color: rgba(195, 158, 106, 0.3);
    font-weight: 200;
}

.age-gate-disclaimer {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto;
}

/* Denied state */
.age-gate-denied {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 13, 26, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.age-gate-denied.visible {
    opacity: 1;
    visibility: visible;
}

.denied-content {
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.denied-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 15px;
}

.denied-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Mobile age gate */
@media (max-width: 600px) {
    .age-gate-content {
        padding: 40px 25px;
        margin: 10px;
    }

    .age-gate-content::before,
    .age-gate-content::after {
        width: 40px;
        height: 40px;
        top: 10px;
        left: 10px;
    }

    .age-gate-content::after {
        top: auto;
        left: auto;
        bottom: 10px;
        right: 10px;
    }

    .age-gate-logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .age-gate-brand {
        font-size: 2rem;
    }

    .age-gate-tagline {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-gate-btn {
        padding: 14px 30px;
        width: 100%;
    }

    .age-gate-question p {
        font-size: 0.9rem;
    }
}

/* ============================================
   LANGUAGE SWITCHER IN NAV
   ============================================ */
.nav-language {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(195, 158, 106, 0.2);
}

.nav-lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover,
.nav-lang-btn.active {
    color: var(--color-gold);
}

.nav-lang-divider {
    color: rgba(195, 158, 106, 0.3);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .nav-language {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(195, 158, 106, 0.15);
    }
}
