/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    background: #fafafa;
    overflow-x: hidden;
}





.touch-device a, 
.touch-device button, 
.touch-device .collection-item, 
.touch-device .filter-btn {
    cursor: pointer !important;
}

.touch-device input, 
.touch-device textarea {
    cursor: text !important;
}

/* 性能优化 */
.cursor-follower,
.cursor-follower::before,
.cursor-follower::after {
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #ffffff;
}

.loading-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.loading-progress {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 1px;
}

.loading-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    animation: loadingProgress 2s ease-in-out forwards;
}

.loading-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

@keyframes loadingProgress {
    to { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(250, 250, 250, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #0a0a0a !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0a0a0a;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    display: block;
    margin: 2px 0;
    position: relative;
    transform-origin: center;
}

/* Hamburger menu active state animations */
.nav-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="2" height="2" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    overflow: hidden;
}

.title-word {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    margin-bottom: 0.1em;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #0a0a0a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button.primary {
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #0a0a0a;
}

.cta-button.primary .button-bg {
    background: #333;
}

.cta-button.secondary {
    background: transparent;
    color: #0a0a0a;
    border: 2px solid #0a0a0a;
}

.cta-button.secondary .button-bg {
    background: #0a0a0a;
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover .button-bg {
    left: 0;
}

.cta-button.secondary:hover span {
    color: #ffffff;
}

/* === HERO VISUAL === */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    opacity: 0;
    animation: imageReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(20%) contrast(1.1);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-image-container:hover .image-glow {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-element:nth-child(1) { top: 20%; left: 10%; }
.float-element:nth-child(2) { top: 60%; right: 15%; }
.float-element:nth-child(3) { bottom: 30%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* === SECTION BASE === */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
}

/* === PHILOSOPHY SECTION === */
.philosophy {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 300;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.point-icon {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0a0a0a;
    border-radius: 50%;
}

.point-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #666;
    line-height: 1.6;
}

.philosophy-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 600px;
}

.grid-item {
    overflow: hidden;
    border-radius: 2px;
}

.grid-item.large {
    grid-row: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%) contrast(1.1);
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* === COLLECTIONS SECTION === */
.collections {
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.collections-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #0a0a0a;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    grid-auto-rows: 420px;
    padding: 2rem 0;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-item:hover::before {
    opacity: 1;
}

.collection-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 8px 0 rgba(255, 255, 255, 0.9),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.collection-item.large {
    grid-row: span 2;
}

.collection-item.wide {
    grid-column: span 2;
}

.item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%) contrast(1.1);
}

.collection-item:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 70%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.collection-item:hover .item-overlay {
    opacity: 1;
    backdrop-filter: blur(12px);
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%);
    opacity: 0;
    animation: slideIn 0.8s ease 0.2s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        width: 60px;
    }
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f0f0f0 50%, 
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-content p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.view-details {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: #ffffff;
    color: #0a0a0a;
}

/* === ATELIER SECTION === */
.atelier {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.atelier-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.atelier-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.atelier-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.atelier-timeline {
    position: relative;
    padding-left: 3rem;
}

.atelier-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px #0a0a0a;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* === PRESS SECTION === */
.press {
    background: #0a0a0a;
    color: #ffffff;
}

.press .section-subtitle {
    color: #cccccc;
}

.press .section-title {
    color: #ffffff;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.press-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateY(-10px);
}

.press-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #ffffff;
}

.press-item blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.press-item cite {
    font-size: 0.9rem;
    color: #999;
    font-style: normal;
}

/* === CONTACT SECTION === */
.contact {
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

/* === FORM STYLES === */
.form {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 0 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0a0a0a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #0a0a0a;
    box-shadow: 0 2px 0 0 #0a0a0a;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

.form-group label {
    position: absolute;
    top: 1.5rem;
    left: 0;
    font-size: 1rem;
    color: #888;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Active/Focused/Filled state for labels */
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid + label,
.form-group select:not([value=""]) + label,
.form-group select:valid + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group textarea:valid + label,
.form-group.has-value label {
    top: 0.2rem;
    font-size: 0.8rem;
    color: #0a0a0a;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Select specific styles */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select option {
    color: #0a0a0a;
    background: #ffffff;
    padding: 0.5rem;
}

/* Textarea specific styles */
.form-group textarea {
    min-height: 120px;
    max-height: 200px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Placeholder styles */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

/* Error states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-bottom-color: #dc3545;
}

.form-group.error label {
    color: #dc3545;
}

/* Success states */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-bottom-color: #28a745;
}

.form-group.success label {
    color: #28a745;
}

/* Submit button improvements */
.submit-btn {
    position: relative;
    padding: 1.2rem 3rem;
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #0a0a0a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    min-width: 200px;
}

.submit-btn:hover {
    background: transparent;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn span {
    position: relative;
    z-index: 2;
    display: block;
}

.submit-btn .button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #333;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover .button-bg {
    left: 0;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    background: #0a0a0a;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

/* Loading state */
.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Form validation feedback */
.form-feedback {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-group.error .form-feedback {
    color: #dc3545;
    opacity: 1;
    transform: translateY(0);
}

.form-group.success .form-feedback {
    color: #28a745;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive form adjustments */
@media (max-width: 768px) {
    .form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* === FOOTER === */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.link-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* === RESPONSIVE DESIGN === */

/* Critical Mobile Text Fix */
@media (max-width: 600px) {
    .hero-title {
        line-height: 1.2 !important;
    }
    
    .hero-title .title-word {
        display: block !important;
        position: relative !important;
        margin-bottom: 0.1em !important;
        line-height: 1.0 !important;
    }
    
    .hero-title .title-word::before {
        display: none !important;
    }
    
    /* Ensure hamburger menu is always visible */
    .nav-toggle span {
        background: #0a0a0a !important;
        opacity: 1 !important;
    }
    
    .nav-toggle.active span {
        background: #0a0a0a !important;
    }
}

/* Mobile First Approach - Enhanced Mobile Styles */
@media (max-width: 480px) {
    /* Ultra small screens (phones in portrait) */
    .nav-container,
    .hero-container,
    .section-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        list-style: none;
        padding: 100px 0 2rem 0;
        margin: 0;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
    
    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    
    .nav-link {
        font-size: 1.1rem;
        color: #0a0a0a !important;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: block;
        width: 100%;
        margin: 0;
    }
    
    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #000 !important;
        padding-left: 2.5rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        padding: 6px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
        display: block;
        margin: 2px 0;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Hero Section */
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-image-container {
        width: 200px;
        height: 260px;
        margin: 0 auto;
    }
    
    /* Sections */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    /* Collections Grid */
    .collections-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .collection-item,
    .collection-item.wide,
    .collection-item.large {
        grid-column: span 1;
        border-radius: 15px;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
    
    /* Philosophy Section */
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-visual {
        margin-top: 2rem;
    }
    
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Atelier Section */
    .atelier-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: 0;
        width: 12px;
        height: 12px;
    }
    
    /* Press Section */
    .press-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Section */
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Form */
    .form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 0 0.5rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    

    
    /* Touch-friendly interactions */
    .collection-item,
    .cta-button,
    .filter-btn,
    .submit-btn {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Fix text overlap issues on mobile */
    .hero-title {
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-title .title-word {
        display: block !important;
        line-height: 1.0 !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero-title .title-word::before {
        display: none !important;
    }
    
    .section-title,
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ensure proper spacing for text elements */
    p, .hero-subtitle, .section-description {
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Fix overlay text spacing */
    .overlay-content h3 {
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .overlay-content p {
        line-height: 1.4 !important;
    }
}

/* Additional Mobile Text Fixes */
@media (max-width: 360px) {
    /* Extra small screens (older phones) */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-title .title-word {
        display: block !important;
        line-height: 1.1 !important;
        margin-bottom: 0.3rem !important;
        font-size: 2rem !important;
    }
    
    .hero-title .title-word::before {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
    }
    
    .overlay-content h3 {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .nav-link {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        padding: 0.8rem 1.5rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .nav-menu {
        padding: 1.5rem 0 !important;
    }
}

/* Desktop Navigation Styles */
@media (min-width: 481px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
        z-index: auto;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0;
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .nav-link {
        font-size: 1rem;
        color: #0a0a0a !important;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #0a0a0a, rgba(10, 10, 10, 0.6));
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
    .nav-container,
    .hero-container,
    .section-container,
    .footer-container {
        padding: 0 2rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image-container {
        width: 300px;
        height: 380px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .collection-item.wide {
        grid-column: span 2;
    }
    
    .atelier-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .nav-container,
    .hero-container,
    .section-container,
    .footer-container {
        padding: 0 2rem;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .philosophy-content,
    .atelier-content,
    .contact-content {
        gap: 4rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .philosophy-content,
    .atelier-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image-container {
        width: 300px;
        height: 400px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-item.wide {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-container,
    .hero-container,
    .section-container,
    .footer-container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-image-container {
        width: 250px;
        height: 320px;
    }
    
    .atelier-stats {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices - remove hover effects */
    .collection-item:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .collection-item:hover .item-overlay {
        backdrop-filter: blur(10px);
    }
    
    .cta-button:hover,
    .filter-btn:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    /* Better touch targets */
    .filter-btn,
    .cta-button,
    .submit-btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Larger tap areas for mobile */
    .collection-item {
        min-height: 200px;
    }
    

    
    /* Optimize scroll behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* === UTILITY CLASSES === */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === ACCESSIBILITY IMPROVEMENTS === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        transition: none;
    }
    
    .cursor-follower {
        display: none !important;
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .cursor-follower,
    .loading-screen,
    .floating-elements,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero,
    section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .collection-item {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
} 