:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --hover: #000000;
  --accent: #c8a96a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .2s;
}
.logo span { font-weight: 300; color: var(--muted); transition: color .2s; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-icon {
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  transition: color .2s, opacity .2s;
}
.search-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.search-icon:hover { opacity: 0.6; }

/* MENU text button (Milk style — all viewports) */
.menu-icon {
  width: auto;
  height: auto;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
  z-index: 200;
  color: var(--ink);
  transition: opacity .2s;
}
.menu-icon:hover { opacity: 0.6; }
.menu-icon-bars { display: none; }
.menu-icon::after {
  content: "MENU";
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: currentColor;
}
.menu-icon.open::after { content: "CLOSE"; }

/* Side drawer */
.menu-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 88vw;
  background: #fff;
  z-index: 150;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,.0,.2,1);
  padding: 92px 28px 32px;
  overflow-y: auto;
}
.menu-drawer.open { transform: translateX(0); }
.menu-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.menu-drawer a {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(0,0,0,0.9);
  display: inline-block;
  padding: 4px 0;
  transition: opacity .2s;
}
.menu-drawer a:hover { opacity: 0.5; }
.menu-drawer a.active { opacity: 0.4; }
.menu-drawer .drawer-divider {
  width: 100%; height: 1px; background: var(--line);
  margin: 24px 0 16px;
}
.menu-drawer .drawer-sub a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
body.menu-open { overflow: hidden; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-overlay.open { display: flex; }
.search-input {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 56px);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  width: 78vw;
  max-width: 880px;
  padding: 14px 0;
  outline: none;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.search-input::placeholder { color: #c9c9c9; font-style: italic; }
.search-input:focus { border-color: var(--ink); }
.search-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity .2s;
  color: var(--ink);
}
.search-close:hover { opacity: 1; }

/* Splash intro (homepage, once per session) */
.splash {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility 0s linear .7s;
}
.splash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-logo {
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(22px, 5.5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
  max-width: 92vw;
  padding: 0 16px;
  opacity: 0;
  animation: splashIn 1.6s cubic-bezier(.2,.6,.2,1) .25s forwards;
}
.splash-logo em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
@keyframes splashIn {
  0%   { opacity: 0; letter-spacing: 0.02em; }
  100% { opacity: 1; letter-spacing: 0.28em; }
}
@media (max-width: 520px) {
  .splash-logo {
    font-size: 20px;
    white-space: normal;
    line-height: 1.5;
    animation-name: splashInMobile;
  }
  @keyframes splashInMobile {
    0%   { opacity: 0; letter-spacing: 0.02em; }
    100% { opacity: 1; letter-spacing: 0.14em; }
  }
}

/* Homepage variant: transparent header over video, with top-gradient for legibility */
body.home .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}
body.home::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 90;
}
body.home .logo,
body.home .logo span,
body.home .search-icon,
body.home .menu-icon { color: #fff; }
body.home .menu-icon-bars span { background: #fff; }
body.home .hero {
  height: 100vh;
  height: 100dvh; /* iOS Safari: tracks URL-bar changes, no jump */
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 560px;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 32px 64px;
  color: #fff;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}
.hero-title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-cta {
  display: inline-block;
  border: 1px solid #fff;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.hero-cta:hover { background: #fff; color: #000; }

/* ---------- Sections ---------- */
section { padding: 100px 32px; max-width: 1600px; margin: 0 auto; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.section-title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: center;
  white-space: nowrap;
}
.section-link:hover { color: var(--muted); border-color: var(--muted); }

/* ---------- Division tiles (homepage) ---------- */
.divisions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.division {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}
.division-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease, filter .4s;
  filter: grayscale(0.2);
}
.division:hover .division-img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.division-label {
  position: absolute;
  left: 24px; bottom: 24px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  letter-spacing: -0.01em;
  z-index: 2;
}
.division::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* ---------- Model grid ---------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}

.model-card {
  display: block;
  position: relative;
  min-width: 0;
}
.model-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f3f3f3;
}
.model-photo-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .7s ease, filter .4s;
  filter: grayscale(0.4) contrast(1.02);
}
.model-card:hover .model-photo-img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.model-meta {
  padding: 14px 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.model-name {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.model-stats {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- Filters bar ---------- */
.filters {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.filters a {
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.filters a.active, .filters a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Page intro ---------- */
.page-intro {
  padding: 80px 32px 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.page-title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* ---------- Model detail page ---------- */
.model-detail-head {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.model-detail-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.model-detail-name {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.model-stats {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 28px;
  row-gap: 6px;
  font-size: 13px;
}
.model-stats dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.model-stats dd { letter-spacing: 0.04em; }
.model-ig {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.model-ig:hover { color: var(--muted); border-color: var(--muted); }

.model-gallery {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 32px 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.model-gallery figure { margin: 0; }
.model-gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: #f3f3f3;
}

.back-link {
  display: inline-block;
  margin: 32px 32px 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.back-link:hover { color: var(--ink); }

@media (max-width: 1024px) {
  .model-detail-head { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .model-detail-head { padding: 40px 20px 24px; }
  .model-gallery { padding: 32px 20px 64px; grid-template-columns: 1fr; gap: 16px; }
  .back-link { margin: 20px 20px 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  width: 92vw; height: 92vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-btn {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 36px;
  line-height: 1;
  padding: 12px 16px;
  opacity: 0.6;
  transition: opacity .2s;
  z-index: 2;
}
.lightbox-btn:hover { opacity: 1; }
.lightbox-close { top: 16px; right: 20px; font-size: 28px; font-family: inherit; }
.lightbox-prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}
.model-gallery img { cursor: zoom-in; }

@media (max-width: 720px) {
  .lightbox-prev, .lightbox-next { font-size: 28px; }
}

/* ---------- About / Contact pages ---------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  font-size: 17px;
  line-height: 1.7;
}
.prose p { margin-bottom: 1.4em; }
.prose h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 28px;
  margin: 2em 0 0.6em;
  letter-spacing: -0.01em;
}
.prose .lead {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 2em;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.contact-block { margin-bottom: 40px; }
.contact-block h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 400;
}
.contact-block p,
.contact-block a {
  font-size: 16px;
  line-height: 1.6;
  display: block;
}
.contact-block a:hover { color: var(--muted); }

form.contact-form { display: flex; flex-direction: column; gap: 20px; }
form.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font: inherit;
  font-size: 15px;
  background: transparent;
  outline: none;
  transition: border-color .2s;
}
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus { border-color: var(--ink); }
form.contact-form textarea { min-height: 120px; resize: vertical; }
form.contact-form button {
  align-self: flex-start;
  margin-top: 12px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s;
}
form.contact-form button:hover { background: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  color: #d8d8d8;
  padding: 80px 32px 32px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #222;
}
.footer-inner h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 8px; font-size: 13px; }
.footer-inner a:hover { color: #fff; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
  color: #a0a0a0;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; display: inline-block; }
.footer-bottom {
  max-width: 1600px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
}
.socials { display: flex; gap: 16px; }
.socials a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .divisions { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .header-inner { padding: 14px 16px; }
  .nav-secondary { display: none; }
  .logo { font-size: 13px; letter-spacing: 0.22em; }
  .header-actions { gap: 14px; }

  /* Mobile: opaque dark bar on the homepage so menu/search are always readable over the video */
  body.home .site-header {
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
  }

  section { padding: 48px 20px; }
  .page-intro { padding: 36px 20px 16px; }
  .page-eyebrow { margin-bottom: 10px; font-size: 10px; }
  .filters {
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 32px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .section-head { flex-direction: column; align-items: flex-start; }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
  .model-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .divisions { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .hero-content { padding: 0 20px 40px; }
  .prose { padding: 56px 20px; font-size: 16px; }
  .contact-grid { padding: 56px 20px; }
}
