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

/* Light theme (default) - matching minimal.css */
:root,
[data-theme="light"] {
    --bg-primary: #fafaf9;
    --bg-secondary: #f5f5f4;
    --bg-tertiary: #e7e5e4;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: rgba(0, 0, 0, 0.4);
    --accent: #1a1a1a;
    --accent-glow: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 100px;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-section: 8rem;
}

/* Dark theme */
[data-theme="dark"] {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #e8e8e6;
    --text-secondary: #888888;
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --accent: #fff;
    --accent-glow: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    animation: pageFadeIn 0.4s ease;
}

body.navigating {
    animation: pageFadeOut 0.3s ease forwards;
}

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .scroll-progress {
        transition: none;
    }
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.03;
    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");
}

/* Gradient orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Navigation - matching minimal.css */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: var(--bg-primary);
}

.nav-logo {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    border: none;
}

.nav-logo:hover {
    border: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border: none;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}

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

.hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-role {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.role-tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.role-company {
    color: var(--text-primary);
    font-weight: 500;
}

.role-backers {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.8); }
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    font-weight: 500;
    padding-top: 0.25rem;
}

.section-content {
    position: relative;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.about-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.experience-item:hover {
    border-color: var(--border-hover);
}

.exp-role {
    font-weight: 500;
    color: var(--text-primary);
}

.exp-company {
    color: var(--text-secondary);
}

.exp-desc {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    text-align: right;
}

/* Travel/Interests Section */
.travel-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.interest-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.interest-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interest-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.interest-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.interest-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.interest-card p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    position: relative;
    z-index: 1;
}

.card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.interest-card:hover .card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* Connect Section */
.connect-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
}

.social-name {
    color: var(--text-primary);
    font-weight: 500;
}

.social-handle {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.contact-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* About Page */
.about-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: flex-start;
    padding: 8rem 3rem 4rem;
}

.about-content {
    max-width: 680px;
    margin: 0;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-content p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
}

.about-content a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.about-content a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .about-page {
        padding: 6rem 1.5rem 3rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-content p:first-child {
        font-size: 1.125rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interest-cards {
        grid-template-columns: 1fr;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .exp-desc {
        text-align: left;
    }
}

/* Responsive - matching minimal.css breakpoints */
@media (max-width: 900px) {
    .nav {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .section-grid {
        padding: 0 1.5rem;
    }

    .scroll-indicator {
        left: 1.5rem;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .hero-role {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Hamburger menu button — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

@media (max-width: 600px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        transform: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link.active {
        text-decoration: none;
    }
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
    display: none;
}

.cursor-follower {
    display: none;
}

.cursor.hover {
    transform: scale(0.5);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent);
}

.cursor.clicking {
    transform: scale(0.8);
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower {
        display: none;
    }
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   NAV STATUS
   ======================================== */
.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: #22c55e;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ========================================
   HERO GREETING
   ======================================== */
.hero-greeting {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.portfolio-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    aspect-ratio: 16/9;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.portfolio-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-placeholder {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   INTERESTS SECTION
   ======================================== */
.interests-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

/* ========================================
   PHOTOGRAPHY SECTION
   ======================================== */
.photography-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.gallery-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.photo-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.photo-item:hover {
    border-color: var(--border-hover);
    transform: scale(1.02);
    z-index: 2;
}

.photo-item-tall {
    grid-row: span 2;
}

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

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-tertiary);
    font-size: 0.875rem;
    position: relative;
}

.photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-placeholder::after {
    opacity: 1;
}

.photo-placeholder span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-placeholder span {
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE ADDITIONS
   ======================================== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .photo-item-wide {
        grid-column: span 1;
    }

    .nav-status {
        display: none;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .photo-item-tall {
        grid-row: span 1;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-image-container {
        width: 90vw;
        height: 50vh;
    }
}

[data-theme="light"] .gradient-orb-1 {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

[data-theme="light"] .gradient-orb-2 {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

[data-theme="light"] .noise {
    opacity: 0.02;
}

[data-theme="light"] .loader {
    background: var(--bg-primary);
}

[data-theme="light"] .cursor {
    background: var(--text-primary);
}


/* ========================================
   THEME TOGGLE - matches nav text height
   ======================================== */
.theme-toggle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: var(--text-primary);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle svg,
.theme-icon-moon,
.theme-icon-sun {
    display: none;
}

/* ========================================
   NAV ACTIONS
   ======================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========================================
   COMMAND TRIGGER BUTTON
   ======================================== */
.command-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.command-trigger:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
}

.command-trigger-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.command-trigger-keys {
    display: flex;
    gap: 0.25rem;
}

.command-trigger-keys kbd {
    padding: 0.2rem 0.4rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: inherit;
    color: var(--text-tertiary);
}

/* ========================================
   COMMAND PALETTE
   ======================================== */
.command-palette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.command-palette.active {
    opacity: 1;
    visibility: visible;
}

.command-palette-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.command-palette-modal {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.2s ease;
}

.command-palette.active .command-palette-modal {
    transform: translateY(0) scale(1);
}

.command-palette-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.command-search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.command-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
}

.command-input::placeholder {
    color: var(--text-tertiary);
}

.command-shortcut {
    padding: 0.25rem 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.command-palette-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

.command-group {
    margin-bottom: 0.5rem;
}

.command-group-title {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.command-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.command-item:hover,
.command-item.selected {
    background: var(--bg-tertiary);
}

.command-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    flex-shrink: 0;
}

.command-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.command-label {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.command-hint {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.command-palette-footer {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.command-palette-footer span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.command-palette-footer kbd {
    padding: 0.15rem 0.35rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.7rem;
}

/* ========================================
   THESIS SECTION
   ======================================== */
.thesis-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.thesis-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thesis-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.thesis-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.thesis-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.thesis-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    flex-shrink: 0;
}

.thesis-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.thesis-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.thesis-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.thesis-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.thesis-cta p {
    color: var(--text-secondary);
    margin: 0;
}

.thesis-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.thesis-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* ========================================
   NOW SECTION
   ======================================== */
.now-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.now-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.now-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.now-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.now-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.now-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.now-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 8px;
}

.now-card-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.now-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.now-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.now-updated {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.now-updated span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* ========================================
   RESPONSIVE FOR NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .nav-actions {
        gap: 0.75rem;
    }

    .command-trigger-text {
        display: none;
    }

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

@media (max-width: 768px) {
    .command-trigger {
        display: none;
    }

    .thesis-item {
        flex-direction: column;
        gap: 1rem;
    }

    .thesis-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .command-palette-modal {
        margin: 0 1rem;
    }

    .nav-actions .nav-status {
        display: none;
    }
}

/* ========================================
   CITY CAROUSEL
   ======================================== */
.carousel-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

/* Travel page (with globe) - fixed viewport, no scroll */
.carousel-page:has(.globe-container) {
    height: 100vh;
    min-height: unset;
    overflow: hidden;
    justify-content: flex-start;
}

.carousel-hero {
    text-align: center;
    padding: 3rem 3rem 2rem;
    position: relative;
    z-index: 1;
}

.carousel-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.carousel-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ========================================
   GLOBE VIEW
   ======================================== */
.globe-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 650px;
    max-height: 950px;
    margin-top: -2.5rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.globe-container.is-loading #globe {
    opacity: 0;
}

.globe-container.is-ready #globe {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.globe-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.globe-container.is-loading .globe-loading {
    opacity: 1;
}

.globe-container.is-ready .globe-loading {
    opacity: 0;
}

#globe {
    width: 100%;
    height: 100%;
}

#globe canvas {
    cursor: grab;
}

#globe canvas:active {
    cursor: grabbing;
}

.globe-container.city-hovered #globe canvas {
    cursor: pointer;
}

/* Globe hint text */
.globe-hint {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

/* Globe city labels (HTML elements) */
.globe-label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
    padding: 4px 8px;
    color: rgba(0, 0, 0, 0.6);
    /* Only transition color, not position/transform */
    transition: color 0.2s ease;
}

.globe-label-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow:
        -1px -1px 0 var(--bg-primary),
        1px -1px 0 var(--bg-primary),
        -1px 1px 0 var(--bg-primary),
        1px 1px 0 var(--bg-primary),
        0 0 10px var(--bg-primary),
        0 0 20px var(--bg-primary);
}

.globe-label.hovered {
    color: rgba(0, 0, 0, 0.9);
}

.globe-label.hovered .globe-label-text {
    font-weight: 600;
}

.globe-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    margin-right: 6px;
}

.globe-label.hovered .globe-label-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px currentColor;
}

[data-theme="dark"] .globe-label {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .globe-label.hovered {
    color: rgba(255, 255, 255, 0.95);
}

/* Globe City Panel */
.globe-city-panel {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.globe-city-panel.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.globe-city-info {
    text-align: left;
}

.globe-city-country {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.globe-city-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.globe-city-count {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.globe-city-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    border-radius: 4px;
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.globe-city-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.globe-city-link svg {
    width: 14px;
    height: 14px;
}

/* Globe Responsive */
@media (max-width: 768px) {
    .carousel-page {
        padding-top: 60px;
    }

    .carousel-hero {
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .globe-container {
        height: 60vh;
        min-height: 400px;
        max-height: 550px;
        padding-bottom: 3rem;
    }

    .globe-city-panel {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        bottom: 3rem;
        width: calc(100% - 2rem);
        max-width: 300px;
    }

    .globe-city-info {
        text-align: center;
    }

    .globe-city-list {
        max-height: 150px;
    }

    .nav-links {
        gap: 1rem;
    }

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

@media (max-width: 375px) {
    .globe-container {
        height: 50vh;
        min-height: 300px;
    }

    .globe-city-panel {
        bottom: 1.5rem;
        max-width: 280px;
    }
}

/* ========================================
   CITY MAP PAGE HEADER - Floating overlay
   ======================================== */
.city-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 340px;
    z-index: 100;
    padding: 0.5rem 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    pointer-events: none;
}

.city-header > * {
    pointer-events: auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: var(--bg-primary, #ffffff);
    border: none;
    border-radius: 100px;
    color: var(--text-secondary, #404040);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.back-link:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    color: var(--text-primary, #1a1a1a);
}

.back-link svg {
    width: 11px;
    height: 11px;
}

.city-title {
    padding: 0.35rem 0.7rem;
    background: var(--bg-primary, #ffffff);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: -0.01em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

/* Theme toggle in city header - circular dark pill */
.city-header .theme-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .city-header {
        right: 0;
    }
    .city-country {
        display: none;
    }
}

/* ========================================
   PHOTOGRAPHY PAGE
   ======================================== */
.photo-page {
    min-height: 100vh;
}

.photo-hero {
    text-align: center;
    padding: 2rem 2rem 3rem;
}

.photo-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.photo-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.photo-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Collections Grid */
.photo-collections {
    padding: 0 2rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Collection Card */
.collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    cursor: pointer;
}

.collection-card.collection-large {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: auto;
}

.collection-card.collection-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.collection-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 0.9;
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-content {
    transform: translateY(0);
    opacity: 1;
}

.collection-count {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.collection-title {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.collection-location {
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 400;
}

.collection-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-hover-line {
    width: 100%;
}

/* Scroll Hint */
.photo-scroll-hint {
    text-align: center;
    padding: 1rem 2rem 3rem;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ========================================
   GALLERY MODAL
   ======================================== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-modal.open {
    opacity: 1;
    visibility: visible;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.gallery-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gallery-location {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.gallery-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gallery-counter {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.gallery-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    min-height: 0;
}

.gallery-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-arrow:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem 1.5rem;
    overflow-x: auto;
    justify-content: center;
    border-top: 1px solid var(--border);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

/* Photography Responsive */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card.collection-large {
        grid-row: span 1;
        aspect-ratio: 4 / 5;
    }

    .collection-card.collection-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .photo-hero {
        padding: 1.5rem 1.5rem 2rem;
    }

    .photo-collections {
        padding: 0 1rem 3rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .collection-card,
    .collection-card.collection-large,
    .collection-card.collection-wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16 / 10;
    }

    .collection-content {
        padding: 1.5rem;
    }

    .collection-title {
        font-size: 1.5rem;
    }

    .gallery-header {
        padding: 1rem 1.5rem;
    }

    .gallery-content {
        padding: 1rem;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 1rem;
    }

    .gallery-next {
        right: 1rem;
    }

    .gallery-thumbnails {
        padding: 1rem;
        justify-content: flex-start;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   PHOTO GRID VIEW
   ======================================== */
.photo-main {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.photo-main.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.photo-grid-view {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-bottom: 4rem;
}

.photo-grid-view.visible {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.grid-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    margin-bottom: 1rem;
}

.grid-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.grid-view-info {
    text-align: center;
}

.grid-view-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.grid-view-location {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.grid-view-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Photo Grid - Masonry Layout */
.photo-masonry {
    columns: 3;
    column-gap: 1rem;
    padding: 0 3rem;
    max-width: 100%;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.masonry-item img.loaded {
    animation: fadeIn 0.4s ease;
}

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

.masonry-item:hover img {
    opacity: 0.85;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    font-variant-numeric: tabular-nums;
}

/* Lightbox dark mode */
[data-theme="dark"] .lightbox {
    background: rgba(0, 0, 0, 0.95);
}

[data-theme="dark"] .lightbox-close {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

[data-theme="dark"] .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .lightbox-arrow {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

[data-theme="dark"] .lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
}

/* Grid View Responsive */
@media (max-width: 1024px) {
    .photo-masonry {
        columns: 2;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .grid-view-header {
        padding: 1.5rem 1rem;
    }

    .grid-view-title {
        font-size: 1.25rem;
    }

    .grid-view-location {
        display: none;
    }

    .photo-masonry {
        columns: 1;
        padding: 0 1.5rem;
        column-gap: 0;
    }

    .masonry-item {
        margin-bottom: 1rem;
    }

    .lightbox-arrow {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .lightbox-arrow {
        display: none;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-hero {
    text-align: center;
    padding: 2rem 2rem 4rem;
}

.contact-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.contact-content {
    width: 100%;
    max-width: 500px;
    padding: 0 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.contact-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    text-decoration: none;
    transition: background 0.2s ease;
}

.contact-method:hover {
    background: var(--bg-secondary);
}

.contact-method-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.contact-method-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }

    .contact-hero {
        padding: 1.5rem 1.5rem 3rem;
    }

    .contact-content {
        padding: 0 1rem;
    }

    .contact-method {
        padding: 1rem 1.25rem;
    }
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden - for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   ABOUT PAGE (minimal layout)
   ======================================== */
/* Subtle dot grid background — tech feel */
.about-minimal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--border) 0.5px, transparent 0.5px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

/* About page main content - centered minimal */
.about-minimal main {
    max-width: 720px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    flex: 1;
    width: 100%;
    text-align: center;
}

/* Hero text — first paragraph */
.about-minimal main > *:first-child {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

/* Body paragraphs */
.about-minimal main > * {
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.about-minimal main > *:last-child {
    margin-bottom: 0;
}

/* Links — refined thin underline (main content only) */
.about-minimal main a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border-hover);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
    font-weight: 400;
}

.about-minimal main a:hover {
    border-color: var(--text-primary);
}

@media (max-width: 900px) {
    .about-minimal main {
        padding: 8rem 1.5rem 4rem;
    }
}

@media (max-width: 600px) {
    .about-minimal main {
        padding: 6rem 1.5rem 4rem;
    }

    .about-minimal main > *:first-child {
        font-size: 1.25rem;
    }
}

/* ========================================
   CONTACT PAGE (minimal layout)
   ======================================== */
.contact-minimal main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem 2rem;
    min-height: 100vh;
}

.contact-minimal main > h1 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.015em;
}

.contact-minimal .contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 560px;
    width: 100%;
}

.contact-minimal .contact-item {
    position: relative;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 0 1rem;
}

.contact-minimal .contact-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--border);
    opacity: 0.6;
}

.contact-minimal .contact-item:last-child {
    padding-bottom: 0;
}

.contact-minimal .contact-item:last-child::after {
    display: none;
}

.contact-minimal .contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.contact-minimal .contact-label svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.contact-minimal .contact-value {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border-hover);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    justify-self: end;
    text-align: right;
}

.contact-minimal .contact-value:hover {
    border-color: var(--text-primary);
    opacity: 0.7;
}

@media (max-width: 600px) {
    .contact-minimal main > h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-minimal .contact-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .contact-minimal .contact-value {
        justify-self: start;
        text-align: left;
    }
}

/* Selection styling */
::selection {
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* ========================================
   GLOBE CITY LIST (travel page)
   ======================================== */
.globe-city-list {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    max-height: 200px;
    overflow-y: auto;
    min-width: 200px;
}

.globe-city-list.visible {
    display: flex;
}

.globe-city-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 8px 12px;
    background: var(--bg-secondary, rgba(0,0,0,0.03));
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-primary, #1a1a1a);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.globe-city-list-item:hover {
    background: var(--bg-tertiary, rgba(0,0,0,0.08));
}

.globe-city-list-item.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.globe-city-list-item .city-name {
    flex: 1;
    font-weight: 500;
}

.globe-city-list-item .city-count {
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.globe-city-list-item .city-arrow {
    font-size: 0.8rem;
    opacity: 0.4;
}

[data-theme="dark"] .globe-city-list-item {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

[data-theme="dark"] .globe-city-list-item:hover {
    background: rgba(255,255,255,0.1);
}

/* ========================================
   PHOTOGRAPHY PAGE OVERRIDES
   ======================================== */
.photo-page .carousel-hero {
    margin-bottom: 1.5rem;
}

.photo-page .photo-collections {
    padding: 1rem 3rem 4rem;
    width: 100%;
}

.photo-page .collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.photo-page .collection-card {
    position: relative;
    display: block;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 1;
    transition: transform 0.4s ease;
    min-width: 0;
}

.photo-page .collection-card:hover {
    transform: translateY(-8px);
}

.photo-page .collection-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.photo-page .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-page .collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.photo-page .collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.photo-page .collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}

.photo-page .collection-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.photo-page .collection-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.photo-page .collection-count {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Collection View */
.photo-page .collection-view {
    display: none;
    padding: 2rem;
}

.photo-page .collection-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.photo-page .back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    justify-self: start;
}

.photo-page .back-btn:hover {
    color: var(--text-primary);
}

.photo-page .collection-view-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    justify-self: center;
    padding: 0 0.5rem;
}

.photo-page .collection-spacer {
    justify-self: end;
}

/* Photo grid - 2-column masonry layout */
.photo-page .photo-grid {
    column-count: 2;
    column-gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.photo-page .photo-grid.is-loading {
    min-height: 40vh;
    position: relative;
}

.photo-page .photo-grid.is-loading::before {
    content: 'Loading photos';
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-tertiary);
}

.photo-page .photo-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    background: none;
    border: none;
    break-inside: avoid;
    margin-bottom: 1rem;
}

.photo-page .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.photo-page .photo-item:hover img {
    opacity: 0.9;
}

/* Photography Lightbox */
.photo-page .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

[data-theme="dark"] .photo-page .lightbox {
    background: rgba(0, 0, 0, 0.95);
}

.photo-page .lightbox.open {
    display: flex;
}

.photo-page .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.photo-page .lightbox-close:hover {
    opacity: 1;
}

.photo-page .lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.photo-page .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 1rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.photo-page .lightbox-nav:hover {
    opacity: 1;
}

.photo-page .lightbox-prev {
    left: 2rem;
}

.photo-page .lightbox-next {
    right: 2rem;
}

.photo-page .lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: var(--text-primary);
    opacity: 0.5;
}

[data-theme="dark"] .photo-page .lightbox-close,
[data-theme="dark"] .photo-page .lightbox-nav,
[data-theme="dark"] .photo-page .lightbox-counter {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .photo-page .collections-grid {
        grid-template-columns: 1fr;
    }

    .photo-page .photo-grid {
        column-count: 1;
    }

    .photo-page .lightbox-nav {
        display: none;
    }
}

/* ========================================
   SUBSCRIBE FOOTER
   ======================================== */
.site-footer {
  padding: 48px 32px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}
.footer-subscribe {
  margin-bottom: 40px;
}
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.footer-desc {
  font-size: 14px;
  opacity: 0.5;
  margin: 0 0 24px 0;
}
.subscribe-form {
  display: flex;
  max-width: 360px;
  margin: 0 auto;
}
.subscribe-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input::placeholder {
  color: rgba(0,0,0,0.3);
}
.subscribe-input:focus {
  border-color: rgba(0,0,0,0.5);
}
.subscribe-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  border-left: none;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.subscribe-btn:hover {
  background: rgba(0,0,0,0.05);
}
.subscribe-msg {
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.6;
  min-height: 20px;
}
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-copy {
  font-size: 12px;
  opacity: 0.35;
}
/* Dark mode */
[data-theme="dark"] .site-footer {
  border-top-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .subscribe-input {
  border-color: rgba(255,255,255,0.2);
}
[data-theme="dark"] .subscribe-input::placeholder {
  color: rgba(255,255,255,0.3);
}
[data-theme="dark"] .subscribe-input:focus {
  border-color: rgba(255,255,255,0.5);
}
[data-theme="dark"] .subscribe-btn {
  border-color: rgba(255,255,255,0.2);
  border-left: none;
}
[data-theme="dark"] .subscribe-btn:hover {
  background: rgba(255,255,255,0.08);
}
[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255,255,255,0.06);
}

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

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ========================================
   COMPREHENSIVE MOBILE BREAKPOINTS
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 900px) {
    .carousel-hero {
        padding: 2rem 2rem 1.5rem;
    }

    .photo-page .photo-collections {
        padding: 1rem 2rem 3rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .site-footer {
        padding: 32px 24px 20px;
    }

    .subscribe-form {
        flex-direction: column;
        max-width: 100%;
    }

    .subscribe-input {
        border-radius: 0;
    }

    .subscribe-btn {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        border-top: none;
    }

    [data-theme="dark"] .subscribe-btn {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .carousel-hero {
        padding: 1.5rem 1.5rem 1rem;
    }

    .carousel-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .carousel-subtitle {
        font-size: 0.875rem;
    }

    .photo-page .collections-grid {
        gap: 1rem;
    }

    .photo-page .collection-content {
        padding: 1rem;
    }

    .photo-page .collection-name {
        font-size: 1.25rem;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .carousel-hero {
        padding: 1rem 1rem 0.75rem;
    }

    .site-footer {
        padding: 24px 16px 16px;
    }

    .footer-subscribe {
        margin-bottom: 24px;
    }
}
