/* =============================================
   VICTORIA LAURENT — PORTFOLIO MANNEQUIN
   Theme: Luxe Lumineux / Editorial Haute Couture
   ============================================= */

/* Variables */
:root {
    --primary: #1a1a1a;
    --secondary: #faf8f5;
    --white: #ffffff;
    --cream: #f5f0e8;
    --accent: #c5a55a;
    --accent-hover: #b8943f;
    --accent-light: rgba(197, 165, 90, 0.12);
    --text: #2c2c2c;
    --text-muted: #6b6560;
    --text-light: #8a8580;
    --border: #e8e3dc;
    --border-light: #f0ece6;

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.04);
    --shadow: 0 4px 24px rgba(44, 44, 44, 0.06);
    --shadow-lg: 0 12px 48px rgba(44, 44, 44, 0.08);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary);
}

h1 { font-size: clamp(3.25rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: 1.75rem; }

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    font-size: 0.85rem;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.75rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-gold);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.nav-main {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

.nav-link.active {
    color: var(--primary);
}

.nav-contact .btn {
    padding: 0.7rem 1.5rem;
    border-color: var(--accent);
    color: var(--accent);
}

.nav-contact .btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Nav */
.nav-main.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-main.active .nav-link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--text-muted);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-main.active .nav-link:last-child {
    border-bottom: none;
}

.nav-main.active .nav-link:hover,
.nav-main.active .nav-link.active {
    color: var(--primary);
}

.nav-main.active .nav-link.active::after {
    display: none;
}

.nav-main.active .nav-link::after {
    display: none;
}

/* Burger dark when menu open */
.menu-toggle.active span {
    background: var(--primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem;
    background: var(--secondary);
}

.hero-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.hero-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 420px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
}

.hero-image-overlay p {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Full Screen Hero Variant */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-fullscreen .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-fullscreen .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fullscreen .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.5) 100%
    );
}

.hero-fullscreen .hero-content {
    background: none;
    padding: 2rem;
    max-width: 800px;
}

.hero-fullscreen .hero-label {
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
}

.hero-fullscreen .hero-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.hero-fullscreen h1 {
    color: var(--white);
}

.hero-fullscreen .hero-text {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 3rem;
}

.hero-fullscreen .hero-buttons {
    justify-content: center;
}

/* =============================================
   SECTION STYLES
   ============================================= */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.section-text {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Decorative separator */
.section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto 0;
}

/* =============================================
   BOOK / GALLERY
   ============================================= */
.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.book-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    aspect-ratio: 3 / 4;
}

.book-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.book-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-item:hover img {
    transform: scale(1.04);
}

.book-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0) 50%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.book-item-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

/* Book Filters */
.book-filters {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.book-filter {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.book-filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.book-filter:hover,
.book-filter.active {
    color: var(--primary);
}

.book-filter.active::after {
    width: 100%;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    z-index: -1;
    opacity: 0.7;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-header::after {
    margin-left: 0;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 0.95rem;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.detail-item label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.3rem;
}

.detail-item span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
}

/* =============================================
   MEASUREMENTS GRID (A propos page)
   ============================================= */
.measurements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.measurement-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.measurement-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.measurement-item label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.75rem;
}

.measurement-item span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
}

/* =============================================
   QUOTE BLOCK
   ============================================= */
.quote-block {
    text-align: center;
    padding: 5rem 2rem;
    margin: 3rem 0;
    position: relative;
}

.quote-block::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-block blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.quote-author {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
}

/* =============================================
   EXPERIENCE / CV
   ============================================= */
.experience-section {
    background: var(--secondary);
}

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

.experience-category {
    background: var(--white);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.experience-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.experience-category h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--accent);
}

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

.experience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-item:hover {
    padding-left: 0.75rem;
}

.experience-item .brand {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
}

.experience-item .detail {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.experience-item .year {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    white-space: nowrap;
    background: var(--secondary);
    padding: 0.3rem 0.75rem;
}

/* Fashion Weeks Grid */
.fashion-weeks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.fashion-week-item {
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.fashion-week-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.fashion-week-item:hover::before {
    width: 60px;
}

.fashion-week-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.fashion-week-item:hover::after {
    width: 60px;
}

.fashion-week-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.2);
}

.fashion-week-item h3 {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--accent);
}

.fashion-week-item p {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

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

.agency-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.agency-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.agency-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.agency-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.agency-email {
    font-size: 0.82rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agency-email:hover {
    color: var(--accent-hover);
}

.agency-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
}

/* Brands Logos */
.brands-section {
    padding: 6rem 0;
    background: var(--cream);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
    flex-wrap: wrap;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.5;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.brand-logo:hover {
    opacity: 1;
    color: var(--accent);
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.service-content {
    padding: 1.2rem 0.5rem;
    text-align: center;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--text);
}

.service-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   VALUES (A propos)
   ============================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
    background: var(--white);
    border-left: 2px solid var(--accent);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 0.15rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.value-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.value-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Demo Banner */
.demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    z-index: 9999;
    font-family: var(--font-body);
}

body {
    padding-bottom: 3rem;
}

.demo-banner-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent);
    text-decoration: none;
    vertical-align: middle;
}

.demo-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.demo-banner-btn:hover {
    background: var(--accent-hover, #b8943f);
}

.demo-banner-btn svg {
    width: 14px;
    height: 14px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
    padding-top: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item-content label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item-content span {
    font-size: 0.95rem;
    color: var(--primary);
}

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

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.contact-social svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form h3 {
    margin-bottom: 2.5rem;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--secondary);
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Form Status */
.form-status {
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
}

.form-status.error {
    display: block;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #991b1b;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
}

.cta p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

.footer-brand .logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.9;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: #d4ba7a;
}

.footer-credit-logo {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-credit a:hover .footer-credit-logo {
    transform: scale(1.1);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
    padding: 9rem 0 5rem;
    position: relative;
}

.page-hero::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.page-hero h1 {
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* =============================================
   LEGAL CONTENT
   ============================================= */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.9;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.25rem;
    font-style: italic;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-content a {
    color: var(--accent);
}

.legal-content a:hover {
    color: var(--accent-hover);
}


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes shimmer {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

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

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

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

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

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

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

    .hero-content {
        padding: 8rem 2.5rem 4rem;
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-text {
        margin: 0 auto 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        height: 60vh;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-content .section-label,
    .about-content .section-header::after {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .book-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-main {
        display: none;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

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

    .book-item.large {
        grid-column: span 1;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        gap: 2.5rem;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .fashion-weeks-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.95rem 1.75rem;
        font-size: 0.65rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .book-filters {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .fashion-weeks-grid {
        grid-template-columns: 1fr;
    }

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

    .quote-block {
        padding: 3rem 1rem;
    }

    .experience-category {
        padding: 2rem 1.5rem;
    }

    .demo-banner {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .demo-banner-btn {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }
}
