:root {
  --black: #090909;
  --ink: #151515;
  --paper: #f6f3ec;
  --ivory: #ece7dc;
  --white: #fffdf7;
  --red: #a60f1c;
  --pink: #c61963;
  --green: #68725c;
  --line-dark: rgba(21,21,21,.18);
  --line-light: rgba(255,255,255,.24);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-h: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--black); }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; font-weight: 300; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--red); color: var(--white); }

/* Intro */
.intro-screen { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--black); color: var(--white); pointer-events: none; transition: opacity .85s ease, visibility .85s; }
.intro-screen span { font-size: clamp(1rem,2vw,1.45rem); font-weight: 500; letter-spacing: .42em; margin-left: .42em; }
body.loaded .intro-screen { opacity: 0; visibility: hidden; }

/* Fixed navigation */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding: 0 4vw; color: var(--white); transition: color .35s ease, background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header[data-theme="dark"].is-scrolled { background: rgba(9,9,9,.72); border-color: rgba(255,255,255,.08); }
.site-header[data-theme="light"].is-scrolled { background: rgba(246,243,236,.78); border-color: rgba(21,21,21,.10); }
.site-header[data-theme="dark"] { color: var(--white); }
.site-header[data-theme="light"] { color: var(--ink); }
.brand { font-size: .82rem; font-weight: 600; letter-spacing: .31em; }
.main-nav { display: flex; align-items: center; gap: clamp(1.5rem,3vw,3.3rem); }
.main-nav a { position: relative; font-size: .7rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.main-nav a::after, .arrow-link::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.main-nav a:hover::after, .main-nav a.active::after, .arrow-link:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 27px; height: 1px; margin: 7px 0; background: currentColor; transition: transform .3s ease; }

/* Typography + shared */
.section-light { background: var(--paper); color: var(--ink); }
.section-ivory { background: var(--ivory); color: var(--ink); }
.section-dark { background: var(--black); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-label { display: flex; gap: 1.25rem; padding-bottom: 1.45rem; border-bottom: 1px solid var(--line-dark); font-size: .64rem; font-weight: 600; letter-spacing: .22em; }
.section-label-light { border-bottom-color: var(--line-light); }
.display-title { font-family: var(--serif); font-size: clamp(4.8rem,8.8vw,9.2rem); font-weight: 400; line-height: .78; letter-spacing: -.052em; }
.display-title em, .hero h1 em, .study-copy h2 em, .statement blockquote em, .about-copy h2 em { font-weight: 400; }
.display-title-light { color: var(--white); }
.kicker, .study-kicker { font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.arrow-link { position: relative; display: inline-flex; gap: 1rem; align-items: center; width: fit-content; padding-bottom: 4px; font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.dark-link { color: var(--ink); }

/* Image system: each image can set --x, --y and --scale inline. */
.media-frame { position: relative; overflow: hidden; background: #1a1a1a; }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--x,50%) var(--y,50%); transform: scale(var(--scale,1)); transform-origin: var(--x,50%) var(--y,50%); transition: transform 1.2s cubic-bezier(.2,.65,.25,1), filter .8s ease; }
.media-frame:hover img { transform: scale(calc(var(--scale,1) + .025)); }

/* Hero */
.hero { min-height: 100svh; display: grid; grid-template-columns: 48% 52%; background: var(--black); color: var(--white); overflow: hidden; }
.hero-copy { position: relative; z-index: 3; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-h) + 4vh) 4vw 6.5vh; }
.hero h1 { max-width: 760px; margin: 1.4rem 0 1.8rem; font-family: var(--serif); font-size: clamp(4.8rem,8.5vw,9.3rem); font-weight: 400; line-height: .76; letter-spacing: -.055em; }
.hero-intro { max-width: 600px; margin-bottom: 2.7rem; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: clamp(1.25rem,1.75vw,1.85rem); line-height: 1.25; }
.hero-visual { position: relative; min-height: 100svh; padding: 3.5vh 4vw 3.5vh 0; }
.hero-frame { height: 93svh; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.28),transparent 28%,transparent 75%,rgba(0,0,0,.08)); pointer-events: none; }
.hero-note { position: absolute; right: 4vw; bottom: 1.1vh; font-size: .55rem; letter-spacing: .2em; color: rgba(255,255,255,.55); }

/* Manifesto */
.manifesto { min-height: 92svh; padding: 9rem 4vw 8rem; }
.manifesto-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 9vw; align-items: center; margin-top: clamp(5rem,9vh,7rem); }
.manifesto-copy { max-width: 600px; }
.manifesto-copy .lead { margin-bottom: 2.2rem; font-family: var(--serif); font-size: clamp(1.9rem,2.6vw,3rem); line-height: 1.14; }
.manifesto-copy p + p { margin-top: 1.8rem; }

/* Axes */
.axes { padding: 8rem 4vw 9rem; }
.axis-list { margin-top: 4.5rem; }
.axis { display: grid; grid-template-columns: 70px 1.25fr .78fr 1fr; gap: 2rem; align-items: baseline; padding: 3.2rem 0; border-bottom: 1px solid var(--line-light); }
.axis-index { font-family: var(--serif); font-size: 1.7rem; color: rgba(255,255,255,.38); }
.axis h2 { font-family: var(--serif); font-size: clamp(3.4rem,5.7vw,6.6rem); font-weight: 400; line-height: .88; }
.axis-keywords { color: rgba(255,255,255,.48); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.axis-copy { max-width: 430px; color: rgba(255,255,255,.72); font-size: .9rem; }

/* Studies intro */
.studies-intro { min-height: 72svh; padding: 8.5rem 4vw 7rem; display: flex; flex-direction: column; }
.studies-heading { flex: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; padding-top: 5rem; }
.studies-heading > p { max-width: 470px; margin-bottom: .8rem; font-size: 1.05rem; }

/* Full editorial studies */
.study { position: relative; min-height: 96svh; padding: calc(var(--header-h) + 2rem) 4vw 5rem; overflow: hidden; }
.study-dark { background: var(--black); color: var(--white); }
.study-light { background: var(--paper); color: var(--ink); }
.study-ivory { background: var(--ivory); color: var(--ink); }
.study-pink { background: var(--pink); color: var(--white); }
.study-green { background: var(--green); color: var(--white); }
.study-meta { display: flex; justify-content: space-between; gap: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid currentColor; opacity: .6; font-size: .6rem; font-weight: 600; letter-spacing: .2em; }
.study-grid { min-height: calc(96svh - var(--header-h) - 8rem); display: grid; grid-template-columns: .78fr 1.22fr; gap: 6vw; align-items: center; padding-top: 3rem; }
.study-grid-reverse { grid-template-columns: 1.22fr .78fr; }
.study-copy { max-width: 560px; }
.study-copy h2 { margin: 1.3rem 0 2rem; font-family: var(--serif); font-size: clamp(4.3rem,7.1vw,8rem); font-weight: 400; line-height: .78; letter-spacing: -.05em; }
.study-copy > p:last-child { max-width: 440px; opacity: .74; font-size: .98rem; }
.study-frame { width: min(100%, 820px); justify-self: end; aspect-ratio: 4/5; }
.study-grid-reverse .study-frame { justify-self: start; }
.study-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.study-light .study-frame::after, .study-ivory .study-frame::after { box-shadow: inset 0 0 0 1px rgba(21,21,21,.06); }

/* Craft */
.craft { padding: 8.5rem 4vw 10rem; overflow: hidden; }
.craft-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; margin: 5rem 0 7rem; }
.craft-intro .display-title { font-size: clamp(4.8rem,8.4vw,8.8rem); }
.craft-intro > p { max-width: 480px; margin-bottom: .8rem; color: rgba(255,255,255,.78); }
.craft-gallery { display: grid; grid-template-columns: .9fr 1.18fr .9fr; gap: 2.4vw; align-items: start; }
.craft-piece { margin: 0; }
.craft-frame { aspect-ratio: 4/5; }
.craft-b { margin-top: 8rem; }
.craft-c { margin-top: 2rem; }
.craft-piece figcaption { display: grid; grid-template-columns: 38px 1fr; gap: 1rem; padding-top: .9rem; margin-top: .9rem; border-top: 1px solid rgba(255,255,255,.35); font-size: .6rem; letter-spacing: .18em; }
.craft-piece figcaption strong { font-weight: 500; }

/* Statement */
.statement { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 9rem 4vw 6rem; text-align: center; overflow: hidden; }
.statement-label { margin-bottom: 2.4rem; font-size: .6rem; letter-spacing: .24em; color: rgba(255,255,255,.45); }
.statement blockquote { font-family: var(--serif); font-size: clamp(3.7rem,7.4vw,8rem); font-weight: 400; line-height: .86; letter-spacing: -.04em; }
.statement blockquote em { color: #d9d4ca; }
.formula { display: flex; gap: 1.35rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 9rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); font-size: clamp(.6rem,1vw,.85rem); letter-spacing: .15em; color: rgba(255,255,255,.58); }
.formula strong { color: var(--white); font-weight: 500; }

/* About */
.about { padding: 9rem 4vw 10rem; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; margin-top: 6rem; }
.about-frame { max-width: 690px; aspect-ratio: 4/5; }
.about-copy { max-width: 590px; }
.about-copy h2 { margin: 1.5rem 0 2.3rem; font-family: var(--serif); font-size: clamp(4rem,6vw,6.8rem); font-weight: 400; line-height: .81; letter-spacing: -.045em; }
.about-copy p + p { margin-top: 1.3rem; }
.about-copy .arrow-link { margin-top: 2.8rem; }

/* Closing */
.closing { min-height: 78svh; display: flex; flex-direction: column; justify-content: space-between; padding: 8rem 4vw 2.7rem; overflow: hidden; }
.closing-kicker { font-size: .62rem; font-weight: 600; letter-spacing: .2em; }
.closing-word { margin: auto 0; font-family: var(--serif); font-size: clamp(6rem,16.5vw,18rem); font-weight: 400; line-height: .74; letter-spacing: -.065em; text-align: center; white-space: nowrap; }
.closing-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); font-size: .62rem; font-weight: 600; letter-spacing: .17em; }
footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.35rem 4vw; background: var(--black); color: rgba(255,255,255,.48); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Tablet */
@media (max-width: 1000px) {
  :root { --header-h: 72px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { position: absolute; inset: 0; z-index: 4; background: linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.1) 35%,rgba(0,0,0,.78) 100%); }
  .hero-visual { padding: 0; }
  .hero-frame { height: 100svh; }
  .hero-frame img { --scale: 1.03; object-position: 50% 28%; }
  .hero-note { display: none; }
  .manifesto-grid, .studies-heading, .craft-intro, .about-layout { grid-template-columns: 1fr; }
  .axis { grid-template-columns: 55px 1fr; }
  .axis-keywords, .axis-copy { grid-column: 2; }
  .study-grid, .study-grid-reverse { grid-template-columns: 1fr 1fr; gap: 4vw; }
  .study-copy h2 { font-size: clamp(3.8rem,7vw,6.5rem); }
  .craft-gallery { grid-template-columns: 1fr 1fr; }
  .craft-c { grid-column: 1/-1; width: 50%; margin-left: auto; }
}

/* Mobile */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header { padding: 0 20px; }
  .brand { font-size: .74rem; letter-spacing: .24em; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 1001; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1rem; padding: 0 8vw; background: var(--black); color: var(--white); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a { font-family: var(--serif); font-size: 3.2rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .site-header[data-theme="light"] .menu-toggle[aria-expanded="true"] { color: var(--white); }

  .hero-copy { padding: calc(var(--header-h) + 2rem) 20px 2.5rem; }
  .hero h1 { margin: 1rem 0 1.4rem; font-size: clamp(4rem,20vw,6rem); }
  .hero-intro { max-width: 94%; margin-bottom: 2.2rem; font-size: 1.25rem; }
  .hero-frame img { object-position: 50% 27%; transform: scale(1.04); }

  .manifesto, .axes, .studies-intro, .craft, .about, .statement { padding-left: 20px; padding-right: 20px; }
  .manifesto { min-height: auto; padding-top: 6.5rem; padding-bottom: 7rem; }
  .manifesto-grid { gap: 3.5rem; margin-top: 4.5rem; }
  .display-title { font-size: clamp(4.1rem,20vw,6.4rem); }
  .manifesto-copy .lead { font-size: 1.8rem; }

  .axes { padding-top: 6.5rem; padding-bottom: 7rem; }
  .axis-list { margin-top: 3.5rem; }
  .axis { grid-template-columns: 32px 1fr; gap: .7rem 1rem; padding: 2.5rem 0; }
  .axis h2 { font-size: clamp(3rem,14vw,4.8rem); }

  .studies-intro { min-height: 62svh; padding-top: 6.5rem; padding-bottom: 5rem; }
  .studies-heading { gap: 2.7rem; padding-top: 4rem; }

  .study { min-height: auto; padding: calc(var(--header-h) + 1.5rem) 20px 5rem; }
  .study-grid, .study-grid-reverse { min-height: auto; grid-template-columns: 1fr; gap: 3.3rem; padding-top: 2.5rem; }
  .study-grid-reverse .study-frame { order: 2; }
  .study-grid-reverse .study-copy { order: 1; }
  .study-copy h2 { font-size: clamp(3.8rem,17vw,5.8rem); }
  .study-frame { width: 100%; aspect-ratio: 4/5; }
  .study-copy > p:last-child { max-width: 90%; }

  .craft { padding-top: 6.5rem; padding-bottom: 7rem; }
  .craft-intro { gap: 2.7rem; margin: 4rem 0 4.5rem; }
  .craft-intro .display-title { font-size: clamp(4rem,19vw,6.2rem); }
  .craft-gallery { display: block; }
  .craft-piece, .craft-b, .craft-c { width: 100%; margin: 0 0 4.5rem; }

  .statement { min-height: 90svh; padding-top: 7rem; padding-bottom: 4.5rem; }
  .statement blockquote { font-size: clamp(3.1rem,14vw,4.7rem); }
  .formula { justify-content: flex-start; gap: .8rem; margin-top: 6rem; text-align: left; }

  .about { padding-top: 6.5rem; padding-bottom: 7rem; }
  .about-layout { gap: 3.8rem; margin-top: 4.5rem; }
  .about-copy h2 { font-size: clamp(3.8rem,17vw,5.8rem); }

  .closing { min-height: 62svh; padding: 6.5rem 20px 2rem; }
  .closing-word { font-size: 19vw; white-space: normal; overflow-wrap: anywhere; }
  .closing-bottom, footer { flex-direction: column; gap: .75rem; }
  footer { padding: 1.4rem 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
