:root {
  --black: #0a0a0a;
  --white: #f7f5f0;
  --offwhite: #ede9e2;
  --warm-gray: #b8b0a4;
  --accent: #c8a96e;
  --red: #8c1c1c;
  --ink: #1a1714;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Didact Gothic', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--ink); }
nav.dark .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { color: var(--accent); opacity: 1; }
nav.scrolled .nav-links a { color: var(--ink); opacity: 0.6; }
nav.scrolled .nav-links a:hover { opacity: 1; }
nav.scrolled .nav-links a.active { color: var(--accent); opacity: 1; }
nav.dark .nav-links a { color: var(--ink); opacity: 0.6; }
nav.dark .nav-links a:hover { opacity: 1; }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  padding: 10px 22px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 20px;
}
.lang-btn {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.9);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  padding: 4px 8px;
  font-family: 'Didact Gothic', sans-serif;
  transition: color 0.3s, border-color 0.3s;
}
.lang-btn.active { color: rgba(247,245,240,0.9); border-bottom: 2px solid var(--accent); }
.lang-btn:hover { color: var(--white); }
nav.scrolled .lang-btn { color: rgba(26,23,20,0.6); }
nav.scrolled .lang-btn.active { color: var(--ink); border-bottom: 2px solid var(--accent); }
nav.scrolled .lang-btn:hover { color: var(--ink); }
nav.dark .lang-btn { color: rgba(26,23,20,0.6); }
nav.dark .lang-btn.active { color: var(--ink); border-bottom: 2px solid var(--accent); }
.lang-divider { font-size: 9px; color: rgba(247,245,240,0.6); transition: color 0.3s; }
nav.scrolled .lang-divider { color: rgba(26,23,20,0.3); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(247,245,240,0.3);
  padding: 8px 10px;
  border-radius: 2px;
  z-index: 9100;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
nav.scrolled .hamburger { border-color: rgba(26,23,20,0.25); }
nav.scrolled .hamburger span { background: var(--ink); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  text-align: center;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a.active { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: rgba(247,245,240,0.4);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Didact Gothic', sans-serif;
}

/* MARQUEE */
.marquee-wrap {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 28px 0 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
}
.section-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-link:hover { opacity: 1; }
.section-link::after { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }

/* CARDS */
.card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.card:hover .card-img { transform: scale(1.04); }
.card:hover .card-overlay { opacity: 1; }
.card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity 0.4s;
}
.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: var(--white);
  z-index: 2;
}
.card-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}
.card-title.large { font-size: 32px; }
.card-title.medium { font-size: 22px; }
.card-title.small { font-size: 16px; }
.card-date {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(247,245,240,0.45);
  margin-top: 8px;
  display: block;
}

/* EDITORIAL GRID */
.editorial { padding: 100px 60px; }
.grid-main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.card-1 { grid-column: 1/8; grid-row: 1; height: 580px; }
.card-2 { grid-column: 8/13; grid-row: 1; height: 280px; }
.card-3 { grid-column: 8/11; grid-row: 2; height: 300px; }
.card-4 { grid-column: 11/13; grid-row: 2; height: 300px; }
.grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.card-s { height: 340px; }
.p1 { background: linear-gradient(160deg, #2c2420 0%, #1a1714 100%); }
.p2 { background: linear-gradient(135deg, #c4b49a 0%, #8c7a6a 100%); }
.p3 { background: linear-gradient(160deg, #3d3530 0%, #1e1a17 100%); }
.p4 { background: linear-gradient(160deg, #6b5a50 0%, #3d3530 100%); }
.p5 { background: linear-gradient(160deg, #8c7a6a 0%, #5a4840 100%); }
.p6 { background: linear-gradient(160deg, #c8a96e 0%, #8c6a30 100%); }

/* MODELS */
.models { padding: 100px 60px; background: var(--ink); }
.models .section-title { color: var(--white); }
.models .section-label { color: var(--accent); }
.models .section-link { color: var(--white); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.model-card { position: relative; cursor: pointer; }
.model-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  filter: grayscale(30%);
  transition: filter 0.4s;
}
.model-card:hover .model-img { filter: grayscale(0%); }
.model-info { padding: 16px 0 0; }
.model-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}
.model-stats {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.35);
  display: flex; flex-direction: column; gap: 6px;
}
.model-location { display: flex; gap: 8px; align-items: center; }
.model-tag { color: var(--accent); }

/* MANIFESTO */
.manifesto {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-left .label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.manifesto-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; line-height: 1.1; margin-bottom: 32px;
}
.manifesto-left h2 em { font-style: italic; color: var(--accent); }
.manifesto-body {
  font-size: 14px; line-height: 1.9;
  color: rgba(26,23,20,0.65); margin-bottom: 20px;
}
.manifesto-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: var(--ink); margin-top: 32px; opacity: 0.5;
}
.manifesto-right { position: relative; }
.manifesto-visual {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #e8e0d4 0%, #c8b8a4 100%);
  position: relative; overflow: hidden;
}
.manifesto-num {
  position: absolute; bottom: -20px; right: -20px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 200; font-size: 160px;
  color: rgba(0,0,0,0.04); line-height: 1; pointer-events: none;
}
.manifesto-accent-bar {
  position: absolute; top: 40px; left: -2px;
  width: 3px; height: 80px; background: var(--accent);
}

/* SUBMIT */
.submit-section {
  padding: 120px 60px; background: var(--black);
  text-align: center; position: relative; overflow: hidden;
}
.submit-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 300; color: rgba(255,255,255,0.03);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
}
.submit-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.submit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; color: var(--white);
  line-height: 1.05; max-width: 700px; margin: 0 auto 24px;
}
.submit-title em { font-style: italic; color: var(--accent); }
.submit-body {
  font-size: 14px; line-height: 1.8;
  color: rgba(247,245,240,0.45);
  max-width: 480px; margin: 0 auto 48px;
}
.submit-options { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--black);
  padding: 16px 40px; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #e0bf80; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(247,245,240,0.25);
  color: var(--white); padding: 16px 40px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* PARTNERSHIP */
.partnership {
  background: #0d0d0d;
  border-top: 1px solid rgba(200,169,110,0.2);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 48px 60px;
}
.partnership-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  text-align: center; margin-bottom: 32px;
}
.partnership-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
}
.partner-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 0 48px; text-decoration: none;
}
.partner-item:not(:last-child) { border-right: 1px solid rgba(247,245,240,0.1); }
.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); transition: color 0.2s; white-space: nowrap;
}
.partner-item:hover .partner-name { color: var(--accent); }
.partner-sub {
  font-size: 8px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(247,245,240,0.28);
}
.partner-active .partner-name { color: var(--accent); }
.partner-active .partner-sub { color: rgba(200,169,110,0.5); }

/* FOOTER */
footer { background: var(--ink); color: var(--white); padding: 60px 60px 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 22px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.footer-brand p {
  font-size: 12px; line-height: 1.8;
  color: rgba(247,245,240,0.35); max-width: 280px;
}
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 12px; text-decoration: none;
  color: rgba(247,245,240,0.45);
  transition: color 0.2s; letter-spacing: 0.04em;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(247,245,240,0.08);
  font-size: 10px; color: rgba(247,245,240,0.25);
  letter-spacing: 0.08em; gap: 16px;
}
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(247,245,240,0.35); transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  margin: 0 60px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* DARK TOGGLE */
.dark-toggle {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--ink);
  border: 1px solid rgba(247,245,240,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 300; font-size: 18px;
  transition: background 0.3s, border-color 0.3s;
  color: var(--white);
}
.dark-toggle:hover { border-color: var(--accent); }

/* DARK MODE */
body.dark-mode { background: #0a0a0a; color: var(--white); }
body.dark-mode .editorial { background: #0a0a0a; }
body.dark-mode .manifesto { background: #0a0a0a; }
body.dark-mode nav.scrolled { background: rgba(10,10,10,0.96); }
body.dark-mode nav.scrolled .nav-logo { color: var(--white); }
body.dark-mode nav.scrolled .nav-links a { color: rgba(247,245,240,0.7); }
body.dark-mode nav.scrolled .nav-links a:hover { color: var(--white); opacity: 1; }
body.dark-mode nav.scrolled .hamburger span { background: var(--white); }
body.dark-mode nav.scrolled .hamburger { border-color: rgba(247,245,240,0.3); }
body.dark-mode nav.scrolled .lang-btn { color: rgba(247,245,240,0.6); }
body.dark-mode nav.scrolled .lang-btn.active { color: var(--accent); }
body.dark-mode .section-title { color: var(--white); }
body.dark-mode .manifesto-left h2 { color: var(--white); }
body.dark-mode .manifesto-body { color: rgba(247,245,240,0.6); }
body.dark-mode .manifesto-signature { color: rgba(247,245,240,0.4); }
body.dark-mode .dark-toggle { background: var(--white); color: var(--ink); }
body.dark-mode .inner-page { background: #0a0a0a; }
body.dark-mode .inner-page-title { color: var(--white); }

/* GALLERY MODAL */
.gallery-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 1000; flex-direction: column;
}
.gallery-modal.open { display: flex; }
.gallery-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(247,245,240,0.08);
  flex-shrink: 0;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: var(--white); letter-spacing: 0.08em;
}
.gallery-tag {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-right: 16px;
}
.gallery-close {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,245,240,0.4);
  background: none; border: none; cursor: pointer;
  font-family: 'Didact Gothic', sans-serif; transition: color 0.2s;
}
.gallery-close:hover { color: var(--white); }
.gallery-main {
  flex: 1; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.gallery-main img {
  max-height: 100%; max-width: 100%;
  object-fit: contain; display: block; transition: opacity 0.3s ease;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(247,245,240,0.2);
  color: var(--white); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-nav:hover { border-color: var(--accent); background: rgba(200,169,110,0.1); }
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-footer {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 20px; flex-shrink: 0;
}
.gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(247,245,240,0.2);
  cursor: pointer; transition: background 0.2s; border: none;
}
.gallery-dot.active { background: var(--accent); }
.gallery-thumbs {
  display: flex; gap: 8px;
  padding: 0 40px 20px; overflow-x: auto;
  flex-shrink: 0; scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 60px; height: 60px;
  object-fit: cover; opacity: 0.4; cursor: pointer;
  transition: opacity 0.2s; flex-shrink: 0;
}
.gallery-thumb.active { opacity: 1; outline: 1px solid var(--accent); }

/* BACK BUTTON */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: gap 0.2s;
  width: 100%;
}
.back-btn:hover { gap: 16px; }
.back-btn::before { content: '←'; font-size: 14px; }

@media (max-width: 1024px) {
  .back-btn { padding: 16px 24px; }
}

/* INNER PAGES */
.inner-page { min-height: 100vh; background: var(--white); padding-top: 80px; }
.inner-page-header {
  padding: 60px 60px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.inner-page-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.inner-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300; line-height: 1.05;
}

/* EDITORIAL PAGE */
.editorial-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 2px;
}
.editorial-page-card {
  position: relative; height: 380px;
  overflow: hidden; cursor: pointer;
}
.editorial-page-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.editorial-page-card:hover img { transform: scale(1.04); }
.editorial-page-card .card-overlay { opacity: 0.5; }
.editorial-page-card:hover .card-overlay { opacity: 0.75; }
.editorial-page-card .card-content { padding: 20px; }
.editorial-page-card .card-title { font-size: 16px; }

/* FACES PAGE */
.faces-page-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 40px 60px;
}

/* APPLY PAGE */
.apply-page { padding: 60px 60px; max-width: 700px; margin: 0 auto; }
.apply-form { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.apply-field { display: flex; flex-direction: column; gap: 8px; }
.apply-field label {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
}
.apply-field input,
.apply-field select,
.apply-field textarea {
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white); padding: 14px 16px;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 13px; color: var(--ink);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus { border-color: var(--accent); }
.apply-field textarea { resize: vertical; min-height: 120px; }
.apply-submit {
  background: var(--ink); color: var(--white);
  border: none; padding: 16px 40px;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  align-self: flex-start; transition: background 0.2s;
}
.apply-submit:hover { background: var(--accent); }

/* BTS */
.bts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 2px;
}
.bts-card { position: relative; height: 300px; overflow: hidden; cursor: pointer; }
.bts-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.4s, transform 0.5s; }
.bts-card:hover img { filter: grayscale(0%); transform: scale(1.04); }
.bts-card-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,245,240,0.7);
  background: rgba(10,10,10,0.5); padding: 4px 10px;
}

/* LOADING */
#loading-screen {
  position: fixed; inset: 0; background: var(--ink);
  z-index: 9999; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; text-align: center; padding: 40px;
  animation: loadingFadeOut 0.8s ease 2.2s forwards;
  pointer-events: none;
}
@keyframes loadingFadeOut {
  from { opacity: 1; visibility: visible; }
  to { opacity: 0; visibility: hidden; }
}
#loading-screen.hidden { display: none; }
.loading-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--white);
}
.loading-logo em { color: var(--accent); font-style: italic; }
.loading-bar-wrap {
  width: 160px; height: 1px;
  background: rgba(247,245,240,0.15);
  position: relative; overflow: hidden;
}
.loading-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 0%; background: var(--accent);
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { 0% { width: 0%; } 100% { width: 100%; } }
.loading-sub {
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(247,245,240,0.3);
}

/* HERO */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: rgba(255,255,255,0.04);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.15em;
}
.hero-issue {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px; opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 300; line-height: 0.95;
  color: var(--white); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-excerpt {
  font-size: 13px; line-height: 1.8;
  color: rgba(247,245,240,0.55);
  max-width: 340px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
  transition: color 0.2s;
}
.hero-cta:hover { color: var(--accent); }
.hero-cta::after {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.hero-cta:hover::after { width: 70px; }
.hero-right { position: relative; background: var(--offwhite); overflow: hidden; }
.hero-vol {
  position: absolute; bottom: 40px; left: 40px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 200; font-size: 80px;
  color: rgba(0,0,0,0.06); line-height: 1; pointer-events: none;
}
.hero-meta {
  position: absolute; top: 120px; right: 30px;
  writing-mode: vertical-rl;
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--warm-gray);
}
.hero-image-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  position: absolute; bottom: 40px; right: 40px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-switch { margin-left: auto; margin-right: 0; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { min-height: 70vh; padding: 100px 32px 60px; }
  .hero-right { min-height: 50vh; }

  .editorial { padding: 60px 24px; }
  .grid-main { grid-template-columns: 1fr; gap: 2px; }
  .card-1, .card-2, .card-3, .card-4 { grid-column: auto; grid-row: auto; height: 320px; }
  .grid-secondary { grid-template-columns: 1fr; }
  .card-s { height: 280px; }

  .models { padding: 60px 24px; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .manifesto { padding: 60px 24px; grid-template-columns: 1fr; }
  .manifesto-right { display: none; }

  .submit-section { padding: 80px 24px; }

  .partnership { padding: 40px 24px; }
  .partnership-logos { flex-direction: column; gap: 0; }
  .partner-item { border-right: none !important; border-bottom: 1px solid rgba(247,245,240,0.1); padding: 20px 0; width: 100%; text-align: center; }
  .partner-item:last-child { border-bottom: none; }

  footer { padding: 48px 24px 32px; overflow: hidden; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-social { gap: 20px; flex-wrap: wrap; }

  .inner-page-header { padding: 40px 24px 32px; }
  .editorial-page-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-page-card { height: 260px; }
  .faces-page-grid { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .bts-grid { grid-template-columns: repeat(2, 1fr); }
  .bts-card { height: 220px; }
  .apply-page { padding: 40px 24px; }
}
