/* =========================================================================
   Reformation Management — stylesheet
   Monochrome, mobile-first, responsive.
   ========================================================================= */

/* ---------- Self-hosted font (Hanken Grotesk, SIL OFL-1.1) --------------- */

@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/hanken-grotesk-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/hanken-grotesk-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/hanken-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/hanken-grotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/hanken-grotesk-700.woff2') format('woff2');
}

:root {
  --bg:        #ffffff;
  --fg:        #141414;
  --muted:     #8a8a8a;
  --muted-2:   #b4b4b4;
  --line:      #e6e6e6;
  --line-soft: #f0f0f0;
  --logo-dark: #3a3a3a;
  --logo-light:#9a9a9a;
  --accent:      #c43d2e;
  --accent-dark: #a8321f;
  --accent-tint: #fbeae6;
  --radius: 20px;
  --maxw: 1240px;
  --pad: 24px;
  --font: 'Hanken Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; max-width: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Logo ---------------------------------------------------------- */

.logo {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo .bold  { font-weight: 700; color: var(--accent); }
.logo .light { font-weight: 300; color: var(--logo-light); }

/* ---------- Header -------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 8px 16px;
  border-radius: 999px;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: var(--accent-tint); color: var(--accent); }
.nav a.is-active { background: var(--accent); color: #fff; }
.nav a.icon-link,
.site-footer a.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

/* ---------- Intro band ---------------------------------------------------- */

.intro {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
}
.intro-mark {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  margin: 0;
  font-size: clamp(140px, 20vw, 340px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--accent-tint);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.intro .container {
  position: relative;
  z-index: 1;
}
.intro h1 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(30px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.intro .lede {
  margin: 22px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
}
.intro h1.lede {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}

/* ---------- Roster -------------------------------------------------------- */

.roster { padding-bottom: 40px; }

.roster .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px 40px;
  padding-top: 8px;
}

.model {
  --tilt: 0deg;
  position: relative;
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 14px 14px 0;
  box-shadow: 0 14px 26px rgba(20,20,20,.13), 0 3px 8px rgba(20,20,20,.07);
  transform: rotate(var(--tilt));
  transition: transform .3s ease, box-shadow .3s ease;
}
.model:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 26px 40px rgba(20,20,20,.18), 0 6px 16px rgba(20,20,20,.1);
  z-index: 5;
}

.model:nth-child(6n+1) { --tilt: -2deg; }
.model:nth-child(6n+2) { --tilt: 1.6deg; }
.model:nth-child(6n+3) { --tilt: -1deg; }
.model:nth-child(6n+4) { --tilt: 2deg; }
.model:nth-child(6n+5) { --tilt: -1.6deg; }
.model:nth-child(6n+6) { --tilt: 1deg; }

.model-photo .shot {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--line-soft);
}
.model-photo .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.model:hover .model-photo .shot img { transform: scale(1.06); }
.model-photo .shot-empty {
  display: flex;
}

.model-info {
  min-width: 0;
  padding: 16px 4px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.model-name {
  margin: 0;
  min-width: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.model-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.model-socials a {
  width: 30px;
  height: 30px;
  color: var(--accent);
  background: var(--accent-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.model-socials a:hover { background: var(--accent); color: #fff; }
.social-icon { width: 14px; height: 14px; fill: currentColor; display: block; }
.model-socials .no-social {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  background: var(--line-soft);
  padding: 7px 13px;
  border-radius: 999px;
}

/* ---------- Load-in animation (pure CSS, no JS required) ------------------ */

.model {
  animation: model-fade-in .7s ease both;
}

@keyframes model-fade-in {
  from { opacity: 0; transform: translateY(18px) rotate(var(--tilt)); }
  to   { opacity: 1; transform: rotate(var(--tilt)); }
}

/* ---------- Contact page -------------------------------------------------- */

.page-head { padding: 72px 0 12px; }
.page-head h1 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(34px, 7vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 44px 0 96px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}

.contact-info p { margin: 0 0 22px; max-width: 46ch; color: #3c3c3c; }
.contact-info .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.contact-block { margin-bottom: 30px; }
.contact-block a { border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color .2s ease, color .2s ease; }
.contact-block a:hover { border-color: var(--accent); color: var(--accent); }
.contact-block address { font-style: normal; }

/* Form */
.form-row { margin-bottom: 26px; }
.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--fg);
  padding: 8px 0;
  border-radius: 0;
  transition: border-color .2s ease;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--accent); }

.btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ---------- Footer -------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer .foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a, .site-footer address {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  transition: color .2s ease;
}
.site-footer a:hover { color: var(--accent); }
.site-footer .copyright { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Responsive ---------------------------------------------------- */

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  :root { --pad: 16px; }
  .site-header .container { height: 56px; }
  .logo { font-size: 13px; letter-spacing: 0.1em; white-space: normal; }
  .nav { gap: 16px; flex-shrink: 0; }
  .nav a { font-size: 11px; letter-spacing: 0.12em; }

  .intro { padding: 48px 0 16px; }
  .intro-mark { display: none; }

  .roster .container { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 26px 20px; }
  .model { padding: 10px 10px 0; }
  .model-info { padding: 10px 2px 14px; gap: 6px 10px; }
  .model-name { font-size: 14px; }
  .model-socials { gap: 6px; }
  .model-socials a { width: 24px; height: 24px; }
  .model-socials a .social-icon { width: 12px; height: 12px; }
  .model-socials .no-social { font-size: 10px; padding: 6px 10px; }

  .model:nth-child(6n+1) { --tilt: -1deg; }
  .model:nth-child(6n+2) { --tilt: .8deg; }
  .model:nth-child(6n+3) { --tilt: -.6deg; }
  .model:nth-child(6n+4) { --tilt: 1deg; }
  .model:nth-child(6n+5) { --tilt: -.8deg; }
  .model:nth-child(6n+6) { --tilt: .6deg; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none; animation: none; }
}
