/* ============================================================
   VÉRITÉ — Editorial Brutalism
   Playfair Display / Inter · Off-White, Schwarz, Pink
   ============================================================ */
:root {
  --bg: #fafafa;
  --fg: #09090b;
  --muted: #52525b;
  --pink: #e0257f;
  --line: #09090b;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  height: 60px;
  background: var(--bg);
  border-bottom: 2px solid var(--line);
}
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 700; font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.4rem 0;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink);
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 90px var(--pad) 40px;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}
.hero__type {
  position: relative; z-index: 2;
  font-size: clamp(4.2rem, 19vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; align-items: baseline;
  font-weight: 800;
  color: var(--fg);
  pointer-events: none;
}
.hero__word { display: inline-block; }
.hero__word--serif {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  text-transform: none;
  color: var(--pink);
}
.hero__img {
  position: absolute;
  right: clamp(1rem, 10vw, 10rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 32vw, 460px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 12px 12px 0 var(--pink);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  position: relative; z-index: 2;
  display: flex; gap: clamp(1.2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 6vh, 4rem);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  flex-wrap: wrap;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-bottom: 2px solid var(--line);
  background: var(--fg);
  color: var(--bg);
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2rem;
  width: max-content;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  white-space: nowrap;
}
.marquee__track .o { -webkit-text-stroke: 1px var(--bg); color: transparent; font-style: normal; font-family: var(--font-sans); font-weight: 800; text-transform: uppercase; }
.marquee__track em { color: var(--pink); font-style: normal; }

/* Journey (horizontal) */
.journey { border-bottom: 2px solid var(--line); }
.journey__pin {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center;
}
.journey__progress {
  position: absolute; top: 84px; left: var(--pad); right: var(--pad);
  height: 2px; background: rgba(9, 9, 11, 0.12);
  z-index: 5;
}
.journey__progress span {
  display: block; height: 100%; width: 100%;
  background: var(--pink);
  transform: scaleX(0); transform-origin: left;
}
.journey__track {
  display: flex; align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-inline: var(--pad);
  width: max-content;
  will-change: transform;
}
.journey__intro { flex-shrink: 0; width: clamp(260px, 34vw, 460px); }
.journey__intro h2 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.journey__intro h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none; color: var(--pink); }
.journey__intro p { color: var(--muted); font-size: 1rem; margin-bottom: 1.6rem; }
.journey__arrow { font-size: 2.4rem; line-height: 1; display: inline-block; animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(10px); } }

.look { flex-shrink: 0; width: clamp(240px, 30vw, 400px); }
.look--low { margin-top: clamp(3rem, 8vh, 7rem); }
.look__frame {
  overflow: hidden;
  border: 2px solid var(--line);
  aspect-ratio: 4 / 5;
  background: #e4e4e7;
}
.look__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: grayscale(0.25);
}
.look:hover .look__frame img { transform: scale(1.06); filter: grayscale(0); }
.look figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 0.7rem;
}
.look__num {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink);
}
.look__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}
.journey__outro { flex-shrink: 0; width: clamp(240px, 28vw, 380px); text-align: center; }
.journey__outro p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.6rem;
}
.journey__cta {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  border: 2px solid var(--line);
  padding: 1rem 2rem;
  background: var(--bg);
  box-shadow: 6px 6px 0 var(--fg);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}
.journey__cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--fg);
  background: var(--pink); color: #fff;
}

/* Statement */
.statement {
  padding: clamp(5rem, 14vw, 10rem) var(--pad);
  border-bottom: 2px solid var(--line);
}
.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.3;
  max-width: 28ch;
}
.statement__text .w { display: inline-block; opacity: 0.12; transition: opacity 0.3s linear; }
.statement__sig {
  display: block;
  margin-top: 2.2rem;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--pink);
}

/* Details grid */
.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--line);
}
.details__item {
  border-right: 2px solid var(--line);
  overflow: hidden;
  position: relative;
}
.details__item:last-child { border-right: 0; }
.details__item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.details__item:hover img { transform: scale(1.05); }
.details__item figcaption {
  padding: 0.9rem var(--pad);
  border-top: 2px solid var(--line);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  background: var(--bg);
  position: relative; z-index: 2;
}

/* Footer */
.footer { padding: clamp(4rem, 10vw, 7rem) var(--pad) 2rem; }
.footer__title {
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.04em; line-height: 0.95;
  margin-bottom: 2rem;
  overflow: hidden;
}
.footer__title span { display: inline-block; }
.footer__mail {
  display: inline-block;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2.6rem);
  border-bottom: 3px solid var(--pink);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  transition: color 0.3s;
  word-break: break-all;
}
.footer__mail:hover { color: var(--pink); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--line);
}
.footer__cols h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.footer__cols p { color: var(--muted); font-size: 0.92rem; }
.footer__copy {
  margin-top: 3rem;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}

a:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

/* Responsive */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero__img {
    position: relative;
    right: auto; top: auto; transform: none;
    margin: 2rem 0 0;
    width: min(100%, 420px);
  }
  /* Journey collapses to vertical */
  .journey__pin { height: auto; overflow: visible; display: block; padding: clamp(3rem, 8vw, 5rem) 0; }
  .journey__progress { display: none; }
  .journey__track {
    flex-direction: column; align-items: stretch;
    width: 100%;
    gap: 3rem;
  }
  .journey__intro, .look, .journey__outro { width: 100%; }
  .look--low { margin-top: 0; }
  .look__frame { aspect-ratio: 4 / 5; max-height: 70vh; }
  .journey__arrow { transform: rotate(90deg); animation: none; }
  .details { grid-template-columns: 1fr; }
  .details__item { border-right: 0; border-bottom: 2px solid var(--line); }
  .details__item:last-child { border-bottom: 0; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.6rem; }
}

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