
:root { --black: #111; --gray: #f4f4f4; --max-width: 1280px; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: var(--black); line-height: 1.6; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

/* Site Header Wrapper */
.site-header {
    width: 100%;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
img.site-logo {
    max-width: 300px;
}
.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* 1. Stacked Centered Logo */
.site-branding a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    padding-top:20px;
    padding-bottom: 10px;
}

.site-title {
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.site-tagline {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #555;
    margin: 6px 0 0 4px; /* Slight offset to visually center with large letter spacing */
}

/* 2. Horizontal Navigation */
.site-navigation {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1; /* The clean separator line */
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px; /* Spacing between menu items */
}

.nav-menu li a {
    text-decoration: none;
    font-family: "Hero", sans-serif;
    color: #666;
    font-size: 16px;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
    font-weight: 300;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: #000;
}

.static-page-container {
    max-width: var(--max-width); /* Narrower for better readability */
    margin: 60px auto 100px;
    padding: 0 20px;
    line-height: 1.8;
    color: #333;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-family: "Didot", "Playfair Display", serif;
    font-size: 48px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-content p {
    margin-bottom: 25px;
    font-size: 16px;
}

/* Ensure images inside pages are responsive */
.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .site-title { font-size: 26px; letter-spacing: 8px; }
    .site-tagline { font-size: 9px; letter-spacing: 4px; }
    .nav-menu { gap: 16px; }
    .nav-menu li a { font-size: 10px; letter-spacing: 1px; }
}

/* Hero Styles */
.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 100px);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

/* Featured Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 { font-size: 24px; text-transform: uppercase; }
.view-all { font-size: 12px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid #000; }

/* Card Overlay on Hover */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-overlay span {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
}

.card-thumb:hover .card-overlay { opacity: 1; }

.card-meta h3 { font-size: 14px; margin: 10px 0 2px; text-transform: uppercase; }
.card-meta p { font-size: 11px; color: #888; text-transform: uppercase; }

/* Responsive Grid */
.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cols desktop */
    gap: 30px;
}

@media (max-width: 1280px) { .model-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }

/* Filter UI */
.filter-container { margin: 50px 0; border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.filter-group { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.filter-btn { cursor: pointer; text-transform: uppercase; font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.filter-btn.active { color: #888; }

/* Image Animation Wrapper */
.card-thumb { overflow: hidden; position: relative; aspect-ratio: 3/4; background: var(--gray); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card-thumb:hover img { transform: scale(1.05); }


.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr; /* Sidebar on left, Gallery on right */
    gap: 60px;
    margin-top: 50px;
}

.stats-list { list-style: none; padding: 0; margin: 30px 0; border-top: 1px solid #eee; }
.stats-list li { 
    display: flex; 
    justify-content: space-between; 
    padding: 10px 0; 
    border-bottom: 1px solid #eee;
    font-size: 13px;
    text-transform: uppercase;
}
.stats-list li span { font-weight: bold; }

.btn-download {
    display: inline-block;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Layout Styling */
.model-profile-container {
    max-width: var(--max-width);
    margin: 40px auto 80px;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
}

/* 1. Viewport & Image Slider */
.model-slider-viewport {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.main-display-frame {
    width: 100%;
    max-width: 550px; /* Aligns with the tall editorial visual aspect */
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.main-display-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* Minimalist Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    padding: 10px;
    transition: color 0.2s ease;
    user-select: none;
    z-index: 10;
}

.slider-arrow:hover { color: #000; }
.arrow-prev { left: 5px; }
.arrow-next { right: 5px; }

/* 2. Identity & Inline Stats */
.profile-title {
    font-family: "Didot", "Playfair Display", Georgia, serif;
    font-size: 56px;
    font-weight: normal;
    margin: 20px 0 10px;
    letter-spacing: -0.5px;
}

.stats-inline-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 16px;
    color: #444;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.stats-inline-bar span {
    display: inline-block;
}

/* 3. Composite Card Trigger */
.comp-card-trigger {
    margin-bottom: 50px;
}

.comp-card-trigger a {
    font-size: 1.5em;
    color: #000;
    text-decoration: none;
}

.lightbox-trigger {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* 4. Portfolio Thumbnails Grid */
.gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.thumb-card {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    background-color: #f9f9f9;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-card:hover { opacity: 0.8; }
.thumb-card.active { border-color: #000; }

/* 5. Composite Lightbox Overlay */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #111;
    cursor: pointer;
    user-select: none;
}

/* Homepage Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 60px auto;
    min-height: 500px;
}

.showcase-item {
    text-align: center;
    /* We handle transitions in JS via GSAP for better control */
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 15px;
}

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

.model-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin: 0;
}

.model-listing-page {
    margin: 20px auto;
}

.listing-header {
    text-align: center;
    margin-bottom: 50px;
}

.alphabet-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.letter {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.letter:hover, .letter.is-active {
    color: #000;
}

.letter.is-active {
    border-bottom: 2px solid #000;
}

/* Grid Layout */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 20px;
}

.model-card .card-thumb {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 12px;
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.model-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.site-footer {
    padding: 30px 0;
    border-top: 1px solid #eee;
    background: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-branding {
    text-align: center;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.footer-contact {
    text-align: right;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.instagram-gallery-feed {
    max-width: 100%;
    margin: 50px auto;
}
/* News Archive Grid */
/* Container Spacing */
.news-listing-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header Style */
.news-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-page-header h1 {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

.header-divider {
    width: 50px;
    height: 1px;
    background: #000;
    margin: 20px auto;
}

/* Responsive Grid */
/* Styling based on your common.css classes */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.news-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.news-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); } /* 2 Columns Tablet */
}

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; } /* 1 Column Mobile */
}

/* News Item Styling */
.news-item {
    transition: transform 0.4s ease;
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-thumbnail {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 20px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item:hover img {
    transform: scale(1.05);
}

/* Typography */
.news-date {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-more {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

.news-card a { text-decoration: none; color: inherit; display: block; }
.news-thumb { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 20px; background: #f4f4f4; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover img { transform: scale(1.05); }

.news-content time { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.news-content h2 { font-size: 20px; margin: 10px 0; font-weight: 600; line-height: 1.3; }
.news-content p { font-size: 14px; color: #555; line-height: 1.6; }
.read-more { font-size: 11px; text-transform: uppercase; border-bottom: 1px solid #000; margin-top: 15px; display: inline-block; }

/* Single News Post */
.single-news-post { max-width: 800px; margin: 80px auto; }
.news-header { text-align: center; margin-bottom: 50px; }
.news-header h1 { font-size: 48px; margin-top: 10px; font-weight: 700; }
.featured-news-image { margin-bottom: 50px; }
.news-body { font-size: 18px; line-height: 1.8; color: #333; }
.back-link { display: inline-block; margin-top: 50px; text-decoration: none; color: #000; font-weight: 600; }

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-header h1 { font-size: 32px; }
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-contact {
        text-align: center;
    }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .main-display-frame {
        max-width: 100%;
        height: 60vh;
    }
    .profile-title { font-size: 38px; }
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .slider-arrow { font-size: 24px; }
}

/* Mobile Adjustment */
@media (max-width: 900px) {
    .profile-layout { grid-template-columns: 1fr; }
    .talent-stats { text-align: center; }
    .stats-list { max-width: 400px; margin: 30px auto; }
}