/* ============================================
   OHISEE LUXURY EYEWEAR — style.css
   Aesthetic: Dark Editorial Luxury
   Fonts: Cormorant Garamond + Montserrat
============================================ */

/* --- Variables & Reset --- */
:root {
    --brand: #59dfd4;
    --brand-dim: rgba(89, 223, 212, 0.15);
    --black: #0a0a0a;
    --black-mid: #111111;
    --black-soft: #1a1a1a;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --text-light: #e8e4de;
    --text-muted: #888888;
    --text-faint: #444444;
    --gold: #c9a96e;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', Helvetica, Arial, sans-serif;
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* ==========================================
   CUSTOM CURSOR
========================================== */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--brand);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s var(--ease-luxury);
    opacity: 0.6;
}
body.hovering .cursor-ring {
    width: 56px;
    height: 56px;
    opacity: 1;
    background: var(--brand-dim);
}

/* ==========================================
   PRELOADER
========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-text {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 12px;
    display: block;
    margin-bottom: 30px;
}
.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
}
.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--brand);
    animation: preloadFill 1.8s var(--ease-out-expo) forwards;
}
@keyframes preloadFill {
    to { width: 100%; }
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s var(--ease-luxury), padding 0.4s, backdrop-filter 0.5s;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s;
}
.navbar.scrolled .logo-img { height: 46px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 44px;
}
.nav-links a {
    color: var(--white);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0;
    height: 1px;
    background: var(--brand);
    transition: width 0.4s var(--ease-luxury);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--brand); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-cta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    background: var(--brand);
    padding: 10px 26px;
    transition: all 0.3s var(--ease-luxury);
}
.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px;
}
.bar {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

/* ==========================================
   MOBILE OVERLAY
========================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-luxury);
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-links li {
    overflow: hidden;
}
.mobile-links a {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 3px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}
.mobile-links a:hover { color: var(--brand); }
.mobile-footer-text {
    position: absolute;
    bottom: 40px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

/* ==========================================
   HERO
========================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s var(--ease-luxury) 0.4s, transform 8s var(--ease-luxury);
}
.hero-bg.loaded {
    opacity: 0.55;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.6) 100%
    );
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 0 30px;
    max-width: 900px;
}
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 24px;
    display: block;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}
.hero-title span { display: block; }
.hero-title-italic {
    font-style: italic;
    color: var(--text-light);
}
.hero-sub {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 16px 40px;
    background: var(--brand);
    color: var(--black);
    transition: all 0.35s var(--ease-luxury);
    display: inline-block;
}
.btn-hero:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(89, 223, 212, 0.25);
}
.btn-hero-ghost {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.35s var(--ease-luxury);
    display: inline-block;
}
.btn-hero-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Floating stat badges */
.hero-badge {
    position: absolute;
    bottom: 120px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    min-width: 130px;
}
.badge-left { left: 60px; }
.badge-right { right: 60px; align-items: flex-end; }
.badge-number {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.badge-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ==========================================
   REVEAL ANIMATIONS
========================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }
.delay-6 { transition-delay: 0.9s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   TICKER MARQUEE
========================================== */
.ticker-wrap {
    overflow: hidden;
    background: var(--black);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
    width: max-content;
    align-items: center;
}
.ticker-track span {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.ticker-track .sep {
    color: var(--brand);
    font-size: 8px;
    letter-spacing: 0;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   ABOUT US
========================================== */
.about-us {
    padding: 130px 60px;
    background: var(--off-white);
}
.about-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;
}

.about-image-wrap {
    flex: 1;
    position: relative;
}
.about-image-frame {
    position: relative;
    height: 620px;
    overflow: hidden;
}
.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease-luxury);
}
.about-image-frame:hover img { transform: scale(1.04); }
.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--brand);
    z-index: -1;
    transition: all 0.5s;
}
.about-image-wrap:hover .about-img-accent {
    bottom: -28px;
    right: -28px;
}
.about-image-caption {
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-text {
    flex: 1;
}
.section-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
    display: block;
}
.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.about-text h2 em {
    font-style: italic;
    color: var(--text-muted);
}
.accent-line {
    width: 50px;
    height: 2px;
    background: var(--brand);
    margin: 0 0 32px 0;
}
.center-line { margin: 0 auto 50px; }
.about-text p {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text-faint);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 44px;
    max-width: 480px;
}

/* Stats row */
.about-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
}
.stat-plus {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--brand);
    vertical-align: super;
}
.stat-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.15);
}

.btn-outline-dark {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 15px 40px;
    border: 1px solid var(--black);
    color: var(--black);
    transition: all 0.35s var(--ease-luxury);
}
.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ==========================================
   COLLECTIONS
========================================== */
.collections {
    padding: 80px 60px 120px;
    background: var(--off-white);
}
.collections-header {
    text-align: center;
    margin-bottom: 60px;
}
.collections-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Asymmetric editorial grid */
.grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1500px;
    margin: 0 auto;
}
.grid-item {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--black);
    aspect-ratio: 1 / 1.1;
}
.grid-item--large {
    grid-row: 1 / 3;
    aspect-ratio: unset;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 1.4s var(--ease-luxury), opacity 0.5s;
}
.grid-item:hover img {
    transform: scale(1.06);
    opacity: 0.65;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
}
.grid-item:hover .overlay { opacity: 1; }

.overlay-inner {
    color: var(--white);
    transform: translateY(12px);
    transition: transform 0.5s var(--ease-out-expo);
}
.grid-item:hover .overlay-inner { transform: translateY(0); }

.overlay-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand);
    display: block;
    margin-bottom: 6px;
}
.overlay h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}
.overlay-arrow {
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--brand);
    display: block;
    transition: transform 0.4s;
}
.grid-item:hover .overlay-arrow { transform: translateX(6px); }

/* ==========================================
   EXPERIENCE STRIP
========================================== */
.experience-strip {
    background: var(--black);
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.exp-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
}
.exp-icon {
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: 16px;
    display: block;
}
.exp-card h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.exp-card p {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}
.exp-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ==========================================
   FULL BLEED CTA
========================================== */
.cta-full {
    position: relative;
    background: var(--black-mid);
    padding: 140px 60px;
    text-align: center;
    overflow: hidden;
}
.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.cta-content p {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.btn-cta-light {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 18px 52px;
    background: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
    transition: all 0.4s var(--ease-luxury);
}
.btn-cta-light:hover {
    background: var(--brand);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(89, 223, 212, 0.25);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--black);
    color: var(--white);
}
.footer-top {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.footer-brand {
    flex: 1.5;
    min-width: 200px;
}
.footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}
.footer-brand p {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 2;
}
.footer-links-col {
    flex: 1;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-col h5 {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-links-col a {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.footer-links-col a:hover { color: var(--brand); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1100px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .grid-item--large {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16 / 7;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    .about-image-frame { height: 420px; }
    .about-img-accent { display: none; }
    .about-text p { max-width: 100%; }
    .hero-badge { display: none; }
    .exp-divider { display: none; }
    .experience-strip { gap: 0; }
    .exp-card { min-width: 50%; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 24px; }
    .navbar.scrolled { padding: 10px 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-us, .collections { padding: 70px 24px; }
    .experience-strip { padding: 60px 24px; }
    .cta-full { padding: 100px 24px; }
    .footer-top { padding: 60px 24px; gap: 40px; }
    .footer-bottom { padding: 20px 24px; }
    .grid { grid-template-columns: 1fr; }
    .grid-item--large {
        grid-column: 1;
        aspect-ratio: 4 / 3;
    }
    .grid-item { aspect-ratio: 4 / 3; }
    .mobile-links a { font-size: 2.2rem; }
    .hero-title { font-size: 3.5rem; }
    .cta-bg-text { font-size: 5rem; }

    /* Touch devices: always show collection name overlays */
    .grid-item .overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    }
    .grid-item .overlay-inner {
        transform: translateY(0);
    }
    .grid-item img {
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-hero, .btn-hero-ghost { width: 100%; text-align: center; }
    .about-stats { gap: 24px; }
}