/* ============================================================
   Home — Jonas Hangartner site-v2
   Source : homepage-v6r.html (transposé depuis le mockup)
   Dépend de tokens.css (chargé en amont).
   ============================================================ */

/* ── Pointer glow — images ───────────────────────────────── */
.has-pointer-glow--surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-pointer-glow--surface::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgb(var(--glow-rgb-a)/0.28) 0%, rgb(var(--glow-rgb-a)/0.12) 25%,
      rgb(var(--glow-rgb-b)/0.10) 50%, transparent 72%);
  filter: blur(44px) saturate(1.12);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms var(--ease), transform 520ms var(--ease);
}

.has-pointer-glow--surface:hover::before {
  opacity: 0.72;
  transform: scale(1.14);
}

.has-pointer-glow--surface>* {
  position: relative;
  z-index: 1;
}

/* ── Boutons ─────────────────────────────────────────────── */
/* btn-primary, btn-ghost, btn-glow — définis dans site.css */

.rule-reveal {
  position: relative;
  border-top: none !important;
}

.rule-reveal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--grad);
  transition: width 900ms var(--ease);
}

.rule-reveal.is-visible::before {
  width: 100%;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 100vh;
  padding: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(120px + var(--nav-h, 72px)) clamp(28px, 5vw, 72px) 48px clamp(32px, 6vw, 96px);
  overflow-y: auto;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--grad);
}

.hero__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero__title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 42ch;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  align-items: center;
}

.hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rule-strong);
}

/* ── Hero right — spectral canvas ───────────────────────── */
.hero__right {
  position: relative;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 12px;
}

.spectral-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  height: calc(100vh - 48px);
  max-height: calc(100vh - 48px);
  width: 90%;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 2px 24px rgba(14, 19, 25, 0.12);
  flex-shrink: 0;
}

#spectral-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.spectral-ui {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  user-select: none;
}

.hero__hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.88);
  background: rgba(14, 19, 25, 0.30);
  padding: 5px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__nm-track {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero__nm-track span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 1);
  opacity: 0.18;
  transition: opacity 60ms linear;
}

/* ── Manifeste (GSAP sticky) ─────────────────────────────── */
.manifeste-zone {
  position: relative;
  height: 500vh;
}

.manifeste-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifeste-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 60px clamp(32px, 8vw, 140px);
  width: 100%;
}

.manifeste-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.06);
  transform-origin: center center;
  will-change: opacity, transform;
}

.manifeste-video-overlay video {
  width: 100vw;
  height: 56.25vw;
  max-height: 100vh;
  object-fit: cover;
  display: block;
}

.quote-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.quote-eyebrow::before,
.quote-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--rule);
}

.manifeste-phrases {
  position: relative;
  min-height: clamp(80px, 12vw, 150px);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifeste-phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink-body);
  letter-spacing: -0.015em;
  margin: 0;
  padding: 0;
  will-change: opacity, filter, transform;
}

.manifeste-phrase>span {
  display: inline-block;
}

.manifeste-phrase em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manifeste-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.manifeste-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rule-strong);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}

.manifeste-dot.is-active {
  background: var(--grad-from);
  transform: scale(1.4);
}

.quote-signature {
  width: 160px;
  opacity: 0.55;
  mix-blend-mode: multiply;
  margin: auto
}

/* ── Works ───────────────────────────────────────────────── */
.works-section {
  padding: 0 clamp(32px, 6vw, 96px) 120px;
  max-width: 1400px;
  margin: 80px auto;
}

.works-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.works-header h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.works-header a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.works-header a::after {
  content: '→';
  transition: transform 0.2s;
}

.works-header a:hover::after {
  transform: translateX(4px);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: 40px;
  align-items: start;
}

.work-item {
  cursor: pointer;
}

.work-item:nth-child(2) {
  margin-top: 48px;
}

.work-item:nth-child(3) {
  margin-top: 24px;
}

.work-img {
  width: 100%;
  position: relative;
  background: var(--night);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
  display: block;
}

.work-item:nth-child(1) .work-img {
  aspect-ratio: 3/4;
}

.work-item:nth-child(2) .work-img {
  aspect-ratio: 2/3;
}

.work-item:nth-child(3) .work-img {
  aspect-ratio: 4/5;
}

.work-item:hover .work-img {
  transform: translateY(-4px);
}

.work-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.work-item:hover .work-img img {
  transform: scale(1.03);
}

/* figure généré dynamiquement par home-works-loader */
.works-grid figure {
  height: 100%;
  margin: 0;
}

/* figcaption masqué sur la home — le texte est dans .work-cap */
.works-grid figcaption {
  display: none;
}

.work-cap {
  padding: 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.work-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.work-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ── Approach ────────────────────────────────────────────── */
.approach-section {
  background: var(--paper-50);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px clamp(32px, 6vw, 96px);
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.approach-left h3 {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.approach-left p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 44ch;
  margin-bottom: 32px;
}

.approach-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.approach-right {
  display: flex;
  flex-direction: column;
}

.approach-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.approach-row:first-child {
  border-top: 1px solid var(--rule);
}

.approach-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  background: var(--grad);
  flex-shrink: 0;
}

.approach-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-body);
}

.approach-text strong {
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

/* ── Collections ─────────────────────────────────────────── */
.collections-section {
  padding: 120px clamp(32px, 120px, 96px);
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 24px;
}

.collections-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 58ch;
  margin-bottom: 48px;
}

.coll-list {
  border-top: 1px solid var(--rule);
}

.coll-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
}

.coll-item:hover .coll-name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coll-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-quiet);
}

.coll-name {
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 5px;
}

.coll-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(88, 123, 145, 0.4);
  color: var(--grad-from);
  border-radius: 999px;
}

.coll-arrow {
  font-size: 16px;
  color: var(--ink-quiet);
  transition: transform 0.2s var(--ease), color 0.16s;
}

.coll-item:hover .coll-arrow {
  transform: translateX(4px);
  color: var(--grad-from);
}

/* Cursor preview */
.cursor-preview {
  position: fixed;
  z-index: 500;
  pointer-events: none;
  width: 200px;
  aspect-ratio: 3/4;
  overflow: hidden;
  opacity: 0;
  transform: translate(16px, -50%) scale(0.88);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  box-shadow: 0 12px 40px rgba(14, 19, 25, 0.22);
}

.cursor-preview.is-visible {
  opacity: 1;
  transform: translate(16px, -50%) scale(1);
}

.cursor-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About ───────────────────────────────────────────────── */
.about-section {
  background: var(--night);
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 480px;
  color: var(--fg-on-dark);
}

.about-img {
  background: linear-gradient(160deg, #243040 0%, #1a1520 60%, #0e1015 100%);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}

.about-body {
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.35);
  margin-bottom: 28px;
}

.about-title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg-on-dark);
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 242, 236, 0.55);
  max-width: 52ch;
  margin-bottom: 36px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* about-link-grad et about-link-quiet → remplacés par btn-primary btn-glow et .link en HTML */

/* ── Produit saisonnier — calendrier / édition limitée ───── */
.seasonal-product {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 6vw, 96px);
}

.seasonal-product[hidden] {
  display: none;
}

.seasonal-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(36px, 6vw, 72px) 0;
}

.seasonal-product__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-50), var(--paper));
  position: relative;
}

.seasonal-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.seasonal-product:hover .seasonal-product__media img {
  transform: scale(1.035);
}

.seasonal-product__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 15%, rgba(88, 123, 145, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(14, 19, 25, 0.08), rgba(192, 104, 90, 0.16));
}

.seasonal-product__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 18px;
}

.seasonal-product__title {
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.seasonal-product__desc {
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.seasonal-product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.seasonal-product__meta span {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.seasonal-product__cta {
  width: fit-content;
}

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section {
  border-top: 1px solid var(--rule);
  padding: 120px 24px;

}

.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 16px;
}

.newsletter-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 42ch;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.16s;
}

.newsletter-form input::placeholder {
  color: var(--ink-quiet);
}

.newsletter-form input:focus {
  border-color: var(--rule-strong);
}

.newsletter-form input:required:invalid:not(:placeholder-shown) {
  border-color: #c0685a;
}

.newsletter-form .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

.newsletter-required {
  font-size: 11px;
  color: var(--ink-quiet);
  font-weight: 300;
}

.newsletter-note {
  font-size: 11px;
  color: var(--ink-quiet);
  font-weight: 300;
}

/* ── Section tirages (API accueil) ───────────────────────── */
.tirages-section {
  padding: 80px clamp(32px, 6vw, 96px);
  max-width: 1400px;
  margin: 0 auto;
}

.tirages-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.tirages-section__header h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.tirages-section__header a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tirages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tirage-card {
  cursor: pointer;
}

.tirage-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-50);
}

.tirage-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.tirage-card:hover .tirage-card__media img {
  transform: scale(1.04);
}

.tirage-card__cap {
  padding: 12px 0 0;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  transition: border-color 0.2s;
}

.tirage-card:hover .tirage-card__cap {
  border-color: var(--grad-from);
}

.tirage-card__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.tirage-card__meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.tirage-card__prix {
  font-size: 12px;
  color: var(--grad-from);
  font-weight: 500;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .home-page .hero {
    grid-template-columns: 1fr 1fr;
  }

  .approach-inner {
    gap: 48px;
  }

  .tirages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Hero : une colonne, image en dessous du texte */
  .home-page .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .home-page .hero__left {
    padding: calc(56px + var(--nav-h, 72px)) clamp(32px, 6vw, 72px) 36px;
    order: 1;
  }

  .home-page .hero__right {
    order: 2;
    padding: 0 20px 40px;
  }

  .spectral-frame {
    aspect-ratio: 2/3;
    height: min(72vh, 800px);
    max-height: 800px;
  }

  /* Boutons hero : côte à côte */
  .home-page .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-page .hero__actions .btn-primary,
  .home-page .hero__actions .btn-ghost {
    width: auto;
    flex: none;
  }

  /* Works grid : 2 colonnes plutôt qu'1 */
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .work-item:nth-child(3) {
    display: none;
  }

  /* About : garder side-by-side */
  .about-section {
    grid-template-columns: 28% 72%;
    grid-template-rows: auto;
  }

  .about-img {
    height: auto;
  }

  /* Newsletter : garder 2 colonnes */
  .newsletter-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .newsletter-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form .btn-primary {
    width: auto;
  }

  /* Produit saisonnier : CTA pas pleine largeur */
  .seasonal-product__cta {
    width: fit-content;
  }

  .seasonal-product__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .home-page .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }

  .home-page .hero__left {
    padding: calc(34px + var(--nav-h, 72px)) 24px 28px;
    order: 1;
  }

  .home-page .hero__right {
    order: 2;
    height: auto;
    padding: 12px 20px;
  }

  .spectral-frame {
    height: 60vh;
    max-height: 480px;
    box-shadow: 0 2px 16px rgba(14, 19, 25, 0.10);
  }

  .home-page .hero__title {
    font-size: clamp(32px, 8vw, 48px);
    margin-top: 0;
  }

  .home-page .hero__lead {
    font-size: 15px;
    max-width: none;
  }

  .home-page .hero__eyebrow {
    display: none;
  }

  .home-page .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .home-page .hero__actions .btn-primary,
  .home-page .hero__actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex: none;
  }

  .home-page .hero__meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .manifeste-zone {
    height: auto;
  }

  .manifeste-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    display: block;
  }

  .manifeste-content {
    padding: 56px 24px 32px;
    max-width: 100%;
  }

  .manifeste-dots {
    display: none;
  }

  .manifeste-phrases {
    position: static;
    height: auto;
    min-height: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .manifeste-phrase {
    position: static;
    inset: auto;
    display: block;
    text-align: center;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.5;
    padding: 8px 0;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .quote-signature {
    width: 100px;
    margin-top: 8px;
    margin: auto;
  }

  .manifeste-video-overlay {
    position: static;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
    display: block;
  }

  .manifeste-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .works-section {
    padding: 0 24px 80px;
  }

  .works-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-item:nth-child(2),
  .work-item:nth-child(3) {
    margin-top: 0;
  }

  .approach-section {
    padding: 56px 24px;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-left h3 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .collections-section {
    padding: 64px 24px;
  }

  .coll-item {
    grid-template-columns: 32px 1fr auto;
    gap: 16px;
    padding: 20px 0;
  }

  .coll-name {
    font-size: clamp(18px, 5vw, 24px);
  }

  .cursor-preview {
    display: none;
  }

  .seasonal-product {
    padding: 52px 24px;
  }

  .seasonal-product__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }

  .seasonal-product__media {
    aspect-ratio: 4 / 3;
  }

  .seasonal-product__title {
    font-size: clamp(30px, 10vw, 46px);
  }

  .seasonal-product__cta {
    width: 100%;
  }

  .about-section {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .about-img {
    height: 240px;
  }

  .about-body {
    padding: 40px 24px;
  }

  .about-title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .newsletter-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form .btn-primary {
    width: auto;
    align-self: flex-start;
  }

  .tirages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .home-page .hero__right {
    padding: 10px 14px;
  }

  .spectral-frame {
    height: 55vh;
    max-height: 380px;
  }

  .tirages-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form-row {
    grid-template-columns: 1fr;
  }
}
