/* ========================================
   Giulia Rosso — Dark Elegant Theme v2
   Multi-page + SEO optimized
   ======================================== */

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #1a1a1a;
    --color-surface-hover: #222222;
    --color-text: #d0d0d0;
    --color-text-muted: #777777;
    --color-accent: #c41e3a;
    --color-accent-light: #e63956;
    --color-accent-dark: #8b1528;
    --color-gold: #d4a853;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.container--narrow { max-width: 800px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-3 { margin-top: 3rem; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--color-text); }

/* ===== Age Gate ===== */
.age-gate { position: fixed; inset: 0; z-index: 10000; background: var(--color-bg); display: flex; align-items: center; justify-content: center; opacity: 1; transition: opacity 0.5s ease; }
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate__content { text-align: center; padding: 3rem; max-width: 480px; }
.age-gate__title { font-family: var(--font-heading); font-size: 3rem; color: var(--color-white); margin-bottom: 1rem; letter-spacing: 2px; }
.age-gate__title span { color: var(--color-accent); }
.age-gate__divider { width: 60px; height: 2px; background: var(--color-accent); margin: 0 auto 1.5rem; }
.age-gate__text { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.age-gate__question { font-size: 1.25rem; color: var(--color-white); margin-bottom: 2rem; font-weight: 500; }
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; }
.age-gate__legal { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 1.5rem; }
.age-gate__legal a { color: var(--color-accent); }

/* ===== Buttons ===== */
.btn { display: inline-block; padding: 0.85rem 2.5rem; border: 2px solid var(--color-accent); border-radius: 0; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all var(--transition); min-width: 44px; min-height: 44px; text-align: center; }
.btn--primary { background: var(--color-accent); color: var(--color-white); }
.btn--primary:hover { background: var(--color-accent-light); border-color: var(--color-accent-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--color-text-muted); border-color: var(--color-text-muted); }
.btn--outline:hover { border-color: var(--color-white); color: var(--color-white); }
.btn--full { width: 100%; }
.btn--sm { padding: 0.6rem 1.5rem; font-size: 0.75rem; }
.btn--lg { padding: 1.1rem 3rem; font-size: 0.95rem; }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0; transition: all var(--transition); background: transparent; }
.navbar.scrolled, .navbar--solid { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); padding: 0.75rem 0; border-bottom: 1px solid rgba(196, 30, 58, 0.15); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-white); letter-spacing: 1px; }
.navbar__logo span { color: var(--color-accent); }
.navbar__menu { display: flex; list-style: none; gap: 2rem; }
.navbar__menu a { font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-text-muted); transition: color var(--transition); position: relative; }
.navbar__menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent); transition: width var(--transition); }
.navbar__menu a:hover, .navbar__menu a.active { color: var(--color-white); }
.navbar__menu a.active::after, .navbar__menu a:hover::after { width: 100%; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--color-white); transition: all var(--transition); }
.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero (Homepage) ===== */
.hero { position: relative; height: 100vh; min-height: 650px; display: flex; align-items: center; justify-content: center; background: url('assets/gallery/02-black-lingerie.jpg') center center / cover no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.82) 100%); }
.hero__content { position: relative; z-index: 1; text-align: center; }
.hero__subtitle { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: var(--color-gold); margin-bottom: 1rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.3s; }
.hero__title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: var(--color-white); letter-spacing: 4px; line-height: 1.1; margin-bottom: 1rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.6s; }
.hero__title span { color: var(--color-accent); }
.hero__tagline { font-size: 1.05rem; font-weight: 300; letter-spacing: 2px; color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.9s; }
.hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 1.2s; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; opacity: 0; animation: fadeUp 0.8s ease forwards 1.5s; }
.hero__scroll span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--color-text-muted); }
.hero__scroll-line { width: 1px; height: 40px; background: var(--color-accent); margin: 0.5rem auto 0; animation: scrollLine 2s ease infinite; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== Page Hero (Subpages) ===== */
.page-hero { position: relative; height: 50vh; min-height: 350px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.75); }
.page-hero__content { position: relative; z-index: 1; text-align: center; }
.page-hero__content h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4rem); color: var(--color-white); letter-spacing: 3px; margin-bottom: 0.5rem; }
.page-hero__content h1 span { color: var(--color-accent); }
.page-hero__content p { color: var(--color-text-muted); font-size: 1.1rem; letter-spacing: 1px; }

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section--dark { background: var(--color-bg-alt); }
.section__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--color-white); text-align: center; margin-bottom: 1rem; letter-spacing: 2px; }
.section__title span { color: var(--color-accent); }
.section__subtitle { text-align: center; color: var(--color-text-muted); max-width: 600px; margin: 0 auto 3rem; font-size: 0.95rem; }
.section__intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; font-size: 1rem; color: var(--color-text); line-height: 1.8; }

/* ===== Intro (Homepage) ===== */
.intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.intro__lead { font-size: 1.2rem; margin-bottom: 1rem; color: var(--color-text); line-height: 1.8; }
.intro__text p { margin-bottom: 1.5rem; font-weight: 300; line-height: 1.8; }
.intro__text .btn { margin-top: 1rem; }
.intro__image { overflow: hidden; position: relative; }
.intro__image img { width: 100%; height: 550px; object-fit: cover; transition: transform 0.6s ease; }
.intro__image:hover img { transform: scale(1.03); }

/* ===== Gallery Grid (Homepage) ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-grid__item { overflow: hidden; position: relative; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }
.gallery-grid--home .gallery-grid__item { min-height: 200px; }
.gallery-grid--home .gallery-grid__item--tall { min-height: 416px; }

/* ===== Gallery Full (Gallery Page) ===== */
.gallery-filters { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.gallery-filter { background: transparent; border: 1px solid var(--color-text-muted); color: var(--color-text-muted); padding: 0.6rem 1.5rem; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all var(--transition); min-height: 44px; }
.gallery-filter:hover, .gallery-filter.active { border-color: var(--color-accent); color: var(--color-accent); background: rgba(196, 30, 58, 0.08); }
.gallery-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-full__item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.gallery-full__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-full__item:hover img { transform: scale(1.1); }
.gallery-full__item.hidden { display: none; }
.gallery__overlay { position: absolute; inset: 0; background: rgba(196, 30, 58, 0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.gallery__overlay span { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); letter-spacing: 3px; text-transform: uppercase; border: 1px solid var(--color-white); padding: 0.4rem 1.2rem; }
.gallery-full__item:hover .gallery__overlay { opacity: 1; }
.gallery-more { margin-top: 4rem; }
.gallery-more__box { background: var(--color-surface); border: 1px solid rgba(196, 30, 58, 0.2); padding: 3rem; text-align: center; }
.gallery-more__box h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 1rem; }
.gallery-more__box p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox__img { max-width: 85%; max-height: 85vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: none; border: none; color: var(--color-white); cursor: pointer; font-size: 2rem; padding: 1rem; min-width: 44px; min-height: 44px; transition: color var(--transition); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { color: var(--color-accent); }
.lightbox__close { top: 1rem; right: 1rem; font-size: 2.5rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card { background: var(--color-surface); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 1.5rem; text-align: center; transition: all var(--transition); }
.service-card:hover { border-color: var(--color-accent); transform: translateY(-5px); }
.service-card__icon { color: var(--color-accent); margin-bottom: 1.5rem; display: flex; justify-content: center; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-white); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

/* ===== Video Grid ===== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.video-grid--full { grid-template-columns: repeat(2, 1fr); }
.video-card { background: var(--color-surface); overflow: hidden; transition: transform var(--transition); }
.video-card:hover { transform: translateY(-5px); }
.video-card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); color: var(--color-white); opacity: 0.8; transition: opacity var(--transition); }
.video-card:hover .video-card__play { opacity: 1; }
.video-card__duration { position: absolute; bottom: 0.5rem; right: 0.5rem; background: rgba(0,0,0,0.8); color: var(--color-white); padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 600; }
.video-card__badge { position: absolute; top: 0.5rem; left: 0.5rem; background: var(--color-accent); color: var(--color-white); padding: 0.2rem 0.8rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.video-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); padding: 1.25rem 1.25rem 0.5rem; }
.video-card p { font-size: 0.85rem; color: var(--color-text-muted); padding: 0 1.25rem 1.25rem; line-height: 1.5; }
.video-card .btn { margin: 0 1.25rem 1.25rem; }
.video-card--large h3 { font-size: 1.3rem; }
.video-card__player { position: relative; overflow: hidden; aspect-ratio: 9/16; max-height: 500px; background: #000; }
.video-card__player video { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ===== Platforms ===== */
.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.platform-card { background: var(--color-surface); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 1.5rem; text-align: center; transition: all var(--transition); display: block; position: relative; overflow: hidden; }
.platform-card:hover { border-color: var(--color-accent); transform: translateY(-5px); background: rgba(196, 30, 58, 0.05); }
.platform-card__badge { position: absolute; top: 0; left: 0; right: 0; background: var(--color-accent); color: var(--color-white); font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 0.3rem; }
.platform-card__name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-white); margin-bottom: 0.75rem; }
.platform-card__desc { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.platform-card__cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item summary { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); padding: 1.25rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color var(--transition); }
.faq-item summary:hover { color: var(--color-accent); }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.25rem; color: var(--color-text-muted); line-height: 1.7; font-size: 0.95rem; }
.faq-item a { color: var(--color-accent); }

/* ===== Blog Grid (Homepage preview) ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--color-surface); overflow: hidden; transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-5px); }
.blog-card__image { overflow: hidden; aspect-ratio: 16/10; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: 0.75rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 2px; }
.blog-card__body h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); margin: 0.5rem 0; line-height: 1.4; }
.blog-card__body h3 a { transition: color var(--transition); }
.blog-card__body h3 a:hover { color: var(--color-accent); }
.blog-card__body p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.5; }

/* ===== Blog Post (Blog Page) ===== */
.blog-post { margin-bottom: 3rem; }
.blog-post__date { font-size: 0.75rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 0.5rem; }
.blog-post h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--color-white); margin-bottom: 1.5rem; line-height: 1.3; }
.blog-post h2 span { color: var(--color-accent); }
.blog-post h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-white); margin: 2rem 0 0.75rem; }
.blog-post img { width: 100%; margin-bottom: 1.5rem; aspect-ratio: 16/9; object-fit: cover; }
.blog-post p { margin-bottom: 1rem; line-height: 1.8; font-weight: 300; }
.blog-post a { color: var(--color-accent); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.blog-post a:hover { border-color: var(--color-accent); }
.blog-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 4rem 0; }

/* ===== Telegram CTA Box ===== */
.telegram-cta-box { background: var(--color-surface); border: 1px solid rgba(196, 30, 58, 0.25); padding: 3.5rem; text-align: center; }
.telegram-cta-box__icon { color: var(--color-accent); margin-bottom: 1.5rem; display: flex; justify-content: center; }
.telegram-cta-box h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-white); margin-bottom: 1rem; }
.telegram-cta-box p { color: var(--color-text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%); padding: 5rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--color-white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn { background: var(--color-white); color: var(--color-accent); border-color: var(--color-white); }
.cta-banner .btn:hover { background: transparent; color: var(--color-white); }

/* ===== About Full (Chi Sono page) ===== */
.about-full__intro { text-align: center; margin-bottom: 3rem; }
.about-full__intro h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--color-white); margin-bottom: 1.5rem; }
.about-full__intro h2 span { color: var(--color-accent); }
.about-full__section { margin-bottom: 2.5rem; }
.about-full__section h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 1rem; }
.about-full__section p { margin-bottom: 1rem; font-weight: 300; line-height: 1.8; }
.about-full__list { list-style: none; margin: 1rem 0; }
.about-full__list li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; color: var(--color-text); }
.about-full__list li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 8px; height: 8px; background: var(--color-accent); }
.about-full__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.about-full__gallery img { width: 100%; height: 350px; object-fit: cover; }
.about-full__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 3rem 0; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-big { text-align: center; }
.stat-big__number { display: block; font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-accent); font-weight: 700; }
.stat-big__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-muted); }
.about-full__cta { text-align: center; margin-top: 3rem; padding: 3rem; background: var(--color-surface); border: 1px solid rgba(196, 30, 58, 0.2); }
.about-full__cta h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 0.75rem; }
.about-full__cta p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.about-full__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Linktree Page ===== */
.linktree-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem 2rem; background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }
.linktree { max-width: 480px; width: 100%; }
.linktree__header { text-align: center; margin-bottom: 2.5rem; }
.linktree__avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; border: 3px solid var(--color-accent); }
.linktree__header h1 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-white); }
.linktree__header h1 span { color: var(--color-accent); }
.linktree__header p { color: var(--color-text-muted); margin-top: 0.25rem; font-size: 0.9rem; }
.linktree__links { display: flex; flex-direction: column; gap: 0.75rem; }
.linktree__link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--color-surface); border: 1px solid rgba(255,255,255,0.06); transition: all var(--transition); text-align: left; }
.linktree__link:hover { border-color: var(--color-accent); transform: translateX(5px); background: rgba(196, 30, 58, 0.05); }
.linktree__link--featured { border-color: var(--color-accent); background: rgba(196, 30, 58, 0.08); }
.linktree__link-icon { font-size: 1.2rem; min-width: 24px; text-align: center; }
.linktree__link-text { flex: 1; }
.linktree__link-text strong { display: block; color: var(--color-white); font-size: 0.95rem; }
.linktree__link-text small { color: var(--color-text-muted); font-size: 0.78rem; }
.linktree__link-arrow { color: var(--color-accent); font-size: 1.2rem; }
.linktree__footer { text-align: center; margin-top: 2rem; font-size: 0.75rem; color: var(--color-text-muted); }

/* ===== Contact Page ===== */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-page__info h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-white); margin-bottom: 1rem; text-align: left; }
.contact-page__info h2 span { color: var(--color-accent); }
.contact-page__info > p { margin-bottom: 2rem; font-weight: 300; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-method { padding: 1.5rem; background: var(--color-surface); border-left: 3px solid var(--color-accent); }
.contact-method h3 { font-family: var(--font-heading); color: var(--color-white); margin-bottom: 0.5rem; }
.contact-method p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.contact-method__email { color: var(--color-accent); font-weight: 500; }
.contact-note { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08); }
.contact-note h3 { font-family: var(--font-heading); color: var(--color-white); margin-bottom: 0.5rem; font-size: 1rem; }
.contact-note p { font-size: 0.85rem; color: var(--color-text-muted); }
.contact-page__form h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem; background: var(--color-surface); border: 1px solid rgba(255,255,255,0.1); color: var(--color-white); font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--color-surface); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
.footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 0.75rem; }
.footer__logo span { color: var(--color-accent); }
.footer__bio { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
.footer__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-white); margin-bottom: 1rem; }
.footer__col nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col nav a { font-size: 0.85rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer__col nav a:hover { color: var(--color-accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; text-align: center; }
.footer__disclaimer { font-size: 0.75rem; color: var(--color-text-muted); max-width: 700px; margin: 0 auto 0.75rem; line-height: 1.6; }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-full { grid-template-columns: repeat(3, 1fr); }
    .services, .platforms { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar__hamburger { display: flex; }
    .navbar__menu { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background: var(--color-bg); flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; transition: right var(--transition); border-left: 1px solid rgba(196, 30, 58, 0.15); z-index: 1001; }
    .navbar__menu.active { right: 0; }
    .navbar__menu a { font-size: 1rem; }
    .intro { grid-template-columns: 1fr; gap: 2rem; }
    .intro__image img { height: 400px; }
    .about-full__gallery { grid-template-columns: 1fr; }
    .about-full__gallery img { height: 280px; }
    .about-full__stats { grid-template-columns: repeat(2, 1fr); }
    .services, .platforms { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .gallery-full { grid-template-columns: repeat(2, 1fr); }
    .video-grid, .video-grid--full { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-page { grid-template-columns: 1fr; gap: 3rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer__col nav { align-items: center; }
    .section { padding: 4rem 0; }
    .gallery-grid__item--tall { grid-row: auto; }
    .gallery-grid__item--wide { grid-column: auto; }
}

@media (max-width: 480px) {
    .age-gate__title { font-size: 2rem; }
    .age-gate__buttons { flex-direction: column; }
    .gallery-full { grid-template-columns: 1fr; }
    .about-full__stats { gap: 1rem; }
    .stat-big__number { font-size: 2rem; }
    .page-hero { min-height: 280px; height: 40vh; }
}
