:root {
  --ink: #111111;
  --paper: #f7f7f2;
  --white: #ffffff;
  --pink: #ff3f93;
  --lime: #dfff37;
  --line: rgba(17, 17, 17, 0.22);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 3.2vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247,247,242,0.94);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-weight: 700; letter-spacing: -0.03em; width: fit-content; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--white); overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.site-header nav { display: flex; gap: 2rem; font-size: 0.88rem; font-weight: 600; }
.site-header nav a, .social-link, .text-link, footer a { position: relative; }
.site-header nav a::after, .text-link::after, footer > a:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.site-header nav a:hover::after, .text-link:hover::after, footer > a:last-child:hover::after { transform: scaleX(1); transform-origin: left; }
.social-link { justify-self: end; font-weight: 700; font-size: 0.88rem; }
.social-link span, .text-link span { color: var(--pink); }

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 53% 43% 4%;
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.hero-copy { align-self: center; padding: 6vw 4vw 6vw 7vw; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; gap: 0.7rem; }
.eyebrow span { display: block; width: 28px; height: 2px; background: var(--pink); }
h1, h2 { margin: 0; font-family: var(--sans); font-weight: 700; letter-spacing: -0.075em; line-height: 0.82; text-transform: uppercase; }
h1 { font-size: clamp(4.7rem, 10.8vw, 10.5rem); margin: 2.2rem 0 2.4rem; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: -0.045em; }
h1 em { color: var(--pink); }
.hero-note { max-width: 29rem; font-size: clamp(1rem, 1.35vw, 1.25rem); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-width: 260px;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { background: var(--pink); transform: translateY(-3px); }
.hero-image { margin: 0; padding: 1.2rem 0 1.2rem 1.2rem; position: relative; min-height: 620px; }
.hero-image::before { content: ""; position: absolute; inset: 3.2rem 2rem 0 -2.7rem; background: var(--lime); z-index: -1; transform: rotate(-2deg); }
.hero-image img { width: 100%; height: calc(100% - 42px); object-fit: cover; object-position: center 28%; filter: saturate(0.92) contrast(1.03); }
.hero-image figcaption { height: 42px; display: flex; justify-content: space-between; align-items: end; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.hero-side { writing-mode: vertical-rl; transform: rotate(180deg); align-self: center; justify-self: center; margin: 0; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.64rem; font-weight: 700; }

.ticker { background: var(--ink); color: var(--white); overflow: hidden; border-bottom: 1px solid var(--ink); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 0.95rem 0; animation: ticker 28s linear infinite; }
.ticker span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; }
.ticker i { color: var(--pink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.rotation {
  padding: 8rem 4vw 9rem;
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.95fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}
.section-heading { padding: 2rem 1rem 0; position: sticky; top: 5.8rem; }
.section-heading h2 { font-size: clamp(4.2rem, 7vw, 7.8rem); margin: 2rem 0 2rem; }
.section-heading em { color: var(--pink); }
.section-heading > p:last-child { max-width: 13rem; font-size: 1.08rem; }
.look-card { position: relative; }
.look-card--weekend { margin-top: 6rem; }
.look-card--night { margin-top: 1.5rem; }
.look-card img { width: 100%; aspect-ratio: 3 / 4.1; object-fit: cover; border: 1px solid var(--ink); }
.look-card--active img { object-position: 50% center; }
.look-card--weekend img { object-position: 50% center; }
.look-card--night img { object-position: 50% center; }
.look-number { position: absolute; z-index: 2; top: -1px; left: -1px; width: 42px; height: 42px; display: grid; place-items: center; background: var(--lime); border: 1px solid var(--ink); font-size: 0.72rem; font-weight: 700; }
.look-copy { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--ink); }
.look-copy h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.look-copy p { margin: 0; max-width: 11rem; text-align: right; font-size: 0.78rem; line-height: 1.35; }

.manifesto {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 40% 60%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto-mark { display: grid; place-items: center; background: var(--pink); padding: 5vw; border-right: 1px solid var(--ink); }
.manifesto-mark img { width: min(380px, 80%); mix-blend-mode: multiply; }
.manifesto-copy { align-self: center; padding: 7vw; }
.manifesto-copy .eyebrow span { background: var(--lime); }
.manifesto h2 { max-width: 900px; font-size: clamp(4rem, 7.8vw, 8.5rem); margin: 2.4rem 0 2.2rem; }
.manifesto h2 em { color: var(--pink); }
.manifesto-copy > p:not(.eyebrow) { max-width: 650px; font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
.text-link { display: inline-flex; gap: 0.7rem; margin-top: 1.7rem; font-weight: 700; }

footer { min-height: 170px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 3rem 4vw; background: var(--ink); color: var(--white); }
footer p { margin: 0; font-family: var(--serif); font-size: 1.55rem; }
footer > a:last-child { justify-self: end; font-size: 0.85rem; font-weight: 700; }
.footer-brand .brand-mark { background: var(--white); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker div { animation: none; }
}

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 50% 46% 4%; }
  h1 { font-size: clamp(4.4rem, 11vw, 7rem); }
  .hero-copy { padding-left: 4vw; }
  .rotation { grid-template-columns: 1fr 1fr; }
  .section-heading { position: static; grid-column: 1 / -1; }
  .section-heading h2 { font-size: 6.5rem; }
  .look-card--weekend, .look-card--night { margin-top: 0; }
  .look-card--night { grid-column: 2; }
}

@media (max-width: 700px) {
  .site-header { height: 68px; padding: 0 1rem; }
  .brand-mark { width: 30px; height: 30px; }
  .social-link { font-size: 0; }
  .social-link span { font-size: 1rem; display: inline-block; padding: 0.5rem; color: var(--ink); }
  .hero { min-height: auto; display: block; padding: 3.4rem 1rem 1rem; }
  .hero-copy { padding: 0 0 3rem; }
  .hero-copy .eyebrow { margin-top: 0; }
  h1 { font-size: clamp(4.35rem, 21vw, 7rem); margin: 1.8rem 0; }
  .hero-note { max-width: 19rem; }
  .button { min-width: 100%; }
  .hero-image { min-height: 580px; padding: 0; }
  .hero-image::before { inset: -1.2rem 0.7rem 2rem -0.4rem; }
  .hero-image img { height: 535px; }
  .hero-image figcaption { padding-top: 0.7rem; }
  .hero-side { display: none; }
  .rotation { display: block; padding: 6rem 1rem; }
  .section-heading { padding: 0 0 3.5rem; }
  .section-heading h2 { font-size: 5.6rem; }
  .look-card { margin: 0 0 4rem; }
  .look-card:nth-of-type(3) { margin-left: 12%; }
  .manifesto { display: block; min-height: auto; }
  .manifesto-mark { min-height: 65vw; border-right: 0; border-bottom: 1px solid var(--ink); }
  .manifesto-mark img { width: 62%; }
  .manifesto-copy { padding: 5rem 1rem; }
  .manifesto h2 { font-size: clamp(4rem, 17vw, 6.2rem); }
  footer { display: flex; min-height: auto; padding: 3rem 1rem; flex-direction: column; align-items: flex-start; }
  footer > a:last-child { align-self: flex-start; }
}

@media (max-width: 380px) {
  h1 { font-size: 3.8rem; }
  .section-heading h2 { font-size: 4.8rem; }
}
