/* ===========================
   UNDER FIVE EIGHT — Styles
   =========================== */

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

:root {
    --black: #0a0a0a;
    --white: #fafaf9;
    --cream: #f5f0eb;
    --gray-100: #f0ece7;
    --gray-200: #e0dbd4;
    --gray-300: #b8b2a8;
    --gray-500: #6b6560;
    --gray-700: #3d3833;
    --accent: #c4a882;
    --accent-dark: #a8865e;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.italic, .hero-italic {
    font-style: italic;
}

/* --- Typography Helpers --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.section-eyebrow.light {
    color: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background: var(--gray-700);
}

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

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

.btn-outline.light {
    color: var(--white);
    border-color: var(--white);
}

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

.btn-full {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.3;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--black);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 901px) {
    .nav-links {
        display: flex !important;
    }
    .nav-toggle {
        display: none !important;
    }
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-500);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    padding: 8px 20px;
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black) !important;
    border-color: var(--white);
}

.navbar.scrolled .nav-cta {
    border-color: var(--black) !important;
    color: var(--black) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--black);
    color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1714 0%, #2c2520 40%, #1a1714 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 168, 130, 0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-actions .btn-primary:hover {
    background: var(--cream);
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===========================
   TICKER
   =========================== */
.ticker {
    background: var(--black);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
}

.ticker-item {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.ticker-divider {
    color: var(--accent);
    font-size: 0.6rem;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
   =========================== */
.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    padding: 36px 0;
    border-top: 1px solid var(--gray-200);
}

.value-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===========================
   MODELS
   =========================== */
.models {
    padding: 100px 0 120px;
    background: var(--cream);
}

.section-header {
    margin-bottom: 60px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.model-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.model-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.placeholder-img {
    background: linear-gradient(145deg, #d4cdc4 0%, #bdb5aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Model Carousel */
.model-carousel {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .model-image {
    min-width: 100%;
    aspect-ratio: auto;
    height: 100%;
}

.carousel-track .model-image img,
.carousel-track .model-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.model-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--white);
}

.model-info {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.model-info h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
}

.model-height {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.models-cta {
    text-align: center;
}

/* ===========================
   RUNWAY
   =========================== */
.runway {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #1a1714 0%, #2c2520 50%, #1a1714 100%);
    overflow: hidden;
}

.runway-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(196, 168, 130, 0.06) 0%, transparent 60%);
}

.runway-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.runway-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 48px;
}

.runway-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.runway-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.runway-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ===========================
   BRANDS
   =========================== */
.brands {
    padding: 120px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.brands-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.brand-service {
    padding: 28px 0;
    border-top: 1px solid var(--gray-200);
}

.brand-service h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.brand-service p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===========================
   COLLABORATORS
   =========================== */
.collaborators {
    padding: 120px 0;
    background: var(--cream);
}

.collaborators-content {
    max-width: 600px;
}

.collaborators-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ===========================
   APPLY / CASTING
   =========================== */
.apply {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1714 0%, #2c2520 50%, #1a1714 100%);
    color: var(--white);
}

.apply-content {
    max-width: 680px;
    margin: 0 auto;
}

.apply-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 48px;
}

.apply .section-eyebrow {
    color: var(--accent);
}

.apply .section-title {
    color: var(--white);
}

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

.apply .btn-primary:hover {
    background: var(--cream);
}

.apply .form-disclaimer {
    color: rgba(255,255,255,0.3);
}

.apply .file-upload-content p {
    color: rgba(255,255,255,0.5);
}

.apply .file-upload-content svg {
    color: rgba(255,255,255,0.3);
}

.apply .file-upload-link {
    color: var(--accent);
}

.apply .label-hint {
    color: rgba(255,255,255,0.3);
}

.apply-success p {
    color: rgba(255,255,255,0.6);
}

.apply-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
}

.label-hint {
    font-weight: 400;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group select option {
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

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

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.15);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
}

.file-upload:hover {
    border-color: var(--accent);
}

.file-upload-content svg {
    color: var(--gray-300);
    margin: 0 auto 12px;
}

.file-upload-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.file-upload-link {
    color: var(--accent-dark);
    font-weight: 500;
    cursor: pointer;
}

.file-hint {
    font-size: 0.75rem !important;
    color: var(--gray-300) !important;
    margin-top: 4px;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.file-item {
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--white);
    padding: 6px 12px;
    border: 1px solid var(--gray-200);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-300);
    text-align: center;
    width: 100%;
    margin-top: 8px;
    line-height: 1.6;
}

.apply-success {
    text-align: center;
    padding: 60px 0;
}

.apply-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.apply-success p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* ===========================
   COMMUNITY
   =========================== */
.community {
    padding: 100px 0;
    text-align: center;
}

.community-content {
    max-width: 560px;
    margin: 0 auto;
}

.community-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    padding: 12px 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--black);
    color: var(--black);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

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

    .runway-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        color: var(--black) !important;
        font-size: 1.1rem;
    }

    .nav-cta {
        border-color: var(--black) !important;
    }

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

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
