/* ============================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================ */

:root {
    /* Core Palette */
    --color-primary: #6b705c;
    --color-primary-dark: #545842;
    --color-primary-light: #8a8f7a;
    --color-secondary: #fff8f0;
    --color-secondary-dark: #f5ede2;
    --color-accent: #cb997e;
    --color-accent-dark: #b07d62;
    --color-accent-light: #ddb8a3;

    /* Extended Palette */
    --color-sage: #a5a58d;
    --color-sage-light: #b7b7a4;
    --color-cream: #ffe8d6;
    --color-dusty-rose: #d4a5a5;
    --color-dusty-rose-light: #e8c8c8;
    --color-lavender: #c9b1d0;
    --color-lavender-light: #e2d5e8;
    --color-warm-brown: #8b6f47;
    --color-linen: #faf0e6;
    --color-parchment: #f5f0eb;

    /* Neutrals */
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-border: #e0d8cf;
    --color-border-light: #ede6dd;

    /* Semantic */
    --color-success: #6b8f5e;
    --color-error: #c1666b;
    --color-warning: #d4a843;
    --color-info: #6b8fa5;

    /* Typography */
    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 112, 92, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 112, 92, 0.12);
    --shadow-lg: 0 8px 32px rgba(107, 112, 92, 0.16);
    --shadow-xl: 0 16px 48px rgba(107, 112, 92, 0.2);
    --shadow-warm: 0 4px 20px rgba(203, 153, 126, 0.15);
    --shadow-glow: 0 0 30px rgba(203, 153, 126, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Linen texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
}

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

a {
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
}

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

/* ============================================
   BOTANICAL PATTERN (CSS-only floral motifs)
   ============================================ */

.botanical-pattern {
    background-image:
        radial-gradient(ellipse 8px 12px at 20% 30%, rgba(107, 112, 92, 0.06) 50%, transparent 50%),
        radial-gradient(ellipse 6px 10px at 70% 60%, rgba(203, 153, 126, 0.05) 50%, transparent 50%),
        radial-gradient(circle 3px at 40% 80%, rgba(165, 165, 141, 0.07) 50%, transparent 50%),
        radial-gradient(ellipse 7px 11px at 85% 20%, rgba(201, 177, 208, 0.04) 50%, transparent 50%);
    background-size: 120px 120px;
}

/* Scalloped border helper */
.scalloped-top {
    position: relative;
}

.scalloped-top::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 16px;
    background: radial-gradient(circle 8px at 8px 16px, transparent 7px, var(--color-secondary) 8px);
    background-size: 16px 16px;
    background-position: -8px 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md), 0 2px 0 var(--color-primary-dark);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 4px 0 var(--color-primary-dark);
    color: var(--color-white);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-white);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
    animation: slideUpCookie 0.5s ease forwards;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .cookie-inner {
        flex-direction: row;
        align-items: center;
    }
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
}

.cookie-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-cookie-accept:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-cookie-essential {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-cookie-essential:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-border);
}

.btn-cookie-settings:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--color-border-light);
}

.cookie-settings-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
}

.cookie-option {
    margin-bottom: var(--space-md);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    padding-left: 24px;
}

/* ============================================
   AGE GATE MODAL
   ============================================ */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeInOverlay 0.4s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-gate-modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: scaleInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleInModal {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.age-gate-floral-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
        var(--color-accent) 0%,
        var(--color-dusty-rose) 25%,
        var(--color-lavender) 50%,
        var(--color-sage) 75%,
        var(--color-accent) 100%
    );
}

.age-gate-shield {
    margin-bottom: var(--space-lg);
}

.age-gate-modal h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.age-gate-modal p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.age-gate-note {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
    margin-bottom: var(--space-xl) !important;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.btn-age {
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-age-yes {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-age-yes:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-age-no {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-border);
}

.btn-age-no:hover {
    border-color: var(--color-error);
    color: var(--color-error);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(224, 216, 207, 0.5);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.main-nav {
    display: none;
}

@media (min-width: 960px) {
    .main-nav {
        display: block;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    z-index: 1001;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

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

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    transform: scale(1.05);
}

@media (min-width: 960px) {
    .mobile-nav-overlay {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--color-secondary) 0%,
            var(--color-cream) 30%,
            var(--color-secondary-dark) 60%,
            var(--color-linen) 100%
        );
}

.hero-botanical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        /* Leaf shapes */
        radial-gradient(ellipse 18px 30px at 10% 20%, var(--color-primary-light) 40%, transparent 41%),
        radial-gradient(ellipse 14px 24px at 12% 22%, transparent 50%, transparent 51%),
        radial-gradient(ellipse 15px 26px at 85% 15%, var(--color-sage) 40%, transparent 41%),
        radial-gradient(ellipse 20px 34px at 90% 70%, var(--color-primary-light) 40%, transparent 41%),
        radial-gradient(ellipse 12px 20px at 5% 75%, var(--color-sage-light) 40%, transparent 41%),
        /* Small flowers */
        radial-gradient(circle 5px at 30% 10%, var(--color-dusty-rose) 50%, transparent 51%),
        radial-gradient(circle 3px at 31% 11%, var(--color-white) 50%, transparent 51%),
        radial-gradient(circle 5px at 75% 85%, var(--color-lavender) 50%, transparent 51%),
        radial-gradient(circle 3px at 76% 86%, var(--color-white) 50%, transparent 51%),
        radial-gradient(circle 4px at 50% 50%, var(--color-accent-light) 50%, transparent 51%),
        radial-gradient(circle 2px at 51% 51%, var(--color-white) 50%, transparent 51%),
        /* Dots */
        radial-gradient(circle 2px at 20% 60%, var(--color-accent) 50%, transparent 51%),
        radial-gradient(circle 2px at 60% 30%, var(--color-sage) 50%, transparent 51%),
        radial-gradient(circle 2px at 40% 90%, var(--color-dusty-rose) 50%, transparent 51%),
        radial-gradient(circle 1.5px at 95% 45%, var(--color-lavender) 50%, transparent 51%);
    background-size: 100% 100%;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 18px;
    background: rgba(107, 112, 92, 0.1);
    border: 1px solid rgba(107, 112, 92, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-badge svg {
    color: var(--color-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-display);
    color: var(--color-accent-dark);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 700;
    margin-top: -4px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 520px;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Social Proof Counters */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.5s both;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.proof-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.7);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 40px rgba(107, 112, 92, 0.1);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.03);
}

/* Decorative elements around hero image */
.hero-image-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    background: radial-gradient(circle, var(--color-dusty-rose-light) 0%, transparent 70%);
    animation: floatDeco 6s ease-in-out infinite;
}

.hero-deco-2 {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
    background: radial-gradient(circle, var(--color-lavender-light) 0%, transparent 70%);
    animation: floatDeco 7s ease-in-out infinite 1s;
}

.hero-deco-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -25px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    animation: floatDeco 5s ease-in-out infinite 2s;
}

@keyframes floatDeco {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -8px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-sage);
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ============================================
   LIVE ACTIVITY BANNER
   ============================================ */

.live-banner {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 2;
}

.live-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.88rem;
}

.live-dot-wrapper {
    position: relative;
    width: 10px;
    height: 10px;
}

.live-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #7ec87e;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.live-dot-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #7ec87e;
    border-radius: 50%;
    animation: pingDot 1.5s ease-out infinite;
}

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

.live-text {
    opacity: 0.9;
}

.live-text strong {
    color: var(--color-cream);
    font-weight: 700;
}

.live-separator {
    opacity: 0.3;
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-accent-light);
    vertical-align: middle;
    margin: 0 var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background:
        radial-gradient(ellipse 600px 400px at 10% 30%, rgba(203, 153, 126, 0.05), transparent),
        radial-gradient(ellipse 500px 500px at 90% 70%, rgba(201, 177, 208, 0.05), transparent),
        var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Wavy top border for feature cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-sage-light), var(--color-lavender-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--color-parchment);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--color-cream);
    transform: scale(1.08);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-parchment);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   SCREENSHOTS / GALLERY SECTION
   ============================================ */

.screenshots-section {
    padding: var(--space-5xl) 0;
    background:
        linear-gradient(180deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    position: relative;
}

/* Scalloped top edge */
.screenshots-section::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 13px;
    background: radial-gradient(circle 6.5px at 6.5px 13px, transparent 6px, var(--color-secondary-dark) 6.5px);
    background-size: 13px 13px;
}

.screenshots-carousel {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.screenshot-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--color-white);
    position: relative;
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    text-align: center;
    margin-top: var(--space-lg);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--color-accent-light);
}

/* ============================================
   SIGNUP / LEAD FORM SECTION
   ============================================ */

.signup-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--color-linen) 0%,
            var(--color-cream) 50%,
            var(--color-secondary) 100%
        );
}

.signup-botanical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        /* Large leaf */
        radial-gradient(ellipse 40px 70px at 5% 30%, var(--color-primary) 40%, transparent 41%),
        radial-gradient(ellipse 35px 60px at 95% 60%, var(--color-sage) 40%, transparent 41%),
        /* Small flowers */
        radial-gradient(circle 8px at 15% 80%, var(--color-dusty-rose) 50%, transparent 51%),
        radial-gradient(circle 6px at 88% 20%, var(--color-lavender) 50%, transparent 51%),
        /* Dots pattern */
        radial-gradient(circle 2px at 30% 15%, var(--color-accent) 50%, transparent 51%),
        radial-gradient(circle 2px at 70% 85%, var(--color-sage) 50%, transparent 51%),
        radial-gradient(circle 1.5px at 50% 50%, var(--color-dusty-rose) 50%, transparent 51%);
    background-size: 100% 100%;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (min-width: 960px) {
    .signup-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
        align-items: center;
    }
}

.signup-title {
    text-align: left;
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.benefit-item svg {
    flex-shrink: 0;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    padding: var(--space-md);
    background: rgba(107, 112, 92, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 112, 92, 0.1);
}

.signup-trust svg {
    flex-shrink: 0;
}

/* Form Wrapper */
.signup-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.signup-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--color-accent) 0%,
        var(--color-dusty-rose) 33%,
        var(--color-lavender) 66%,
        var(--color-sage) 100%
    );
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.optional-tag {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-sage);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-parchment);
    transition: all var(--transition-base);
}

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

.form-input:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(203, 153, 126, 0.15);
    outline: none;
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: var(--color-accent);
}

/* Reorder: icon is before input in DOM, so use sibling differently */
.input-wrap:focus-within .input-icon {
    color: var(--color-accent);
}

.form-input.error {
    border-color: var(--color-error);
    background: #fef5f5;
}

.form-input.error:focus {
    box-shadow: 0 0 0 4px rgba(193, 102, 107, 0.15);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 4px;
    min-height: 0;
    transition: all var(--transition-fast);
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform var(--transition-fast);
    margin-top: -2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.checkbox-text a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

/* Submit button loading */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.signup-success {
    text-align: center;
    padding: var(--space-2xl);
    animation: fadeInUp 0.5s ease;
}

.success-icon-wrap {
    margin-bottom: var(--space-lg);
}

.success-icon-wrap svg {
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.signup-success p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */

.responsible-section {
    padding: var(--space-3xl) 0;
    background: var(--color-secondary);
}

.responsible-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border-light);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.responsible-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-parchment);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsible-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.responsible-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse 500px 400px at 80% 20%, rgba(201, 177, 208, 0.06), transparent),
        radial-gradient(ellipse 400px 300px at 20% 80%, rgba(203, 153, 126, 0.06), transparent),
        var(--color-secondary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(15px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item:hover {
    border-color: var(--color-accent-light);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    background: transparent;
    border: none;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-sage);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-xl);
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--space-5xl) 0;
    background: var(--color-secondary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.contact-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    background: rgba(203, 153, 126, 0.1);
    transition: all var(--transition-base);
}

.contact-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   TRUST & SECURITY SECTION
   ============================================ */

.trust-section {
    padding: var(--space-5xl) 0;
    background: var(--color-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(15px);
}

.trust-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-md);
}

.trust-item svg {
    margin-bottom: var(--space-md);
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer-botanical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(ellipse 30px 50px at 10% 30%, var(--color-white) 40%, transparent 41%),
        radial-gradient(ellipse 25px 40px at 90% 60%, var(--color-white) 40%, transparent 41%),
        radial-gradient(circle 4px at 30% 80%, var(--color-white) 50%, transparent 51%),
        radial-gradient(circle 3px at 70% 20%, var(--color-white) 50%, transparent 51%);
    background-size: 100% 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand-desc {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.65;
    max-width: 340px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--color-cream);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    text-align: center;
}

.footer-copyright {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: var(--space-xs);
}

.footer-address {
    font-size: 0.8rem;
    opacity: 0.55;
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.45;
    max-width: 600px;
    margin: 0 auto var(--space-md);
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background:
        linear-gradient(135deg,
            var(--color-secondary) 0%,
            var(--color-cream) 50%,
            var(--color-linen) 100%
        );
    text-align: center;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.legal-hero-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-style: italic;
}

.legal-section {
    padding: var(--space-4xl) 0;
    background: var(--color-secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border-light);
}

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

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.legal-content li strong {
    color: var(--color-text);
}

.legal-content a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-primary);
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--color-border-light);
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

@media (min-width: 640px) {
    .gdpr-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gdpr-right-card {
    background: var(--color-parchment);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--color-border-light);
    border-left: 3px solid var(--color-accent);
    transition: all var(--transition-base);
}

.gdpr-right-card:hover {
    box-shadow: var(--shadow-sm);
    border-left-color: var(--color-primary);
}

.gdpr-right-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.gdpr-right-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 639px) {
    .hero-social-proof {
        gap: var(--space-md);
    }

    .proof-divider {
        height: 24px;
    }

    .proof-number {
        font-size: 1.3rem;
    }

    .responsible-card {
        flex-direction: column;
        text-align: center;
    }

    .legal-content {
        padding: var(--space-xl);
    }

    .signup-form-wrap {
        padding: var(--space-xl);
    }

    .cookie-inner {
        padding: var(--space-md);
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 959px) {
    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .section-header .section-tag {
        text-align: center;
    }

    .signup-info .section-tag,
    .signup-title {
        text-align: center;
    }

    .signup-desc {
        text-align: center;
    }

    .signup-benefits {
        align-items: center;
    }

    .signup-trust {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .cookie-banner,
    .age-gate-overlay,
    .back-to-top,
    .mobile-nav-overlay,
    .hero-botanical-overlay,
    .hero-particles,
    .hero-scroll-indicator,
    .live-banner {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
```

Now the JavaScript file:

```js