/* Home (landing) page */
.home {
  min-height: 100vh;
  position: relative;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #F2EDE3;
}
/* Hero image. The picture wrapper holds the image which is taller than the
   viewport so the parallax (translateY by JS) never reveals the bottom edge. */
.hero-picture {
  position: absolute; inset: 0;
  z-index: 0;
  display: block; overflow: hidden;
  pointer-events: none;
}
.hero-image {
  position: absolute;
  top: 0; left: 50%;
  transform: translate3d(0, 0, 0); /* base for JS parallax */
  width: 100%; min-width: 100%;
  height: calc(100% + 30vh); /* 30vh of vertical slack for the parallax shift */
  margin-left: -50%;
  object-fit: cover; object-position: center;
  will-change: transform;
}
/* Veil — gradient noir adoucit la photo et garde la typo lisible. */
.hero-veil {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top,    rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.30) 100%),
    linear-gradient(to right,  rgba(0,0,0,.25) 0%, rgba(0,0,0,0)   35%);
}
/* Hairlines décoratifs (héritage du proto), masqués. */
.hero::before, .hero::after { content: none; }
/* Réduction du mouvement : pas de parallax, image en cover statique. */
@media (prefers-reduced-motion: reduce) {
  .hero-image { transform: none !important; }
}
.hero-content {
  position: absolute; inset: 0;
  z-index: 2; /* above .hero-video (0) and .hero-veil (1) */
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 40px;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
.hero-top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,237,227,0.7);
}
.hero-top-row .coord span { display: inline-block; margin-right: 10px; }
.hero-bottom {
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: end; gap: 48px;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(44px, 7.6vw, 128px); line-height: .96;
  letter-spacing: -0.035em;
  color: #F2EDE3;
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-tagline {
  max-width: 380px;
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px); line-height: 1.45;
  color: rgba(242,237,227,0.82);
}
.hero-tagline::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: rgba(242,237,227,0.5); margin-bottom: 12px;
}
.hero-scroll-ind {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(242,237,227,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-ind .line {
  width: 1px; height: 40px; background: rgba(242,237,227,0.4);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
}
/* Hero center mark — a small ornamental glyph, no CTA, no call to action */
.hero-mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: rgba(242,237,227,0.7);
  text-align: center;
  pointer-events: none;
}
.hero-mark .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* —— Marquee / Introduction block —— */
.intro {
  padding: clamp(80px, 12vh, 160px) 0 clamp(80px, 12vh, 160px);
  border-bottom: 1px solid var(--line);
}
.intro-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
}
.intro-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  width: fit-content;
}
.intro-text {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(28px, 3.2vw, 48px); line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: pretty;
}
.intro-text em { font-style: italic; color: var(--accent); }
.intro-text .hl { background: linear-gradient(180deg, transparent 65%, color-mix(in oklch, var(--accent) 60%, transparent) 65%); padding: 0 2px; }

@media (max-width: 880px) {
  .intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-tagline { max-width: 100%; }
}

/* —— Featured / Selected works strip —— */
.selected {
  padding: clamp(40px, 8vh, 100px) 0;
}
.selected-head {
  max-width: var(--max); margin: 0 auto 40px; padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: baseline;
}
.selected-head h2 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.03em; margin: 0;
}
.selected-head h2 em { font-style: italic; color: var(--accent); }
.selected-head .see-all {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

.selected-strip {
  display: flex; overflow-x: auto; gap: 24px;
  padding: 20px var(--gutter) 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.selected-strip::-webkit-scrollbar { height: 6px; }
.selected-strip::-webkit-scrollbar-thumb { background: var(--line); }

.sel-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 30vw, 420px);
  display: flex; flex-direction: column;
}
.sel-card-media {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  position: relative; overflow: hidden;
  background: var(--paper-3);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.sel-card-media picture { position: absolute; inset: 0; display: block; }
.sel-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.sel-card:hover .sel-card-media { transform: scale(0.98); }
.sel-card-media::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent, transparent 18px,
    rgba(23,20,15,0.05) 18px, rgba(23,20,15,0.05) 19px);
  mix-blend-mode: multiply;
}
.sel-card-media .media-meta {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--paper); padding: 4px 8px; border-radius: 2px;
}
.sel-card-meta {
  padding: 16px 2px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: baseline;
}
.sel-card-title { font-family: var(--font-serif); font-weight: 300; font-size: 22px; letter-spacing: -0.02em; }
.sel-card-year { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.sel-card-sub { grid-column: 1 / -1; font-size: 13px; color: var(--muted); font-style: italic; font-family: var(--font-serif); }

/* —— News strip —— */
.news-block {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.news-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: flex-start;
}
.news-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 32px); }
.news-side-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.news-side .see-all {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  width: fit-content; color: var(--ink-2);
  transition: color .2s;
}
.news-side .see-all:hover { color: var(--accent); }

.news-list { border-top: 1px solid var(--line); }

/* default (legacy) tight row, kept in case other pages still use it */
.news-item {
  display: grid; grid-template-columns: 90px 1fr 200px auto;
  gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.news-date { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.news-title { font-family: var(--font-serif); font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.02em; font-weight: 300; }
.news-venue { font-family: var(--font-serif); font-style: italic; color: var(--ink-2); font-size: 15px; }
.news-arrow { font-family: var(--font-mono); font-size: 14px; color: var(--muted); }

/* feature row — bigger, two-column with running number, accent tag */
.news-item--feature {
  grid-template-columns: 64px 1fr 2fr auto;
  gap: 32px;
  padding: 36px 0;
  align-items: flex-start;
  position: relative;
}
.news-item--feature .news-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em; color: var(--muted);
  padding-top: 8px;
}
.news-item--feature .news-date {
  font-family: var(--font-rail);
  font-size: 13px; letter-spacing: 0;
  color: var(--ink-2);
  padding-top: 8px;
  font-style: italic;
  font-weight: 400;
}
.news-item--feature .news-titlebox {
  display: flex; flex-direction: column; gap: 8px;
}
.news-item--feature .news-tag {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.news-item--feature .news-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--ink);
}
.news-item--feature .news-venue {
  font-family: var(--font-rail);
  font-style: normal;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 2px;
  max-width: 48ch;
}
.news-item--feature .news-arrow {
  font-size: 22px; color: var(--ink-2);
  padding-top: 10px;
  transition: transform .35s cubic-bezier(.6,.2,.2,1), color .25s;
}
.news-item--feature:hover .news-arrow { transform: translateX(8px); color: var(--accent); }

@media (max-width: 880px) {
  .news-inner { grid-template-columns: 1fr; gap: 32px; }
  .news-side { position: static; }
  .news-item { grid-template-columns: 1fr auto; gap: 4px 16px; padding: 20px 0; }
  .news-item .news-date { grid-column: 1; grid-row: 1; }
  .news-item .news-title { grid-column: 1 / -1; grid-row: 2; }
  .news-item .news-venue { grid-column: 1; grid-row: 3; }
  .news-item .news-arrow { grid-column: 2; grid-row: 1; }
  .news-item--feature { grid-template-columns: 1fr auto; gap: 12px 16px; padding: 28px 0; }
  .news-item--feature .news-num { grid-column: 1; grid-row: 1; padding-top: 0; }
  .news-item--feature .news-date { grid-column: 1; grid-row: 2; padding-top: 0; }
  .news-item--feature .news-titlebox { grid-column: 1 / -1; grid-row: 3; }
  .news-item--feature .news-arrow { grid-column: 2; grid-row: 1; padding-top: 0; }
  .selected-head { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* —— Big quote —— */
.big-quote {
  padding: clamp(80px, 14vh, 180px) 0;
  max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter);
}
.big-quote blockquote {
  margin: 0;
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: clamp(28px, 3.4vw, 60px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 24ch;
  text-wrap: balance;
}
.big-quote blockquote .mark { color: var(--accent); font-size: 1.2em; line-height: 0; vertical-align: baseline; }
.big-quote cite {
  display: block; margin-top: 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); font-style: normal;
}

/* —— About preview —— */
.about-preview {
  padding: clamp(60px, 10vh, 120px) 0;
  border-top: 1px solid var(--line);
}
.about-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
}
.about-portrait {
  aspect-ratio: 3 / 4; border-radius: 4px;
  background: var(--paper-3);
  position: relative; overflow: hidden;
}
.about-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.about-portrait::before {
  content: 'PORTRAIT'; position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  color: #fff; mix-blend-mode: difference; opacity: .7; z-index: 2;
}
.about-text {
  display: flex; flex-direction: column; gap: 28px;
}
.about-text h3 {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em; margin: 0; line-height: 1.05;
}
.about-text h3 em { font-style: italic; color: var(--accent); }
.about-text p {
  font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0;
  max-width: 56ch;
}
.about-text .read-more {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; border-bottom: 1px solid currentColor;
  padding-bottom: 2px; width: fit-content;
}
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
}
