/* ===========================
   CSS VARIABLES & RESET
   =========================== */

:root {
    --primary: #6b705c;
    --primary-dark: #555948;
    --primary-light: #8a8f7a;
    --secondary: #fff8f0;
    --secondary-dark: #f5ede3;
    --accent: #cb997e;
    --accent-dark: #b08068;
    --accent-light: #ddb892;
    --cream: #fffcf7;
    --dusty-rose: #d4a5a5;
    --lavender: #c9b8d9;
    --sage: #a5a58d;
    --sage-light: #b7b7a4;
    --warm-brown: #6c584c;
    --text-dark: #3d3d3d;
    --text-body: #4a4a4a;
    --text-muted: #7a7a6c;
    --text-light: #9a9a8c;
    --border-color: #e8e0d4;
    --shadow-warm: rgba(107, 112, 92, 0.12);
    --shadow-accent: rgba(203, 153, 126, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Lora', serif;
    --font-body: 'Crimson Pro', serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--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 width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b705c' fill-opacity='1'%3E%3Ccircle cx='1' cy='1' r='0.5'/%3E%3Ccircle cx='21' cy='1' r='0.5'/%3E%3Ccircle cx='11' cy='11' r='0.5'/%3E%3Ccircle cx='31' cy='11' r='0.5'/%3E%3Ccircle cx='1' cy='21' r='0.5'/%3E%3Ccircle cx='21' cy='21' r='0.5'/%3E%3Ccircle cx='11' cy='31' r='0.5'/%3E%3Ccircle cx='31' cy='31' r='0.5'/%3E%3C/g%3E%3C/svg%3E");
}

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

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

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

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

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

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--cream);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -8px 32px rgba(107, 112, 92, 0.15);
    padding: 20px 24px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent.hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-body);
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--secondary);
}

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

.btn-cookie-reject {
    background: var(--secondary-dark);
    color: var(--text-body);
    border: 1px solid var(--border-color);
}

.btn-cookie-reject:hover {
    background: var(--border-color);
}

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

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

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

.cookie-setting-row {
    margin-bottom: 10px;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ===========================
   AGE VERIFICATION MODAL
   =========================== */

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.age-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 56, 48, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.age-modal-content {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--border-color);
    animation: modalAppear 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-modal-floral-top {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--dusty-rose), var(--accent), transparent);
    border-radius: 0 0 50% 50%;
}

.age-icon-wrap {
    margin-bottom: 16px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.age-modal-content p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.6;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

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

.btn-age-yes {
    background: var(--primary);
    color: var(--secondary);
}

.btn-age-yes:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--shadow-warm);
}

.btn-age-no {
    background: var(--secondary-dark);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

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

.age-note {
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--header-height);
    background: rgba(255, 252, 247, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 224, 212, 0.6);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px var(--shadow-warm);
    background: rgba(255, 252, 247, 0.95);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.logo:hover .logo-text {
    color: var(--accent-dark);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    background: var(--primary);
    color: var(--secondary) !important;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    font-weight: 600;
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--secondary) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-warm);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 24px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--secondary) 40%, #f0ebe3 70%, var(--secondary-dark) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 C35 20, 20 25, 15 35 C10 45, 15 55, 25 55 C30 55, 35 50, 40 45 C45 50, 50 55, 55 55 C65 55, 70 45, 65 35 C60 25, 45 20, 40 10Z' fill='%236b705c' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(203, 153, 126, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(201, 184, 217, 0.06) 0%, transparent 50%);
    z-index: 0;
}

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

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

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.2);
    }
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(107, 112, 92, 0.08);
    border: 1px solid rgba(107, 112, 92, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}

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

.hero-title {
    margin-bottom: 20px;
}

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

.hero-title-line-1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.4s;
    letter-spacing: -1px;
}

.hero-title-line-2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--accent-dark);
    margin-top: 8px;
    font-style: italic;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.55s;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.7s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.85s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 16px var(--shadow-warm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--shadow-warm);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(107, 112, 92, 0.06);
    color: var(--primary);
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(107, 112, 92, 0.12);
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 1s;
}

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

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

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Image */
.hero-image-wrap {
    position: absolute;
    right: -60px;
    bottom: 10%;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
}

.hero-image-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(203, 153, 126, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.75rem;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   SOCIAL PROOF TICKER
   =========================== */

.social-proof-ticker {
    background: var(--primary);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker-inner {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ticker-item strong {
    font-weight: 600;
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-ornament {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    padding: 100px 0;
    position: relative;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-warm);
    margin-bottom: 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--dusty-rose), var(--lavender));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-accent);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.about-card p {
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.75;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* About Images */
.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-warm);
    border: 3px solid var(--secondary);
    position: absolute;
    transition: all var(--transition-slow);
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-frame-1 {
    width: 85%;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-frame-2 {
    width: 75%;
    height: 260px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-img-frame:hover {
    z-index: 3;
    transform: scale(1.03);
    box-shadow: 0 16px 48px var(--shadow-accent);
}

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

.gallery-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item-large .gallery-frame {
    min-height: 460px;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-frame:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(transparent, rgba(59, 56, 48, 0.7));
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-frame:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px var(--shadow-accent);
}

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

.features-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C28 12, 20 15, 15 20 C10 25, 12 35, 20 38 C25 40, 28 35, 30 30 C32 35, 35 40, 40 38 C48 35, 50 25, 45 20 C40 15, 32 12, 30 5Z' fill='none' stroke='%23cb997e' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

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

.feature-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-warm);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--accent), var(--dusty-rose));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow-accent);
    border-color: var(--accent-light);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 112, 92, 0.06);
    border-radius: 50%;
    border: 1px solid rgba(107, 112, 92, 0.1);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(203, 153, 126, 0.1);
    border-color: rgba(203, 153, 126, 0.2);
    transform: scale(1.08);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-warm);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-accent);
}

.testimonial-quote {
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

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

.faq-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

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

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--secondary);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.open {
    box-shadow: 0 4px 20px var(--shadow-warm);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition-fast);
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

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

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

/* ===========================
   SIGNUP SECTION
   =========================== */

.signup-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.signup-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    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%3Ccircle cx='50' cy='50' r='2' fill='%236b705c'/%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23cb997e'/%3E%3Ccircle cx='90' cy='10' r='1.5' fill='%23cb997e'/%3E%3Ccircle cx='10' cy='90' r='1.5' fill='%23cb997e'/%3E%3Ccircle cx='90' cy='90' r='1.5' fill='%23cb997e'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.signup-info {
    padding-top: 20px;
}

.signup-description {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
    margin-top: 12px;
}

.signup-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-body);
    border-bottom: 1px solid rgba(232, 224, 212, 0.5);
}

.signup-benefits li:last-child {
    border-bottom: none;
}

.signup-live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(107, 112, 92, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 112, 92, 0.1);
    font-size: 0.9rem;
    color: var(--text-body);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5cb85c;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Signup Form */
.signup-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 8px 40px var(--shadow-warm);
    position: relative;
}

.signup-form-wrap::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--dusty-rose), var(--lavender), var(--sage));
    border-radius: 0 0 4px 4px;
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--secondary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(203, 153, 126, 0.15);
    background: #fff;
}

.form-group input.error {
    border-color: #b5575b;
    box-shadow: 0 0 0 3px rgba(181, 87, 91, 0.1);
}

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

.form-error {
    display: block;
    font-size: 0.82rem;
    color: #b5575b;
    margin-top: 4px;
    min-height: 0;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

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

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

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid var(--secondary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label input:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(203, 153, 126, 0.25);
}

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

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 8px;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

/* Form Messages */
.form-message {
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-success {
    background: rgba(107, 112, 92, 0.08);
    border: 1px solid rgba(107, 112, 92, 0.2);
}

.form-success p {
    color: var(--primary);
    font-size: 0.95rem;
}

.form-error-msg {
    background: rgba(181, 87, 91, 0.06);
    border: 1px solid rgba(181, 87, 91, 0.15);
}

.form-error-msg p {
    color: #8a3a3e;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
}

/* ===========================
   TRUST SECTION
   =========================== */

.trust-section {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--shadow-warm);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 112, 92, 0.06);
    border-radius: 50%;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-card a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23fff8f0'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.5);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.footer-sep {
    color: rgba(255, 248, 240, 0.2);
    font-size: 0.82rem;
}

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

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--shadow-warm);
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition-base);
    z-index: 8000;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-warm);
}

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

.legal-page {
    padding-top: var(--header-height);
}

.legal-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--secondary-dark) 100%);
    padding: 64px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 C35 20, 20 25, 15 35 C10 45, 15 55, 25 55 C30 55, 35 50, 40 45 C45 50, 50 55, 55 55 C65 55, 70 45, 65 35 C60 25, 45 20, 40 10Z' fill='%236b705c'/%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
}

.legal-hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
}

.legal-content {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin: -24px auto 80px;
    max-width: 860px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 40px var(--shadow-warm);
    position: relative;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(232, 224, 212, 0.5);
}

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

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 6px;
}

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

.legal-footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

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

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

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-stack {
        height: 400px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .signup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-large .gallery-frame {
        min-height: 300px;
    }

    .hero-image-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 252, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 9998;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 60px) 20px 80px;
    }

    .hero-title-line-1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item-large .gallery-frame {
        min-height: 240px;
    }

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

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

    .legal-content {
        padding: 32px 24px;
        margin: -16px 16px 60px;
        border-radius: var(--radius-lg);
    }

    .signup-form-wrap {
        padding: 28px 20px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }

    .age-modal-content {
        padding: 36px 24px 28px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .about-section,
    .gallery-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .signup-section,
    .trust-section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title-line-1 {
        font-size: 2.2rem;
    }

    .hero-title-line-2 {
        font-size: 1rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .age-modal-buttons {
        gap: 8px;
    }

    .about-image-stack {
        height: 340px;
    }

    .about-img-frame-1 {
        width: 90%;
        height: 200px;
    }

    .about-img-frame-2 {
        width: 80%;
        height: 180px;
    }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

@media print {
    .site-header,
    .cookie-consent,
    .age-modal,
    .back-to-top,
    .social-proof-ticker,
    .hero-particles {
        display: none !important;
    }

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

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