/* Aurelius Photography — Luxury Fine Art Theme */

:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-gold: #D4AF37;
    --accent-gold-hover: #E8C547;
    --accent-gold-dim: rgba(212, 175, 55, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
    --announcement-height: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

a:hover { color: var(--accent-gold); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 1;
}

.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--border-subtle);
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: var(--accent-gold);
    animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Header Announcement */
body.has-announcement:not(.announcement-dismissed) {
    --announcement-height: 44px;
}

.site-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #080808 0%, #12100e 45%, #1a1510 55%, #080808 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s var(--transition-smooth), opacity 0.4s ease;
}

body.announcement-dismissed .site-announcement {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-announcement__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(212, 175, 55, 0.06) 50%,
        transparent 60%
    );
    animation: announcementShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes announcementShine {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

.site-announcement__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--announcement-height);
    padding: 0.55rem 3rem;
}

.site-announcement__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    text-align: center;
}

.site-announcement__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    border-radius: 2px;
    line-height: 1;
}

.site-announcement__text {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.4;
}

.site-announcement__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    white-space: nowrap;
    transition: color 0.3s ease, gap 0.3s ease;
}

.site-announcement__link:hover {
    color: var(--accent-gold-hover);
    gap: 0.65rem;
}

.site-announcement__link i {
    font-size: 0.6rem;
}

.site-announcement__close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.site-announcement__close:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

body.has-announcement:not(.announcement-dismissed) .luxury-nav {
    top: var(--announcement-height);
}

@media (max-width: 767px) {
    body.has-announcement:not(.announcement-dismissed) {
        --announcement-height: 52px;
    }

    .site-announcement__inner {
        padding: 0.5rem 2.75rem 0.5rem 1rem;
    }

    .site-announcement__content {
        gap: 0.4rem 0.75rem;
    }

    .site-announcement__text {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .site-announcement__close {
        right: 0.65rem;
    }
}

/* Navigation */
.luxury-nav {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition-smooth);
    z-index: 1000;
}

.luxury-nav.luxury-nav--solid,
.luxury-nav.luxury-nav--solid.scrolled {
    background: #000000;
    border-bottom: 1px solid var(--border-subtle);
}

.luxury-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.luxury-nav .nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

.luxury-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

.luxury-nav .nav-link:hover,
.luxury-nav .nav-link.active {
    color: var(--accent-gold);
}

.luxury-nav .nav-link:hover::after,
.luxury-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Buttons */
.btn-gold {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
    padding: 8rem 0;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    font-weight: 300;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 560px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-nav-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-gold);
    width: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Masonry Gallery Grid */
.masonry-grid {
    columns: 1;
    column-gap: 1.5rem;
}

@media (min-width: 576px) { .masonry-grid { columns: 2; } }
@media (min-width: 992px) { .masonry-grid { columns: 3; } }

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    transition: transform 0.6s var(--transition-smooth);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay .item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.masonry-overlay .item-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* Photo card grid (Featured + Gallery) */
.photo-grid-wrap {
    display: flex;
    justify-content: center;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.photo-card {
    margin-bottom: 0;
    width: 100%;
    max-width: 420px;
    overflow: visible;
    padding: 0.85rem;
    background: linear-gradient(160deg, #1a1a1a 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth), border-color 0.4s ease;
}

.photo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.15);
}

.photo-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: #000;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: transform 0.6s var(--transition-smooth);
}

.photo-card:hover .photo-frame img {
    transform: scale(1.05);
}

@media (min-width: 576px) {
    .photo-grid .photo-card {
        width: calc(33.333% - 1rem);
        flex: 0 1 calc(33.333% - 1rem);
        max-width: none;
    }
}

@media (min-width: 992px) {
    .photo-grid .photo-card {
        width: calc(25% - 1.15rem);
        flex: 0 1 calc(25% - 1.15rem);
    }
}

@media (min-width: 1400px) {
    .photo-grid .photo-card {
        width: calc(20% - 1.2rem);
        flex: 0 1 calc(20% - 1.2rem);
    }
}

.photo-frame .masonry-overlay {
    padding: 1rem;
}

.photo-grid .masonry-overlay .item-title {
    font-size: 1rem;
}

.photo-grid .masonry-overlay .item-category {
    font-size: 0.65rem;
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid var(--accent-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.photo-card:hover .photo-frame::after {
    opacity: 1;
}

.photo-card:hover .photo-frame .masonry-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.35) 0%, transparent 55%);
}

.photo-card:hover .masonry-overlay {
    opacity: 1;
}

/* Story Section */
.story-section {
    background: var(--bg-secondary);
}

.story-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    padding-left: 2rem;
    margin: 2rem 0;
}

/* Collection Cards */
.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.collection-card:hover img { transform: scale(1.08); }

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.collection-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.collection-card .photo-count {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Horizontal Scroll Collections */
.collections-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.collections-scroll::-webkit-scrollbar { display: none; }

.collection-scroll-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--bg-secondary);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-scroll-card:hover { transform: translateY(-5px); }

.collection-scroll-card .card-image {
    height: 220px;
    overflow: hidden;
}

.collection-scroll-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-scroll-card:hover .card-image img { transform: scale(1.05); }

.collection-scroll-card .card-body { padding: 1.5rem; }

/* Testimonials */
.testimonial-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    height: 100%;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover { border-color: var(--accent-gold-dim); }

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.testimonial-source {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Awards */
.award-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.award-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
}

.award-title {
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.award-org {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.newsletter-form .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem 1.2rem;
    font-size: 0.85rem;
}

.newsletter-form .form-control:focus {
    background: var(--bg-primary);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem var(--accent-gold-dim);
}

.newsletter-form .form-control::placeholder { color: var(--text-muted); }

/* Gallery Filter */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: var(--accent-gold-dim);
}

.gallery-search {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.gallery-search .form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem 1.2rem 0.85rem 3rem;
    font-size: 0.85rem;
}

.gallery-search .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Image Detail */
.image-detail-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.image-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-primary);
}

.image-detail-info {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.detail-meta-item label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
}

.detail-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.detail-nav a:hover { color: var(--accent-gold); }

.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.share-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Shop */
.product-card {
    background: var(--bg-secondary);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold-dim);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-card .product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions { opacity: 1; }

.product-action-btn {
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.7);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-action-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.product-card .product-info { padding: 1.5rem; }

.product-card .product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.product-card .product-title {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.page-header .section-title { margin-bottom: 0.5rem; }

/* About Page */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 1px solid var(--border-subtle);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 9px;
    height: 9px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* Blog */
.blog-card {
    background: var(--bg-secondary);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--accent-gold-dim);
    transform: translateY(-3px);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-card .blog-body { padding: 1.5rem; }

.blog-card .blog-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.blog-card .blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact */
.contact-form .form-control,
.contact-form .form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem 1.2rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem var(--accent-gold-dim);
}

.contact-form label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.map-container {
    height: 400px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) contrast(1.1);
}

/* Cart */
.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-summary {
    background: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
}

/* Footer */
.luxury-footer {
    background: var(--bg-secondary);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer-heading {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-gold); }

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-credit {
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

/* Alerts */
.alert-luxury {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
}

.alert-luxury.success { border-color: var(--accent-gold); }
.alert-luxury.error { border-color: #c0392b; }

/* Infinite Scroll Loader */
.load-more-container {
    text-align: center;
    padding: 3rem 0;
}

.load-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid var(--border-subtle);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Modal */
.modal-luxury .modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.modal-luxury .modal-header {
    border-bottom: 1px solid var(--border-subtle);
}

.modal-luxury .btn-close {
    filter: invert(1);
}

/* Lazy Load (legacy data-src only) */
img.lazy:not(.loaded) {
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

img.lazy.loaded { opacity: 1; }

/* Parallax */
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.parallax-section .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.72) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

#fine-art-prints .parallax-content--dark .parallax-heading,
#fine-art-prints .parallax-content--dark h2.section-title {
    color: #000000;
}

#fine-art-prints .parallax-content--dark .parallax-text,
#fine-art-prints .parallax-content--dark p.section-subtitle {
    color: #1a1a1a;
}

#fine-art-prints .parallax-content--dark .section-label {
    color: #8a6d1d;
}

/* BTS Gallery */
.bts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.bts-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.bts-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bts-item:hover img { transform: scale(1.1); }

/* Responsive */
@media (max-width: 991.98px) {
    .story-content { padding: 2rem; }
    .section-padding { padding: 5rem 0; }
    .hero-content { bottom: 20%; }
    .scroll-indicator { display: none; }

    .story-image {
        min-height: 360px;
        height: auto;
    }

    .story-image img {
        width: 100%;
        height: auto;
        min-height: 360px;
        object-fit: cover;
    }

    .photo-grid .photo-card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .collections-scroll {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .collection-scroll-card {
        min-width: 280px;
        flex: 0 0 280px;
    }
}

@media (max-width: 767.98px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    #main-content {
        overflow-x: clip;
    }

    .luxury-nav {
        padding-top: max(0.75rem, env(safe-area-inset-top));
    }

    .luxury-nav .navbar-collapse {
        background: rgba(0,0,0,0.95);
        padding: 1.5rem;
        margin-top: 1rem;
        max-height: calc(100dvh - 5rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .page-header { padding: 7rem 0 2.5rem; }
    .cart-item { flex-direction: column; text-align: center; }

    .hero-section {
        min-height: 480px;
    }

    .hero-content {
        bottom: 16%;
        padding: 0 1.25rem;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .photo-grid {
        gap: 1rem;
    }

    .photo-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 0.65rem;
    }

    .photo-frame {
        aspect-ratio: 4 / 3;
        min-height: 200px;
    }

    .masonry-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    }

    .collection-card,
    .product-card .product-image,
    .blog-card .blog-image {
        aspect-ratio: 4 / 3;
        min-height: 200px;
    }

    .collection-card img,
    .product-card .product-image img,
    .blog-card .blog-image img,
    .collection-scroll-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-detail-hero {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .image-detail-hero img {
        width: 100%;
        height: auto;
        max-height: 75vh;
        object-fit: contain;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-image {
        min-height: 280px;
    }

    .parallax-section {
        min-height: 50vh;
    }

    .luxury-footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Print */
@media print {
    .luxury-nav, .luxury-footer, .loading-screen { display: none; }
    body { background: white; color: black; }
}
