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

:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --primary-mid: #141414;
    --secondary: #f5f0e0;
    --secondary-dark: #e8e0c8;
    --secondary-light: #faf8f0;
    --accent: #d4af37;
    --accent-light: #e8c94a;
    --accent-dark: #b8942e;
    --accent-glow: rgba(212, 175, 55, 0.15);
    --accent-glow-strong: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --cream: #f5f0e0;
    --text-dark: #1a1a1a;
    --text-light: #f5f0e0;
    --text-muted: #8a8578;
    --text-body: #3d3a33;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Josefin Sans', 'Trebuchet MS', sans-serif;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;

    --header-height: 80px;
    --container-max: 1200px;
    --container-narrow: 900px;
}

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

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

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

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(--accent);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

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

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

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all var(--transition-base);
}

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

.btn-text-gold {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.btn-text-gold:hover {
    color: var(--accent-light);
}

.btn-large {
    padding: 18px 48px;
    font-size: 0.9375rem;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.section-deco-top,
.section-deco-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    gap: 16px;
}

.section-deco-top {
    padding-top: 80px;
    padding-bottom: 20px;
}

.section-deco-bottom {
    padding-top: 20px;
    padding-bottom: 80px;
}

.deco-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.deco-diamond {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.underline-wing {
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.underline-center {
    color: var(--accent);
    font-size: 0.75rem;
}

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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-deco-top {
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.header-deco-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
    color: var(--accent);
}

.logo-deco-left,
.logo-deco-right {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-top {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
}

.logo-bottom {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    transition: all var(--transition-base) !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-bar {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
}

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

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    padding: calc(var(--header-height) + 40px) 24px 60px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            var(--accent) 40px,
            var(--accent) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            var(--accent) 40px,
            var(--accent) 41px
        );
}

.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.03) 5deg,
        transparent 10deg,
        transparent 20deg,
        rgba(212, 175, 55, 0.03) 25deg,
        transparent 30deg,
        transparent 40deg,
        rgba(212, 175, 55, 0.03) 45deg,
        transparent 50deg,
        transparent 60deg,
        rgba(212, 175, 55, 0.03) 65deg,
        transparent 70deg,
        transparent 80deg,
        rgba(212, 175, 55, 0.03) 85deg,
        transparent 90deg
    );
    border-radius: 50%;
    animation: sunburstRotate 120s linear infinite;
}

@keyframes sunburstRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--primary) 80%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.2s forwards;
}

.badge-deco {
    font-size: 0.5rem;
    opacity: 0.6;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    color: var(--secondary);
    line-height: 1.1;
}

.title-line-1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 4px;
}

.title-line-2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(180deg, var(--accent-light), var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

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

.title-divider .divider-line:last-child {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.divider-diamond {
    color: var(--accent);
    font-size: 0.75rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(245, 240, 224, 0.7);
    max-width: 600px;
    margin: 24px auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.5);
    margin-top: 4px;
}

.stat-divider {
    color: var(--accent);
    opacity: 0.3;
    font-size: 0.75rem;
}

.hero-image-container {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.scroll-text {
    font-family: var(--font-accent);
    font-size: 0.625rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.4);
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.social-proof-bar {
    background: var(--primary-mid);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 14px 24px;
    text-align: center;
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.4s ease;
}

.proof-icon {
    color: var(--accent);
    font-size: 1rem;
}

.proof-text {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    letter-spacing: 1px;
    color: var(--secondary);
    opacity: 0.8;
}

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

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

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

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

.section-desc {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header-light .section-desc {
    color: rgba(245, 240, 224, 0.6);
}

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

.about-section {
    background: var(--secondary);
}

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

.about-lead {
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-body);
}

.about-features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.mini-icon {
    color: var(--accent);
    font-size: 1rem;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

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

.image-frame-border {
    position: absolute;
    inset: 8px;
    border: 1px solid var(--accent);
    pointer-events: none;
    opacity: 0.4;
}

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

.gallery-section {
    position: relative;
    background: var(--primary);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 30px,
            var(--accent) 30px,
            var(--accent) 31px
        );
}

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

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    font-weight: 300;
}

.gallery-caption {
    display: block;
    padding: 12px 0 4px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.5);
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-light);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--accent);
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.6);
}

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

.features-section {
    background: var(--secondary);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.feature-card:hover::before {
    width: 80px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: rotate(45deg);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-bg {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

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

.testimonials-section {
    position: relative;
    background: var(--primary);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 50px,
            var(--accent) 50px,
            var(--accent) 51px
        );
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: rgba(245, 240, 224, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin: 0 12px;
    box-sizing: border-box;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    line-height: 1.8;
    color: rgba(245, 240, 224, 0.8);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 20px;
}

.author-name {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
}

.author-location {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: rgba(245, 240, 224, 0.4);
    letter-spacing: 1px;
    margin-top: 2px;
}

.author-rating {
    display: flex;
    gap: 4px;
    color: var(--accent);
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent);
    background: transparent;
    cursor: pointer;
    transform: rotate(45deg);
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--accent);
}

/* Community Stats */
.community-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 48px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.community-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.community-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.5);
    margin-top: 4px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-family: var(--font-accent);
    font-size: 0.625rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    animation: livePulse 2s ease infinite;
}

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

.community-divider {
    color: var(--accent);
    opacity: 0.2;
    font-size: 0.75rem;
}

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

.faq-section {
    background: var(--secondary);
}

.faq-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 300;
    transition: all var(--transition-base);
    transform: rotate(0deg);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.7;
}

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

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

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

.trust-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            var(--accent) 20px,
            var(--accent) 21px
        );
}

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

.trust-card {
    background: rgba(245, 240, 224, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(245, 240, 224, 0.05);
}

.trust-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.9375rem;
    color: rgba(245, 240, 224, 0.6);
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.trust-badge-divider {
    color: var(--accent);
    opacity: 0.3;
    font-size: 0.5rem;
}

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

.contact-section {
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.form-frame {
    position: relative;
    background: var(--white);
    padding: 48px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--accent);
    border-style: solid;
}

.frame-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.frame-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.frame-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

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

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    font-size: 0.6875rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--secondary-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input.error {
    border-color: #c0392b;
}

.form-error {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    color: #c0392b;
    margin-top: 4px;
    min-height: 16px;
}

.form-checkbox {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    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: 1px solid rgba(212, 175, 55, 0.4);
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

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

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

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

.form-success,
.form-error-msg {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.error-icon {
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 16px;
}

.form-success h3,
.form-error-msg h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-success p,
.form-error-msg p {
    color: var(--text-body);
}

/* Contact Info */
.contact-info-card {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 32px;
    margin-bottom: 24px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-detail {
    margin-bottom: 16px;
}

.contact-detail-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 4px;
}

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

.contact-detail a:hover {
    color: var(--accent);
}

.contact-detail address {
    color: var(--text-body);
    line-height: 1.6;
}

.contact-info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

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

.main-footer {
    background: var(--primary);
    color: var(--secondary);
}

.footer-deco-top {
    padding-top: 0;
}

.footer-zigzag {
    height: 20px;
    background:
        linear-gradient(135deg, var(--secondary) 25%, transparent 25%) -10px 0,
        linear-gradient(225deg, var(--secondary) 25%, transparent 25%) -10px 0,
        linear-gradient(315deg, var(--secondary) 25%, transparent 25%),
        linear-gradient(45deg, var(--secondary) 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: var(--primary);
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-deco-left,
.footer-logo .logo-deco-right {
    font-size: 1.25rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(245, 240, 224, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links-col h4 {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

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

.footer-links-col a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 224, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-address {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(245, 240, 224, 0.4);
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0 40px;
}

.footer-bottom-deco {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-bottom-deco .deco-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.footer-bottom-deco .deco-diamond {
    color: var(--accent);
    opacity: 0.3;
    font-size: 0.5rem;
}

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

.footer-bottom-content p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 224, 0.4);
    margin-bottom: 8px;
}

.footer-responsible {
    font-family: var(--font-accent);
    font-size: 0.6875rem !important;
    letter-spacing: 1px;
    color: rgba(245, 240, 224, 0.3) !important;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.footer-legal-links a {
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 240, 224, 0.3);
    transition: color var(--transition-fast);
}

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

.footer-legal-links span {
    color: var(--accent);
    opacity: 0.2;
    font-size: 0.5rem;
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.back-to-top:hover {
    background: var(--accent);
    color: var(--primary);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-inner {
    display: flex;
    align-items: stretch;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cookie-deco-left,
.cookie-deco-right {
    width: 8px;
    flex-shrink: 0;
    background: repeating-linear-gradient(
        0deg,
        var(--accent) 0px,
        var(--accent) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0.3;
}

.cookie-content {
    flex: 1;
    padding: 24px 32px;
}

.cookie-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 0.875rem;
    color: rgba(245, 240, 224, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-settings-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgba(245, 240, 224, 0.7);
}

.cookie-toggle input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

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

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

.legal-hero {
    position: relative;
    background: var(--primary);
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.legal-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            var(--accent) 30px,
            var(--accent) 31px
        );
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.legal-hero p {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    letter-spacing: 2px;
    color: rgba(245, 240, 224, 0.5);
    position: relative;
    z-index: 1;
}

.legal-content {
    background: var(--white);
    padding: 60px;
    margin: -30px auto 60px;
    max-width: var(--container-narrow);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.7;
}

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

.legal-content ul li {
    list-style: none;
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: var(--text-body);
    line-height: 1.6;
}

.legal-content ul li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.5rem;
    top: 7px;
}

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

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

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

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

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 2px solid var(--accent);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        text-align: center;
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center !important;
    }

    .hero {
        padding-top: calc(var(--header-height) + 60px);
    }

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

    .stat-divider {
        display: none;
    }

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

    .about-image {
        order: -1;
    }

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

    .gallery-frame img {
        height: 220px;
    }

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

    .community-stats {
        flex-direction: column;
        gap: 24px;
    }

    .community-divider {
        display: none;
    }

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

    .form-frame {
        padding: 32px 24px;
    }

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

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

    .legal-content {
        padding: 32px 24px;
        margin: -20px 12px 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .testimonial-card {
        padding: 32px 24px;
    }

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

    .hero-actions .btn-large {
        width: 100%;
        max-width: 320px;
    }

    .section-deco-top { padding-top: 50px; }
    .section-deco-bottom { padding-bottom: 50px; }

    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-deco-left,
    .cookie-deco-right {
        display: none;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-badge-divider {
        display: none;
    }
}

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

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

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

    .community-number {
        font-size: 2.25rem;
    }

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

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

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

@media print {
    .main-header,
    .cookie-banner,
    .back-to-top,
    .social-proof-bar,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-sunburst {
        animation: none;
    }
}

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

/* 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: 0;
}
```

Now the JavaScript:

```javascript