/* ========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

:root {
    /* Color Palette - Blush Pink, Peachy Nude, Cream White, Rose Gold */
    --color-blush-light: #ffd1dc;
    --color-blush: #ffb3c6;
    --color-blush-dark: #ff9ab5;
    --color-peach: #ffd7ba;
    --color-peach-dark: #ffb88c;
    --color-cream: #faf6f0;
    --color-cream-dark: #f5ede0;
    --color-rose-gold: #b76e79;
    --color-rose-gold-light: #d4949e;
    --color-charcoal: #3d2c2e;
    --color-charcoal-light: #5a4749;
    --color-white: #ffffff;
    --color-off-white: #faf6f0;
    --color-gold: #c9a384;
    --color-shadow: rgba(61, 44, 46, 0.1);
    
    /* Typography - Fluid System */
    --font-main: 'Poppins', sans-serif;
    --font-size-base: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --font-size-sm: clamp(0.813rem, 0.75rem + 0.313vw, 0.938rem);
    --font-size-lg: clamp(1rem, 0.938rem + 0.313vw, 1.125rem);
    --font-size-xl: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --font-size-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --font-size-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --font-size-4xl: clamp(2.5rem, 1.875rem + 3.125vw, 4rem);
    --font-size-5xl: clamp(3rem, 2rem + 5vw, 5rem);
    
    /* Fluid Spacing System */
    --spacing-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    --spacing-sm: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    --spacing-md: clamp(1rem, 0.75rem + 1.25vw, 2rem);
    --spacing-lg: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    --spacing-xl: clamp(3rem, 2rem + 5vw, 6rem);
    --spacing-2xl: clamp(4rem, 2.5rem + 7.5vw, 8rem);
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    --container-padding: clamp(1rem, 2vw, 2rem);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius - Fluid */
    --radius-sm: clamp(6px, 0.5vw, 8px);
    --radius-md: clamp(12px, 1vw, 16px);
    --radius-lg: clamp(18px, 1.5vw, 24px);
    --radius-full: 50%;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Images and Media */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: var(--container-xl);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    width: 100%;
}

/* ========================================
   NAVIGATION BAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1000;
    transition: box-shadow var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--color-shadow);
}

.nav-container {
    max-width: var(--container-2xl);
    margin-inline: auto;
    padding: clamp(0.75rem, 1vw, 1.2rem) var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

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

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-logo .logo-link:hover {
    transform: translateY(-2px);
}

.nav-logo .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-logo .logo-link:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(183, 110, 121, 0.3));
}

.nav-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-charcoal);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-logo .logo-link:hover .logo-text {
    color: var(--color-rose-gold);
}

.nav-logo .amp {
    font-size: 1.2rem;
    color: var(--color-rose-gold);
    font-weight: 300;
    font-style: italic;
    margin: 0 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-rose-gold-light);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-rose-gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book-nav {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-book-nav:hover {
    background: var(--color-rose-gold);
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 232, 210, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--color-charcoal);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    background: linear-gradient(135deg, var(--color-blush-light) 0%, var(--color-cream) 60%, var(--color-white) 100%);
    padding-block-start: clamp(80px, 10vh, 120px);
    padding-block-end: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-2xl);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    padding-block: var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
}

/* Left Column - Text */
.hero-left {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--color-charcoal);
    color: var(--color-rose-gold-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.hero-heading {
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw + 1rem, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hero-amp {
    color: var(--color-rose-gold);
    font-size: clamp(2rem, 4vw + 1rem, 5rem);
    margin-block: var(--spacing-xs);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-md);
    max-width: 60ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.btn-primary {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2.5rem);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-rose-gold);
    color: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
    padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2.5rem);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-lookbook {
    background: transparent;
    border: none;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.btn-lookbook:hover {
    color: var(--color-rose-gold);
}

.btn-lookbook i {
    font-size: 1.2rem;
}

/* Right Column - Model Card */
.hero-right {
    animation: fadeInRight 1s ease;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.model-card {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Rotating Radial Wheel */
.radial-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, transparent 30%, rgba(212, 148, 158, 0.1) 30%, transparent 31%, transparent 45%, rgba(212, 148, 158, 0.1) 45%, transparent 46%, transparent 60%, rgba(212, 148, 158, 0.1) 60%, transparent 61%);
    background-size: 40px 40px;
    animation: rotateWheel 30s linear infinite;
    z-index: 1;
    border-radius: var(--radius-full);
    will-change: transform;
    contain: layout style paint;
}

@keyframes rotateWheel {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   AI TRY-ON HERO OVERLAY CARD
   Soft card design with improved readability
========================================= */

/* ========================================
   AI TRY-ON HIGHLIGHT SECTION
   Dedicated virtual try-on experience with enhanced visuals
========================================= */

.ai-tryon-highlight {
    background: linear-gradient(180deg, 
        rgba(250, 246, 240, 0.5) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    position: relative;
    margin-top: -2rem; /* Subtle overlap with hero */
    overflow: hidden;
}

/* Background Visual Elements - Subtle Blurred Circles */
.ai-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ai-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 209, 220, 0.25) 0%, 
        rgba(255, 215, 186, 0.15) 40%,
        transparent 70%);
    filter: blur(40px);
    animation: aiSectionFloat 12s ease-in-out infinite;
}

.ai-bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: 5%;
    animation-delay: 0s;
}

.ai-bg-circle-2 {
    width: 220px;
    height: 220px;
    top: 40%;
    right: 8%;
    animation-delay: 4s;
}

.ai-bg-circle-3 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 8s;
}

@keyframes aiSectionFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

.ai-highlight-panel {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(250, 246, 240, 0.95) 100%);
    backdrop-filter: blur(12px) saturate(110%);
    border-radius: clamp(16px, 2vw, 28px);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 
        0 10px 40px rgba(183, 110, 121, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 148, 158, 0.15);
    
    position: relative;
    z-index: 1;
    
    /* Scroll fade-in animation */
    opacity: 0;
    transform: translateY(20px);
    animation: aiHighlightFadeIn 0.6s ease-out 0.2s forwards;
}

@keyframes aiHighlightFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-highlight-content {
    text-align: center;
}

/* Title and Subtitle - Compact */
.ai-highlight-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ai-highlight-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Row - Horizontal Compact Layout */
.ai-steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.ai-step-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    flex: 0 1 auto;
}

/* Small Icon Design */
.ai-step-icon-sm {
    width: clamp(48px, 6vw, 56px);
    height: clamp(48px, 6vw, 56px);
    background: linear-gradient(135deg, 
        rgba(255, 209, 220, 0.6) 0%, 
        rgba(255, 215, 186, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 3vw, 24px);
    color: var(--color-rose-gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.15);
}

.ai-step-compact:hover .ai-step-icon-sm {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.22);
}

.ai-step-label {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    color: var(--color-charcoal);
    white-space: nowrap;
}

/* Step Divider Arrow */
.ai-step-divider {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(183, 110, 121, 0.4);
    font-weight: 300;
}

/* CTA Button - Premium Primary Action */
.ai-highlight-cta {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.btn-try-now {
    background: linear-gradient(135deg, 
        var(--color-rose-gold) 0%, 
        var(--color-rose-gold-light) 50%,
        rgba(255, 215, 186, 0.9) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: clamp(16px, 2.5vw, 18px) clamp(40px, 6vw, 52px);
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: clamp(10px, 2vw, 12px);
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.35);
    position: relative;
    z-index: 10;
    pointer-events: all;
}

.btn-try-now i {
    font-size: clamp(17px, 2.2vw, 20px);
    transition: transform 0.3s ease;
}

.btn-try-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(183, 110, 121, 0.45);
}

.btn-try-now:hover i {
    transform: scale(1.15) rotate(5deg);
}

.btn-try-now:active {
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-tryon-highlight {
        padding: clamp(2rem, 4vw, 3rem) 0;
        margin-top: 0;
    }
    
    .ai-bg-circle {
        filter: blur(35px);
    }
    
    .ai-bg-circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .ai-bg-circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .ai-bg-circle-3 {
        width: 180px;
        height: 180px;
    }
    
    .ai-highlight-panel {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    }
    
    .ai-steps-row {
        flex-direction: column;
        gap: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .ai-step-divider {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .ai-step-label {
        white-space: normal;
        text-align: center;
        max-width: 180px;
    }
    
    .btn-try-now {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Model Image Wrapper */
.model-image-wrapper {
    position: relative;
    transform: scale(0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 5;
    contain: layout style paint;
}

.model-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.model-image-wrapper:hover .model-image {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Water Wave Overlay Effect */
.wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 215, 186, 0.3) 0%,
        transparent 50%,
        rgba(255, 179, 198, 0.3) 100%
    );
    opacity: 0.6;
    animation: waterFlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
    contain: layout style paint;
}

@keyframes waterFlow {
    0%, 100% {
        transform: translateY(-40%);
    }
    50% {
        transform: translateY(40%);
    }
}

/* Crystal Accent */
.crystal-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-blush-light) 0%, var(--color-peach) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.5;
    filter: blur(20px);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    contain: layout style paint;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ========================================
   SERVICES SECTION
========================================= */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--color-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-charcoal-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(183, 110, 121, 0.3);
    border: 2px solid var(--color-rose-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-blush-light), var(--color-rose-gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-charcoal);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-charcoal-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-charcoal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--color-rose-gold);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   EDITORIAL PORTFOLIO SECTION
========================================= */
.editorial-portfolio {
    padding-block: var(--spacing-2xl);
    background: #FAF8F6;
    position: relative;
}

.editorial-container {
    max-width: var(--container-2xl);
    width: min(95%, var(--container-2xl));
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* Portfolio Header */
.editorial-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.editorial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw + 1rem, 5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-sm);
}

.editorial-subtitle {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-charcoal-light);
    max-width: 60ch;
    margin-inline: auto;
    line-height: 1.8;
}

/* Editorial Grid - 12 Column System */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    row-gap: 100px;
}

/* Chapter Separators */
.editorial-chapter {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 40px 0;
}

.chapter-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-charcoal-light) 50%, transparent);
    max-width: 200px;
}

.chapter-text {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-charcoal-light);
    white-space: nowrap;
}

/* Editorial Items */
.editorial-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: grayscale(20%);
}

.editorial-item:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* Image Format Variations */
.portrait-tall {
    grid-column: span 4;
    aspect-ratio: 2/3;
}

.square {
    grid-column: span 4;
    aspect-ratio: 1/1;
}

.landscape-wide {
    grid-column: 1 / -1;
    aspect-ratio: 2/1;
}

/* Editorial Captions */
.editorial-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-white);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.editorial-item:hover .editorial-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Optional subtle overlay on hover */
.editorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.editorial-item:hover::before {
    opacity: 1;
}

/* CTA */
.editorial-cta {
    text-align: center;
    margin-top: 100px;
}

.btn-editorial {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    padding: 1rem 3rem;
    border-radius: 0;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-editorial:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Tablet Layout */
@media (max-width: 968px) {
    .editorial-portfolio {
        padding: 80px 0 100px;
    }
    
    .editorial-container {
        width: 92%;
    }
    
    .editorial-header {
        margin-bottom: 60px;
    }
    
    .editorial-grid {
        gap: 24px;
        row-gap: 60px;
    }
    
    .portrait-tall,
    .square {
        grid-column: span 6;
    }
    
    .landscape-wide {
        aspect-ratio: 16/9;
    }
    
    .chapter-line {
        max-width: 100px;
    }
}

/* Mobile Layout */
@media (max-width: 640px) {
    .editorial-portfolio {
        padding: 60px 0 80px;
    }
    
    .editorial-container {
        width: 90%;
    }
    
    .editorial-header {
        margin-bottom: 50px;
    }
    
    .editorial-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
        margin-bottom: 1rem;
    }
    
    .editorial-subtitle {
        font-size: 0.9rem;
    }
    
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .editorial-item {
        width: 100%;
    }
    
    /* Vary heights on mobile for editorial feel */
    .portrait-tall {
        aspect-ratio: 3/4;
    }
    
    .square {
        aspect-ratio: 4/5;
    }
    
    .landscape-wide {
        aspect-ratio: 4/3;
    }
    
    .editorial-caption {
        position: static;
        display: block;
        padding: 16px 0 0;
        color: var(--color-charcoal);
        text-align: center;
        opacity: 1;
        transform: none;
        text-shadow: none;
    }
    
    .editorial-item::before {
        display: none;
    }
    
    .editorial-chapter {
        margin: 20px 0;
        gap: 1rem;
    }
    
    .chapter-line {
        max-width: 60px;
    }
    
    .chapter-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .editorial-cta {
        margin-top: 60px;
    }
    
    .btn-editorial {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Remove old gallery styles */
.gallery-teaser,
.gallery-strip,
.gallery-item,
.gallery-overlay,
.gallery-text,
.gallery-cta {
    display: none !important;
}

/* ========================================
   FOUNDER SECTION - PREMIUM HIGHLIGHT
========================================= */
.founder {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(180deg, 
        rgba(250, 246, 240, 0.5) 0%, 
        rgba(255, 255, 255, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Founder Card Container */
.founder-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(250, 246, 240, 0.95) 100%);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    box-shadow: 
        0 12px 48px rgba(183, 110, 121, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 148, 158, 0.15);
    position: relative;
    
    /* Scroll fade-in animation */
    opacity: 0;
    transform: translateY(30px);
    animation: founderCardFadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes founderCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Quote Icon */
.founder-quote-icon {
    position: absolute;
    top: clamp(1.5rem, 3vw, 2.5rem);
    left: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-rose-gold);
    opacity: 0.15;
    z-index: 0;
}

/* Inner Layout: Side-by-Side on Desktop */
.founder-card-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Column */
.founder-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Founder Image Wrapper - PRESERVE ALL EXISTING ANIMATIONS */
.founder-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-border {
    position: relative;
    width: clamp(180px, 22vw, 240px);
    height: clamp(180px, 22vw, 240px);
    border-radius: 50%;
    padding: 8px;
    background: none;
    box-shadow: 0 12px 48px rgba(183, 110, 121, 0.3);
    z-index: 2;
}

.founder-image-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--color-rose-gold),
        var(--color-blush),
        var(--color-peach)
    );
    animation: rotateGradient 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGradient {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.founder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-white);
}

.founder-accent-circle {
    position: absolute;
    width: clamp(210px, 25vw, 270px);
    height: clamp(210px, 25vw, 270px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blush-light), var(--color-peach));
    opacity: 0.2;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

/* Content Column */
.founder-content-column {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    text-align: left;
}

/* Eyebrow Label */
.founder-eyebrow {
    font-family: var(--font-main);
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-rose-gold);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

/* Headline */
.founder-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-charcoal);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

/* Founder Message */
.founder-message {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.founder-quote {
    font-family: var(--font-main);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: var(--color-charcoal);
    opacity: 0.9;
}

/* Signature Block */
.founder-signature-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: clamp(0.5rem, 1vw, 0.75rem);
    border-top: 1px solid rgba(212, 148, 158, 0.2);
}

.founder-signature {
    font-family: var(--font-main);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.3px;
}

.founder-title {
    font-family: var(--font-main);
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    font-weight: 300;
    color: var(--color-charcoal-light);
    letter-spacing: 0.5px;
}

/* Remove old unused styles */
.founder-content,
.founder-editorial-copy,
.founder-text,
.signature-title,
.founder-name,
.founder-bio,
.founder-experience,
.founder-stats,
.stat-item,
.stat-number,
.stat-label {
    display: none;
}

/* ========================================
   FOOTER / CONTACT SECTION
========================================= */
.footer {
    position: relative;
    background: #3d2c2e !important;
    background-color: #3d2c2e !important;
    color: #ffffff !important;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    z-index: 10;
    isolation: isolate;
}

.footer * {
    color: inherit;
}

.footer .container {
    background: transparent !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

/* ========================================
   FOUNDER SECTION - MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .founder-card {
        padding: clamp(2rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
    }
    
    .founder-card-inner {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 2.5rem);
        text-align: center;
    }
    
    .founder-image-column {
        order: -1;
    }
    
    .founder-content-column {
        text-align: center;
    }
    
    .founder-quote-icon {
        top: 1rem;
        left: 1rem;
        font-size: 1.5rem;
    }
    
    .founder-image-border {
        width: clamp(160px, 40vw, 200px);
        height: clamp(160px, 40vw, 200px);
    }
    
    .founder-accent-circle {
        width: clamp(180px, 45vw, 220px);
        height: clamp(180px, 45vw, 220px);
    }
}

@media (max-width: 480px) {
    .founder-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }
    
    .founder-headline {
        font-size: 1.5rem;
    }
    
    .founder-quote {
        font-size: 0.9rem;
    }
}

.footer-brand {
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--color-rose-gold-light);
    color: var(--color-charcoal);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-rose-gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact i {
    color: var(--color-rose-gold-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-rose-gold);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: var(--radius-sm);
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--color-rose-gold-light);
    color: var(--color-charcoal);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.footer-newsletter-form button:hover {
    background: var(--color-rose-gold-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   MODAL / SIGNUP POPUP
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--color-rose-gold);
    color: var(--color-charcoal);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.modal-subtitle {
    color: var(--color-charcoal-light);
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-rose-gold-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-modal-submit {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 0.5rem;
}

.btn-modal-submit:hover {
    background: var(--color-rose-gold);
    color: var(--color-charcoal);
    transform: translateY(-2px);
}

.modal-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-privacy i {
    color: var(--color-rose-gold-light);
}

.modal-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.modal-success.active {
    display: block;
}

.modal-success i {
    font-size: 4rem;
    color: var(--color-rose-gold);
    margin-bottom: 1rem;
}

.modal-success h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.modal-success p {
    color: var(--color-charcoal-light);
}

/* ========================================
   TOAST NOTIFICATION
========================================= */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    z-index: 3000;
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    color: var(--color-rose-gold);
    font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   Breakpoints: 480px, 768px, 1024px
========================================= */

/* ========== TABLETS & SMALL LAPTOPS (≤1024px) ========== */
@media (max-width: 1024px) {
    :root {
        --container-padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-inline: auto;
    }
    
    .nav-menu {
        position: fixed;
        inset: 80px 0 auto;
        transform: translateX(-100%);
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        text-align: center;
        transition: transform var(--transition-normal);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-block: var(--spacing-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-book-nav {
        position: fixed;
        inset: auto auto 20px 20px;
        z-index: 998;
        padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.5rem, 2vw, 1.75rem);
        box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .editorial-grid {
        gap: clamp(1rem, 2vw, 1.5rem);
        row-gap: var(--spacing-lg);
    }
    
    .portrait-tall,
    .square {
        grid-column: span 6;
    }
}

/* ========== MOBILE & SMALL TABLETS (≤768px) ========== */
@media (max-width: 768px) {
    .hero {
        padding-block-start: clamp(70px, 8vh, 90px);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .editorial-item {
        width: 100%;
    }
    
    .portrait-tall {
        aspect-ratio: 3/4;
    }
    
    .square {
        aspect-ratio: 4/5;
    }
    
    .landscape-wide {
        aspect-ratio: 4/3;
    }
    
    .editorial-caption {
        position: static;
        display: block;
        padding-block-start: var(--spacing-sm);
        color: var(--color-charcoal);
        text-align: center;
        opacity: 1;
        transform: none;
        text-shadow: none;
    }
    
    .editorial-item::before {
        display: none;
    }
    
    .founder {
        padding-block: var(--spacing-2xl);
    }
    
    .founder-image-border {
        width: clamp(140px, 30vw, 180px);
        height: clamp(140px, 30vw, 180px);
    }
    
    .founder-accent-circle {
        width: clamp(170px, 35vw, 210px);
        height: clamp(170px, 35vw, 210px);
    }
    
    .model-card {
        max-width: 90%;
        margin-inline: auto;
    }
    
    .collection-badge {
        width: clamp(70px, 15vw, 90px);
        height: clamp(70px, 15vw, 90px);
    }
}

/* ========== SMALL MOBILE (≤480px) ========== */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
        --spacing-lg: clamp(2rem, 4vw, 3rem);
        --spacing-xl: clamp(2.5rem, 5vw, 4rem);
        --spacing-2xl: clamp(3rem, 6vw, 5rem);
    }
    
    .nav-logo .logo-text {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .hero-badge {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* AI Try-On Extra Small */
    .ai-tryon-wrapper {
        width: 90%;
        bottom: 15px;
        pointer-events: all;
    }
    
    .ai-tryon-btn {
        padding: 12px 28px;
        font-size: 14px;
        pointer-events: all;
    }
    
    .collection-badge {
        width: 60px;
        height: 60px;
    }
    
    .collection-badge span:first-child {
        font-size: 0.7rem;
    }
    
    .collection-badge span:last-child {
        font-size: 0.9rem;
    }
    
    .toast {
        inset: auto 1rem 1rem 1rem;
        font-size: var(--font-size-sm);
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem 1rem;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .modal-header {
        margin-bottom: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .modal-form {
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 60px;
    }
    
    .btn-modal-submit {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    .modal-privacy {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .founder-image-border {
        width: 120px;
        height: 120px;
    }
    
    .founder-accent-circle {
        width: 150px;
        height: 150px;
    }
}

/* ========== LANDSCAPE MODE (Mobile devices) ========== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-block: var(--spacing-lg);
    }
    
    .hero-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .model-card {
        max-width: 350px;
    }
}

/* ========== HIGH DPI SCREENS ========== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .btn-book-nav,
    .hamburger,
    .modal-overlay,
    .toast,
    .beauty-bot-trigger,
    .tryon-hero-badge {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        page-break-after: always;
    }
}
