:root {
  --ink: #0d0b0a;
  --paper: #eee7dc;
  --paper-2: #d8cec0;
  --bone: #f8f2e8;
  --line: rgba(13, 11, 10, 0.18);
  --line-strong: rgba(13, 11, 10, 0.42);
  --muted: #74695f;
  --oxblood: #6f1820;
  --oxblood-deep: #3b0b11;
  --silver: #b8b5ad;
  --shadow: 0 26px 80px rgba(17, 12, 8, 0.22);
  --serif: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  --sans: "Avenir Next Condensed", "DIN Condensed", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", "Gill Sans", "Helvetica Neue", sans-serif;
  --content-width: min(1180px, calc(100vw - 44px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 24, 32, 0.14), transparent 28rem),
    linear-gradient(90deg, rgba(13, 11, 10, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 72px 72px, auto;
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)),
    repeating-radial-gradient(circle at 18% 24%, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 4px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: var(--content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(248, 242, 232, 0.2);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(13, 11, 10, 0.82);
  box-shadow: 0 18px 45px rgba(13, 11, 10, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 9px;
  background: rgba(13, 11, 10, 0.92);
  border-color: rgba(248, 242, 232, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(248, 242, 232, 0.42);
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.08em;
}

.brand strong,
.brand small,
.site-nav a,
.menu-toggle,
.button,
.section-number,
.section-index,
.role-line,
.quick-facts span,
.casting-list span,
.info-grid span,
figcaption {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(248, 242, 232, 0.62);
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(248, 242, 232, 0.74);
  font-size: 11px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--bone);
  background: rgba(248, 242, 232, 0.13);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--bone);
  background: transparent;
  font-size: 12px;
}

.section-shell {
  width: var(--content-width);
  margin-inline: auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 130px 0 80px;
}

.hero-copy {
  max-width: 680px;
  animation: lift-in 760ms ease both;
}

.role-line {
  margin: 0 0 28px;
  color: var(--oxblood);
  font-size: clamp(12px, 1.3vw, 15px);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.075em;
}

h1 {
  max-width: 760px;
  font-size: clamp(76px, 14vw, 184px);
  line-height: 0.78;
}

h2 {
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.88;
}

.hero-lede,
.manifesto p,
.section-content p,
.reel-copy p,
.model-heading p,
.dossier p,
.contact-card p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--bone);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--oxblood);
  color: var(--oxblood);
}

.hero-gallery {
  position: relative;
  min-height: 660px;
  animation: lift-in 900ms 120ms ease both;
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--bone);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(248, 242, 232, 0.45);
  pointer-events: none;
}

.hero-card-large {
  top: 0;
  right: 7%;
  width: min(80%, 430px);
  height: 560px;
}

.hero-card-small {
  bottom: 24px;
  left: 0;
  width: 48%;
  min-width: 230px;
  height: 330px;
  transform: rotate(-3deg);
}

.hero-card img {
  filter: contrast(1.04) saturate(0.9);
}

figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--bone);
  background: rgba(13, 11, 10, 0.72);
  font-size: 10px;
}

.temporary-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quick-facts {
  width: var(--content-width);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 120px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.quick-facts div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts span,
.casting-list span,
.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.quick-facts strong,
.casting-list strong,
.info-grid strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 400;
  line-height: 1;
}

.manifesto {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.98fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding-bottom: 128px;
}

.section-index {
  color: var(--oxblood);
  font-size: 14px;
}

.manifesto p {
  margin: 10px 0 0;
}

.split-section {
  width: var(--content-width);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin: 0 auto 140px;
}

.section-media {
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.film-frame {
  position: relative;
  border: 18px solid var(--ink);
}

.film-frame::before,
.film-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 26px;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    repeating-linear-gradient(to bottom, transparent 0 18px, var(--bone) 18px 27px, transparent 27px 45px);
}

.film-frame::before {
  left: 0;
}

.film-frame::after {
  right: 0;
}

.section-number {
  margin: 0 0 24px;
  color: var(--oxblood);
  font-size: 12px;
}

.section-content p {
  margin: 28px 0 0;
}

.casting-list {
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.casting-list article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.inline-link {
  display: inline-block;
  margin-top: 34px;
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.reel-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 0.78fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: stretch;
  margin-bottom: 150px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  background: rgba(248, 242, 232, 0.48);
}

.reel-copy p {
  margin-bottom: 0;
}

.reel-player {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(111, 24, 32, 0.82), rgba(13, 11, 10, 0.98)),
    url("assets/generated/still-cinema.png") center / cover;
  isolation: isolate;
}

.reel-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 11, 10, 0.7);
}

.play-dot {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(248, 242, 232, 0.62);
  border-radius: 50%;
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-block: 12px solid transparent;
  border-left: 18px solid var(--bone);
  transform: translate(-50%, -50%);
}

.reel-player strong {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
}

.reel-player small {
  color: rgba(248, 242, 232, 0.68);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-section {
  padding: 116px 0 132px;
  color: var(--bone);
  background:
    radial-gradient(circle at 72% 10%, rgba(111, 24, 32, 0.36), transparent 34rem),
    var(--ink);
}

.model-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
  margin-bottom: 58px;
}

.model-heading p:not(.section-number) {
  color: rgba(248, 242, 232, 0.64);
}

.contact-sheet {
  width: min(1360px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.35fr;
  gap: 12px;
  margin: 0 auto;
}

.contact-sheet figure {
  min-height: 520px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 242, 232, 0.16);
  background: #181514;
}

.contact-sheet figure:nth-child(2) {
  margin-top: 74px;
}

.contact-sheet figure:nth-child(3) {
  margin-top: 32px;
}

.contact-sheet figure:nth-child(4) {
  min-height: 440px;
  margin-top: 118px;
}

.contact-sheet img {
  filter: grayscale(0.26) contrast(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.contact-sheet figure:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.02);
}

.dossier {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  padding: 140px 0;
}

.dossier p {
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.info-grid article {
  min-height: 172px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(248, 242, 232, 0.34);
}

.contact-section {
  width: var(--content-width);
  margin: 0 auto 90px;
}

.contact-card {
  min-height: 530px;
  display: grid;
  align-content: center;
  max-width: 920px;
  padding: clamp(34px, 8vw, 86px);
  color: var(--bone);
  background:
    linear-gradient(115deg, rgba(13, 11, 10, 0.86), rgba(59, 11, 17, 0.94)),
    url("assets/generated/beauty-studio.png") right center / auto 130% no-repeat;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 680px;
}

.contact-card p:not(.section-number):not(.copy-status) {
  max-width: 620px;
  color: rgba(248, 242, 232, 0.72);
}

.contact-card .button {
  border-color: rgba(248, 242, 232, 0.7);
}

.contact-card .button-primary {
  color: var(--ink);
  background: var(--bone);
}

.contact-card .button-secondary {
  color: var(--bone);
}

.copy-status {
  min-height: 20px;
  margin: 18px 0 0;
  color: var(--silver);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  width: var(--content-width);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  :root {
    --content-width: min(100vw - 28px, 760px);
  }

  .site-header {
    top: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    padding: 16px;
    border: 1px solid rgba(248, 242, 232, 0.2);
    border-radius: 26px;
    background: rgba(13, 11, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px;
  }

  .hero,
  .split-section,
  .reel-panel,
  .model-heading,
  .dossier,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-gallery {
    min-height: 610px;
  }

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

  .quick-facts div:nth-child(2) {
    border-right: 0;
  }

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

  .contact-sheet figure,
  .contact-sheet figure:nth-child(2),
  .contact-sheet figure:nth-child(3),
  .contact-sheet figure:nth-child(4) {
    min-height: 430px;
    margin-top: 0;
  }

  .contact-card {
    background:
      linear-gradient(115deg, rgba(13, 11, 10, 0.9), rgba(59, 11, 17, 0.96)),
      url("assets/generated/beauty-studio.png") center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100vw - 20px);
    padding-left: 11px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(68px, 23vw, 112px);
  }

  h2 {
    font-size: clamp(42px, 15vw, 72px);
  }

  .hero-lede,
  .manifesto p,
  .section-content p,
  .reel-copy p,
  .model-heading p,
  .dossier p,
  .contact-card p {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-gallery {
    min-height: 540px;
  }

  .hero-card-large {
    right: 0;
    width: 82%;
    height: 430px;
  }

  .hero-card-small {
    width: 52%;
    min-width: 176px;
    height: 250px;
  }

  .temporary-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 18px;
    padding-top: 500px;
  }

  .quick-facts,
  .info-grid,
  .contact-sheet {
    grid-template-columns: 1fr;
  }

  .quick-facts div,
  .quick-facts div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-media {
    min-height: 390px;
  }

  .film-frame {
    border-width: 10px;
  }

  .reel-panel,
  .contact-card {
    padding: 28px;
  }

  .reel-player {
    min-height: 260px;
    text-align: center;
  }

  .model-section {
    padding-block: 78px;
  }

  .contact-sheet figure,
  .contact-sheet figure:nth-child(2),
  .contact-sheet figure:nth-child(3),
  .contact-sheet figure:nth-child(4) {
    min-height: 390px;
  }

  .dossier {
    padding-block: 88px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
