/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a2e;
    --bg-card: #16162a;
    --text-primary: #e8e8f0;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --accent: #5bbce6;
    --accent-hover: #7fd0f5;
    --accent-glow: rgba(91, 188, 230, 0.3);
    --gold: #c9a84c;
    --gold-hover: #dbbe6a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gallery-item img,
.latest-photo-card img {
    image-rendering: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.96);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-brand:hover { opacity: 1; }
.logo { height: 36px; width: auto; }
.logo--small { height: 20px; }

/* Social Links */
.nav-social { display: flex; align-items: center; gap: 16px; }

.social-link {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.social-link:hover { color: var(--accent); opacity: 1; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

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

.nav-links { display: flex; list-style: none; gap: 8px; }

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 100px;
    transition: var(--transition);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}
.nav-link.active { color: var(--accent); }

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    color-space: srgb display-p3;
    isolation: isolate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05) translateZ(0);
    will-change: opacity, transform;
    transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.15) 12%, transparent 22%),
        linear-gradient(0deg, var(--bg-primary) 0%, rgba(10,10,15,0.6) 8%, rgba(10,10,15,0.2) 18%, transparent 30%),
        radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(10,10,15,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 0; right: 0;
    z-index: 3;
    padding: 0 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero H1 Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta:hover::before { transform: translateY(0); }
.hero-cta:hover { color: #fff; box-shadow: 0 0 30px var(--accent-glow); }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 48px; }

.section-label {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    margin-top: -24px;
    padding: 8px 20px;
    border: 1px solid rgba(91, 188, 230, 0.2);
    border-radius: 100px;
    background: rgba(91, 188, 230, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== Latest Feature ===== */
.latest-feature {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.latest-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.latest-photo-container { max-width: 900px; margin: 0 auto; }

.latest-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.latest-photo-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.latest-photo-card img {
    width: 100%; height: auto; display: block;
    transition: transform 0.4s ease;
}

.latest-photo-card:hover img { transform: scale(1.01); }

.latest-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(transparent, rgba(10,10,15,0.95));
}

.latest-photo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.latest-photo-meta { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; }

/* ===== Gallery ===== */
.gallery { padding: 80px 0; background: var(--bg-primary); }

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
    aspect-ratio: 16 / 10;
    min-height: 200px;
}

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

.gallery-item img {
    width: 100%; height: 100%; display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    pointer-events: none;
}

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

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.gallery-item-desc { font-size: 0.85rem; color: var(--text-secondary); font-weight: 300; }

/* ===== View More Card (mimics a gallery thumbnail) ===== */
.gallery-see-more-item {
    background: var(--bg-card);
    border: 1px solid rgba(91, 188, 230, 0.2);
    position: relative;
    overflow: hidden;
}

.gallery-see-more-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-4px);
}

/* Faded preview image behind the overlay */
.gallery-see-more-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(2px);
    pointer-events: none;
}

.gallery-see-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.45);
    opacity: 1 !important;
    pointer-events: none;
}

.gallery-see-more-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 12px 24px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    animation: pulse-see-more 2s ease-in-out infinite;
}

@keyframes pulse-see-more {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 0 0 rgba(91, 188, 230, 0); }
    50% { opacity: 1; box-shadow: 0 0 20px 4px var(--accent-glow); }
}

/* ===== About ===== */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.about-layout { display: flex; gap: 48px; align-items: flex-start; }
.about-image-col { flex-shrink: 0; width: 340px; }

.about-image {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.about-text-col { flex: 1; min-width: 0; }

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-text .about-intro { font-size: 1.2rem; color: var(--text-primary); font-weight: 300; }
.about-text em { color: var(--accent); font-style: italic; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
    font-weight: 400;
}

/* ===== Detail View (Lightbox) ===== */
.detail-view {
    position: fixed; inset: 0; z-index: 9999;
    background: #000;
    display: flex; align-items: center; justify-content: center;
    opacity: 1; visibility: hidden;
    transition: visibility 0.1s ease;
}

.detail-view.active { opacity: 1; visibility: visible; }

.detail-scrollable {
    width: 100%; height: 100%;
    overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.detail-close {
    position: fixed; top: 20px; right: 20px; z-index: 10001;
    width: 48px; height: 48px; border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: 50%; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.detail-close:hover { background: rgba(255, 255, 255, 0.15); transform: scale(1.1); }

/* Gallery nav arrows */
.detail-gallery-prev, .detail-gallery-next {
    position: fixed; top: 50%; z-index: 10001;
    width: 56px; height: 56px; border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: 50%; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.detail-gallery-prev { left: 20px; }
.detail-gallery-next { right: 20px; }
.detail-gallery-prev:hover, .detail-gallery-next:hover {
    background: rgba(255, 255, 255, 0.15); transform: translateY(-50%) scale(1.1);
}

/* Hero media - edge to edge */
.detail-hero-media {
    position: relative; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: #000;
}

.detail-hero-img {
    width: 100vw; height: 100vh; object-fit: cover;
    image-rendering: auto; transform: translateZ(0);
    backface-visibility: hidden; will-change: transform;
}

/* Title overlay */
.detail-hero-title-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 40px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff; text-align: center;
    opacity: 0; transition: opacity 0.8s ease; pointer-events: none;
    display: flex; align-items: flex-end; justify-content: center;
}

.detail-hero-title-overlay.visible { opacity: 1; }
.detail-hero-title-overlay h2 {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 300; margin-bottom: 0;
}

/* Scroll arrow positioned at bottom-right corner */
.detail-scroll-indicator {
    position: absolute; bottom: 12px; right: 20px;
    color: var(--text-secondary); pointer-events: none;
    animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Info section */
.detail-info-section { padding: 60px 40px 40px; max-width: 1200px; margin: 0 auto; }
.detail-info-inner { display: flex; flex-direction: column; gap: 40px; }
.detail-content-grid { display: flex; flex-direction: column; gap: 40px; }
.detail-description-col { min-width: 0; }

.detail-published-date {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.detail-description { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); }

/* Facts pills */
.detail-facts-col { width: 100%; }
.detail-facts-box { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
.detail-facts-title { display: none; }

.detail-facts-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px; font-size: 0.82rem;
    color: var(--text-secondary); white-space: nowrap;
}

.detail-facts-pill-label {
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    font-size: 0.7rem; color: var(--text-muted);
}

/* Action buttons */
.detail-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.detail-action-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer;
}

.detail-purchase-btn { background: linear-gradient(135deg, var(--gold), var(--gold-hover)); color: #000; }
.detail-purchase-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4); }

.detail-astrobin-btn { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border); }
.detail-astrobin-btn:hover { background: var(--bg-card); border-color: var(--accent); transform: translateY(-2px); }

/* Additional media gallery */
.detail-media-gallery { padding: 20px 40px 60px; max-width: 1200px; margin: 0 auto; }

.detail-gallery-label {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
    color: var(--text-primary); margin-bottom: 24px; padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.detail-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

.detail-media-grid img, .detail-media-grid video {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius);
    cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.detail-media-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); border-color: var(--accent); }

/* ===== Fade-in Animation ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease both; }

/* ===== Image Loading Skeleton ===== */
.gallery-item img, .latest-photo-card img, .detail-hero-img { background: var(--bg-tertiary); min-height: 60px; }

.gallery-item img[loading="lazy"] {
    background: linear-gradient(110deg, var(--bg-tertiary) 8%, #1e1e3a 18%, var(--bg-tertiary) 33%);
    background-size: 200% 100%; animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer { to { background-position: -200% 0; } }

/* ===== Video Badge ===== */
.gallery-item-video-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    width: 36px; height: 36px; background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; pointer-events: none;
}

/* ===== Process Section ===== */
.process { padding: 80px 0; background: var(--bg-primary); }

.process-hero-image {
    width: 100%; max-width: 800px; margin: 0 auto 40px;
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}

.process-hero-image img { width: 100%; height: auto; display: block; }

.process-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }

/* Gear Card */
.about-gear-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
}

.about-gear-card h3 {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400;
    color: var(--text-primary); margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.about-gear-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.about-gear-label {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--accent);
}

.about-gear-value {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
    padding-left: 12px; border-left: 2px solid var(--border);
}

.process-step { display: flex; gap: 24px; align-items: flex-start; }

.process-step-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
    background: rgba(91, 188, 230, 0.08); border: 1px solid rgba(91, 188, 230, 0.15);
    display: flex; align-items: center; justify-content: center; color: var(--accent);
}

.process-step-content h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400;
    margin-bottom: 12px; color: var(--text-primary);
}

.process-step-content p {
    color: var(--text-secondary); font-size: 0.95rem; font-weight: 300; line-height: 1.8; margin-bottom: 12px;
}

.process-step-content p:last-child { margin-bottom: 0; }

/* Process Subheading & Note */
.process-subheading {
    text-align: left; font-family: var(--font-heading); font-size: 1.3rem;
    font-weight: 400; color: var(--text-primary); margin-top: 0; margin-bottom: 0;
}

.process-note {
    color: var(--text-secondary); font-size: 1.05rem; font-weight: 300;
    text-align: left; max-width: 600px; margin: 0; line-height: 1.6;
}

/* ===== Footer ===== */
.footer { padding: 64px 0 32px; background: var(--bg-secondary); border-top: 1px solid var(--border); }

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-brand { margin-bottom: 8px; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }

.footer-links { display: flex; gap: 24px; margin: 16px 0; }

.footer-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.08em; transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-muted); font-size: 0.78rem; margin-top: 16px; }

/* ===== Mobile Navigation ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .logo { height: 28px; width: auto; }

    .nav-links {
        position: fixed; top: 0; right: 0; bottom: 0; left: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 16px; transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
    }

    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 1.2rem; padding: 12px 32px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-stats { grid-template-columns: 1fr; gap: 24px; }
    .detail-info-section { padding: 40px 20px 20px; }
    .detail-media-gallery { padding: 20px 20px 40px; }
    .detail-media-grid { grid-template-columns: repeat(2, 1fr); }

    .process-step { flex-direction: column; align-items: center; text-align: center; }

    .about-layout { flex-direction: column; gap: 32px; }
    .about-image-col { width: 100%; max-width: 340px; margin: 0 auto; }
    .hero-cta { padding: 14px 28px; font-size: 0.78rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

/* ===== Prefers Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}