:root {
    /* Default Dark Theme */
    --bg-color: #0a0a0a; 
    --text-primary: #F0F0F2;
    --text-secondary: #98989f;
    --accent-gold: #D4AF37;
    --accent-gold-dim: #8B735B;
    --glass-bg: rgba(30, 30, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --nav-bg: rgba(15, 15, 15, 0.85);
    
    --font-sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
    --bg-color: #F5F5F7;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --accent-gold: #B88A24; /* Darker gold for light bg */
    --accent-gold-dim: #997B55;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.5);
    --nav-bg: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    /* Subtle gradient to give depth */
    background-image: radial-gradient(circle at 50% 0%, rgba(200, 200, 200, 0.05) 0%, var(--bg-color) 100%);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    letter-spacing: -0.01em;
    transition: background-color 0.5s ease, color 0.5s ease;
    margin: 0;
    padding: 0;
}

[data-theme="light"] body {
    background-image: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #F5F5F7 100%);
}

/* Subtle Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}


/* Typography refinements */
h1, h2, h3, h4 {
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h1 {
    letter-spacing: -0.04em;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

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

.section-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    opacity: 0.9;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

section {
    width: 100%;
    padding: 160px 0;
    box-sizing: border-box;
}

/* Navbar */
/* Floating Header */
.floating-header {
    position: absolute; /* Not fixed, so it flows with page (or fixed if requested, but "no banner" usually means cleaner top) */
    position: fixed; /* Keeping it accessible but transparent */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    pointer-events: none; /* Let clicks pass through the empty areas */
}

.header-container {
    display: flex;
    justify-content: flex-end; /* Align controls to right since logo is gone */
    align-items: center;
}

.header-controls {
    pointer-events: auto; /* Re-enable clicks for content */
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle */
.control-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: var(--text-primary);
    background: var(--glass-highlight);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    font-family: var(--font-sans);
}

.lang-toggle {
    background: rgba(125, 125, 125, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: var(--glass-highlight);
    border-color: rgba(255,255,255,0.2);
}

.lang-toggle .chevron {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.lang-dropdown.active .lang-toggle .chevron {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 140px;
    background: var(--bg-color); /* Use variable for theme support */
    border: 1px solid var(--glass-border);
    border-radius: 12px; /* Smooth corners */
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); /* Premium shadow */
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-dropdown.active .lang-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.lang-opt {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    text-align: left;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-opt:hover {
    background: var(--glass-highlight);
    color: var(--text-primary);
}

.lang-opt.selected {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Hero Section - Technical Refinement */
.hero {
    min-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    box-sizing: border-box;
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; /* Tighter glow */
    height: 400px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: -1;
    filter: blur(80px); /* Softer blur */
}

/* Premium Brand Pill */
.hero-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 30, 30, 0.4); /* Glassy dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 6px 16px 6px 6px; /* Tighter on left for logo */
    border-radius: 100px;
    margin-bottom: 40px;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: default;
}

[data-theme="light"] .hero-brand-pill {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0,0,0,0.05);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-brand-pill:hover {
    background: rgba(40, 40, 40, 0.5);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-1px);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

[data-theme="light"] .hero-brand-pill:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0,0,0,0.1);
}

.pill-logo-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pill-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pill-divider {
    width: 1px;
    height: 14px;
    background: var(--text-secondary);
    opacity: 0.3;
}

.pill-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 5.5rem; /* Larger, bolder */
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--text-primary) 20%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-note {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: monospace;
    opacity: 0.8;
}

.hero-social-proof {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.ph-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.ph-badge:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.ph-badge img {
    display: block;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px; /* Taller technical buttons */
    padding: 0 40px;
    border-radius: 4px; /* Sharper corners */
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease-out; /* Faster, more precise transition */
    text-transform: uppercase;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color); /* Adaptive text color */
    /* Consistent subtle glow */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); 
}

.btn-primary:hover {
    background: var(--text-primary);
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.15);
}

[data-theme="light"] .btn-secondary {
    border-color: rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Features Section - Technical Grid (Matching Privacy) */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px; /* The border line */
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    margin-top: 48px;
}

.tech-card {
    background: var(--bg-color); /* Fallback */
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(125,125,125,0.05) 100%);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligned for technical feel */
    text-align: left;
    transition: background 0.3s ease;
    position: relative;
    /* Subtle inner highlight on top */
    box-shadow: inset 0 1px 0 var(--glass-border); 
}

.tech-card:hover {
    background: var(--glass-bg);
}

/* Add corner markers for technical feel on hover */
.tech-card::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--accent-gold);
    border-right: 1px solid var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover::after {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 32px;
    color: var(--text-primary); /* White icons now, cleaner */
    opacity: 0.9;
}

.tech-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}

.tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 90%;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(180deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loop-features {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
}

.loop-item {
    text-align: left;
    max-width: 280px;
}

.loop-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Privacy */
blockquote {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-style: normal; /* Less "old web" italic */
    font-family: "New York", "Times New Roman", serif; /* Elegant serif accent */
    border-left: none;
    padding-left: 0;
    margin: 40px 0;
}

.privacy-content {
    align-items: start;
}

/* Privacy Section Redesign */
.privacy-section {
    background: transparent; /* Changed from #080808 to blend with body */
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.privacy-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.privacy-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Gap for border effect */
    background: var(--glass-border); /* Creates the borders between items */
    border: 1px solid var(--glass-border);
    border-radius: 1px; /* Sharp technical look */
}

.privacy-card {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(125,125,125,0.05) 100%); /* Match tech-card */
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.3s ease;
}

.privacy-card:hover {
    background: var(--glass-bg); /* Match tech-card hover */
}

.privacy-icon-small {
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.privacy-card h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.privacy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-statement {
    text-align: center;
    margin-top: 80px;
    font-family: "New York", "Times New Roman", serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    opacity: 0.6;
    font-style: italic;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(180deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: monospace;
    opacity: 0.8;
}


.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-with-icon svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

/* Footer - Minimal & Centered */
footer {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    box-sizing: border-box;
}

.footer-main {
    margin-bottom: 40px;
}

.footer-ph-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-ph-link:hover {
    border-color: #FF6154;
    background: rgba(255, 97, 84, 0.08);
    transform: translateY(-2px);
}

.footer-ph-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-ph-logo {
    flex-shrink: 0;
}

.footer-ph-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.footer-x svg {
    opacity: 0.8;
}

.footer-dot {
    color: var(--text-secondary);
    opacity: 0.3;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .hero-sub {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .hero-brand-pill {
        margin-bottom: 20px;
        padding: 5px 12px 5px 5px;
        gap: 8px;
    }

    .pill-logo-wrapper {
        width: 28px;
        height: 28px;
    }

    .pill-name {
        font-size: 0.9rem;
    }

    .pill-badge {
        font-size: 0.65rem;
    }

    .hero-note {
        font-size: 0.7rem;
        text-align: center;
    }

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

    .hero-social-proof {
        margin-top: 20px;
    }

    .ph-badge img {
        width: 200px;
        height: auto;
    }

    /* Features Mobile */
    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        padding: 32px 20px;
    }

    .nav-links {
        display: none;
    }

    .loop-features {
        flex-direction: column;
        gap: 40px;
    }

    .privacy-content {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 60px 0;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-sub {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0 24px;
        height: 46px;
        font-size: 0.8rem;
    }

    .btn-with-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Footer Mobile */
    footer {
        padding: 60px 0 40px;
    }

    .footer-main {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}


/* Hero Gallery (Main + Thumbnails) */
.hero-gallery {
    margin-top: 64px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out-expo) 0.2s forwards;
}

.gallery-main {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    background: #000;
    margin-bottom: 16px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-main:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

[data-theme="light"] .gallery-arrow {
    background: rgba(255, 255, 255, 0.8);
    color: #1D1D1F;
}

[data-theme="light"] .gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .gallery-main {
    box-shadow:
        0 25px 60px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
    background: #fff;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.gallery-thumb {
    width: 80px;
    height: auto;
    aspect-ratio: 1972 / 1132;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0;
    background: #000;
}

[data-theme="light"] .gallery-thumb {
    background: #fff;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--accent-gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile - Gallery */
@media (max-width: 768px) {
    .hero-gallery {
        width: 100%;
        max-width: calc(100% - 32px);
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .gallery-main {
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .gallery-arrow {
        width: 32px;
        height: 32px;
        opacity: 1;
    }

    .gallery-arrow svg {
        width: 16px;
        height: 16px;
    }

    .gallery-prev {
        left: 6px;
    }

    .gallery-next {
        right: 6px;
    }

    .gallery-thumbs {
        gap: 6px;
        justify-content: center;
        padding: 0 10px;
    }

    .gallery-thumb {
        width: 50px;
        border-radius: 4px;
        border-width: 1.5px;
    }

    .footer-ph-link {
        padding: 10px 16px;
        gap: 6px;
    }

    .footer-ph-logo {
        width: 20px;
        height: 20px;
    }

    .footer-ph-text {
        font-size: 0.75rem;
    }

    .footer-ph-name {
        font-size: 0.8rem;
    }
}
