/* ================================================================
   YENZCLUB 2026 — DESIGN SYSTEM v3 (airy, customizable)
   ================================================================ */

:root {
  /* Colors (can be overridden via theme settings) */
  --yz-bg: #FFFFFF;
  --yz-text: #080808;
  --yz-rose: #F5AFC5;
  --yz-brown: #A58B70;
  --yz-gray: #F9F9F9;
  --yz-gray-soft: #EEEEEE;
  --yz-border: 1px solid var(--yz-text);
  --yz-border-subtle: 1px solid rgba(8,8,8,0.10);
  --yz-border-invert: 1px solid rgba(255,255,255,0.15);

  /* Fonts */
  --yz-font-massive: 'Anton', Impact, sans-serif;
  --yz-font-logo: 'Fredoka', 'Poppins', sans-serif;
  --yz-font-body: 'Inter', 'Assistant', system-ui, sans-serif;

  /* Easing — premium Apple-like */
  --yz-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --yz-ease-cubic: cubic-bezier(0.23, 1, 0.32, 1);
  --yz-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --yz-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --yz-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --yz-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --yz-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --yz-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --yz-shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.14);

  /* Layout */
  --yz-header-height: 84px;
  --yz-pad-x: 5.5%;
  --yz-section-y: 9rem;
  --yz-max: 1760px;
}

@media (max-width: 1024px) {
  :root { --yz-pad-x: 5%; --yz-section-y: 6rem; --yz-header-height: 68px; }
}
@media (max-width: 640px) {
  :root { --yz-pad-x: 5%; --yz-section-y: 5rem; --yz-header-height: 60px; }
}

/* ---- Reset & base ---- */
.yz-scope,
.yz-scope *,
.yz-scope *::before,
.yz-scope *::after { box-sizing: border-box; }

.yz-scope {
  font-family: var(--yz-font-body);
  color: var(--yz-text);
  background: var(--yz-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.yz-scope h1, .yz-scope h2, .yz-scope h3,
.yz-scope h4, .yz-scope h5, .yz-scope h6 { margin: 0; line-height: 1; }
.yz-scope p { margin: 0; }
.yz-scope a { color: inherit; text-decoration: none; }
.yz-scope ul, .yz-scope ol { list-style: none; padding: 0; margin: 0; }
.yz-scope img, .yz-scope video { max-width: 100%; display: block; }

/* ---- Typography primitives ---- */
.yz-massive {
  font-family: var(--yz-font-massive);
  font-size: clamp(4rem, 13vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 400;
  will-change: transform, opacity;
}

.yz-title {
  font-family: var(--yz-font-massive);
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}

.yz-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.yz-body { font-family: var(--yz-font-body); font-size: 1rem; line-height: 1.6; }
.yz-lead { font-size: 1.15rem; line-height: 1.6; }

.yz-scope .yz-section-padding { padding: var(--yz-section-y) var(--yz-pad-x); }
.yz-scope .yz-container { max-width: var(--yz-max); margin: 0 auto; }
.yz-offset-header { padding-top: var(--yz-header-height); }

/* ---- Buttons ---- */
.yz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.6rem;
  font-family: var(--yz-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--yz-text);
  color: var(--yz-text);
  background: transparent;
  cursor: pointer;
  transition: background 0.4s var(--yz-ease), color 0.4s var(--yz-ease), border-color 0.4s var(--yz-ease);
  white-space: nowrap;
  line-height: 1;
}
.yz-btn:hover { background: var(--yz-text); color: var(--yz-bg); }
.yz-btn--filled { background: var(--yz-text); color: var(--yz-bg); }
.yz-btn--filled:hover { background: transparent; color: var(--yz-text); }
.yz-btn--invert { border-color: var(--yz-bg); color: var(--yz-text); background: var(--yz-bg); }
.yz-btn--invert:hover { background: transparent; color: var(--yz-bg); }
.yz-btn--rose { background: var(--yz-rose); border-color: var(--yz-rose); color: var(--yz-text); }
.yz-btn--rose:hover { background: var(--yz-text); border-color: var(--yz-text); color: var(--yz-rose); }

/* ---- Tag ---- */
.yz-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.55rem 1.3rem;
  border: 1px solid currentColor;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- Image placeholder ---- */
.yz-placeholder {
  background: var(--yz-gray);
  border: var(--yz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.yz-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  font-weight: 500;
}

/* ================================================================
   HEADER — simple, propre, 3 colonnes unique
   ================================================================ */
.yz-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--yz-header-height);
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--yz-pad-x);
  z-index: 100;
  background: var(--yz-bg);
  border-bottom: var(--yz-border-subtle);
  transition: height 0.35s var(--yz-ease), background 0.35s var(--yz-ease), border-color 0.35s var(--yz-ease);
}
.yz-header.is-sticky { position: fixed; }
.yz-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.yz-header.is-transparent .yz-logo,
.yz-header.is-transparent .yz-nav-link,
.yz-header.is-transparent .yz-nav-icon,
.yz-header.is-transparent .yz-burger span {
  color: var(--yz-bg);
  fill: var(--yz-bg);
  stroke: var(--yz-bg);
}
.yz-header.is-transparent .yz-burger span { background: var(--yz-bg); }
.yz-header.is-transparent.is-scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(8,8,8,0.08);
}
.yz-header.is-transparent.is-scrolled .yz-logo,
.yz-header.is-transparent.is-scrolled .yz-nav-link,
.yz-header.is-transparent.is-scrolled .yz-nav-icon {
  color: var(--yz-text);
}
.yz-header.is-transparent.is-scrolled .yz-burger span { background: var(--yz-text); }

.yz-header.is-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: var(--yz-border-subtle);
  transition: transform 0.4s var(--yz-ease-out), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 100;
}
.yz-header.is-sticky.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--yz-shadow-sm);
  border-bottom-color: rgba(8, 8, 8, 0.08);
}
.yz-header.is-hidden { transform: translateY(-100%); }

/* Layouts */
.yz-header--logo-left { grid-template-columns: auto 1fr auto; }
.yz-header--logo-center { grid-template-columns: 1fr auto 1fr; }
.yz-header--logo-center .yz-logo { grid-column: 2; justify-self: center; }
.yz-header--logo-center .yz-nav { grid-column: 1; justify-self: start; }
.yz-header--logo-center .yz-header__utils { grid-column: 3; justify-self: end; }

.yz-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--yz-font-logo);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--yz-text);
  transition: opacity 0.3s ease;
}
.yz-logo:hover { opacity: 0.7; }
.yz-logo img { display: block; height: 32px; width: auto; }

.yz-nav { display: flex; gap: 2.2rem; align-items: center; justify-self: end; }
.yz-header--logo-left .yz-nav { justify-self: end; }

.yz-nav-link {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  color: var(--yz-text);
  transition: color 0.3s ease;
}
.yz-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--yz-ease);
}
.yz-nav-link:hover::after,
.yz-nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.yz-header__utils {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
}
.yz-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  transition: background 0.3s ease;
  color: inherit;
  position: relative;
}
.yz-nav-icon:hover { background: var(--yz-gray); }
.yz-nav-icon svg { display: block; }

.yz-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--yz-text);
  color: var(--yz-bg);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.yz-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
  margin-left: 0.4rem;
}
.yz-burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: var(--yz-text);
  transition: transform 0.35s var(--yz-ease), opacity 0.35s var(--yz-ease), top 0.35s var(--yz-ease), background 0.3s ease;
}
.yz-burger span:nth-child(1) { top: 0; }
.yz-burger span:nth-child(2) { top: 9px; }
.yz-burger span:nth-child(3) { top: 18px; }
.yz-burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.yz-burger.is-open span:nth-child(2) { opacity: 0; }
.yz-burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.yz-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--yz-bg);
  z-index: 99;
  padding: calc(var(--yz-header-height) + 2rem) var(--yz-pad-x) 3rem;
  transform: translateY(-100%);
  transition: transform 0.6s var(--yz-ease);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.yz-mobile-menu.is-open { transform: translateY(0); }
.yz-mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.yz-mobile-menu nav a {
  font-family: var(--yz-font-massive);
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 1rem 0;
  border-bottom: var(--yz-border-subtle);
}
.yz-mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: var(--yz-border-subtle);
}
.yz-mobile-menu__footer a { opacity: 0.6; font-size: 0.9rem; letter-spacing: 1px; }

/* Responsive: mobile burger */
@media (max-width: 1024px) {
  .yz-header--logo-left,
  .yz-header--logo-center { grid-template-columns: auto 1fr auto; }
  .yz-header--logo-center .yz-logo { grid-column: 1; justify-self: start; }
  .yz-header .yz-nav { display: none; }
  .yz-burger { display: block; }
}

/* Layout helpers - push content below sticky header
   Note: hero section already has yz-offset-header so handles its own offset.
   For non-hero first sections (marquee, etc.) we add offset at template level. */

/* Marquee coming right after hero should breathe */
.yz-hero + .yz-marquee,
.yz-page-hero + .yz-marquee,
.yz-image-text + .yz-marquee { border-top: none; }

/* When marquee is the first visible section (no hero above), pad it below header */
body:not(.template-index) .yz-scope.yz-marquee:first-of-type,
.template-page .yz-scope > section:first-child:not(.yz-page-hero):not(.yz-hero):not(.yz-collection-header):not(.yz-article-hero) {
  margin-top: var(--yz-header-height);
}

/* ================================================================
   HERO
   ================================================================ */
.yz-hero {
  min-height: calc(100vh - var(--yz-header-height));
  padding-top: calc(var(--yz-header-height) + 2rem);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border-bottom: var(--yz-border);
}
.yz-hero__left {
  padding: 5rem var(--yz-pad-x);
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.yz-hero__right {
  border-left: var(--yz-border);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.yz-hero__subtitle-box {
  padding: 3.5rem var(--yz-pad-x);
  border-bottom: var(--yz-border);
}
.yz-hero__media {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  position: relative;
  min-height: 360px;
}
.yz-hero__media > img,
.yz-hero__media > video,
.yz-hero__media > .yz-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}
.yz-hero__line { overflow: hidden; padding: 0.2rem 0; }
.yz-hero__line .yz-massive { display: inline-block; }

/* ================================================================
   FORMATS GRID
   ================================================================ */
.yz-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--yz-border);
  border-left: var(--yz-border);
}
.yz-format-card {
  padding: 0;
  border-right: var(--yz-border);
  border-bottom: var(--yz-border);
  background: var(--yz-bg);
  color: var(--yz-text);
  transition: background 0.5s var(--yz-ease-out), color 0.5s var(--yz-ease-out), transform 0.5s var(--yz-ease-out), box-shadow 0.5s var(--yz-ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  text-decoration: none;
  overflow: hidden;
  will-change: transform;
}
.yz-format-card:hover {
  background: var(--yz-text);
  color: var(--yz-bg);
  transform: translateY(-4px);
  box-shadow: var(--yz-shadow-lg);
  z-index: 2;
}
.yz-format-card:hover .yz-format-card__media img { transform: scale(1.06); filter: grayscale(0%); }
.yz-format-card__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--yz-gray);
  position: relative;
  border-bottom: var(--yz-border);
}
.yz-format-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--yz-ease-out), filter 0.8s var(--yz-ease-out);
  filter: grayscale(50%) contrast(1.05);
  will-change: transform, filter;
}
.yz-format-card__body {
  padding: 2.5rem 2.2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.yz-format-card h3 {
  font-family: var(--yz-font-massive);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.yz-format-card p { font-size: 0.95rem; font-weight: 500; line-height: 1.5; margin-top: 1.2rem; opacity: 0.85; }
.yz-format-card__footer { padding: 0 2.2rem 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.yz-formats-grid--with-image .yz-format-card { min-height: 620px; }
.yz-format-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.yz-format-card:hover .yz-format-card__meta { border-top-color: rgba(255,255,255,0.2); }

/* ================================================================
   MEMBERSHIP + WALLET
   ================================================================ */
.yz-membership {
  background: var(--yz-text);
  color: var(--yz-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: var(--yz-border);
}
.yz-membership__info {
  padding: 8rem 8%;
  display: flex; flex-direction: column; justify-content: center;
  border-right: var(--yz-border-invert);
}
.yz-membership__info .yz-title { margin-bottom: 2rem; }
.yz-price {
  font-family: var(--yz-font-massive);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--yz-rose);
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.yz-membership__text {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  max-width: 90%;
  line-height: 1.7;
}
.yz-membership__perks { display: grid; gap: 0.9rem; margin-bottom: 3rem; opacity: 0.85; }
.yz-membership__perks li {
  display: flex; align-items: center; gap: 1rem; font-size: 0.95rem;
}
.yz-membership__perks li::before {
  content: ''; width: 8px; height: 8px; background: var(--yz-rose); flex-shrink: 0;
}

.yz-wallet-container {
  perspective: 1200px;
  display: flex; justify-content: center; align-items: center;
  padding: 5rem 4rem;
  min-height: 600px;
}
.yz-wallet {
  width: 330px; height: 520px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  position: relative; overflow: hidden;
}
.yz-wallet::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(245,175,197,0.12), transparent 50%);
  pointer-events: none;
}
.yz-wallet__top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.yz-wallet__logo {
  font-family: var(--yz-font-logo);
  font-size: 1.4rem; font-weight: 600;
  color: var(--yz-bg);
  transform: translateZ(30px);
}
.yz-wallet__nfc { width: 32px; height: 32px; opacity: 0.4; transform: translateZ(20px); color: var(--yz-bg); }
.yz-wallet__footer { transform: translateZ(40px); position: relative; z-index: 2; }
.yz-wallet__kicker { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; opacity: 0.5; margin-bottom: 8px; }
.yz-wallet__tier { font-family: var(--yz-font-massive); font-size: 2.3rem; line-height: 1; letter-spacing: 3px; color: var(--yz-bg); }
.yz-wallet__chip {
  width: 44px; height: 32px;
  background: linear-gradient(135deg, #d4b97c, #8c7342);
  border-radius: 5px; margin-top: 1.5rem;
  transform: translateZ(25px);
  box-shadow: 0 4px 12px rgba(212,185,124,0.3);
}

/* ================================================================
   SHOP / MERCH
   ================================================================ */
.yz-shop__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 5rem; gap: 3rem; flex-wrap: wrap;
}
.yz-shop__header .yz-title { margin-bottom: 0; }

.yz-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
}
.yz-merch-item { display: flex; flex-direction: column; gap: 1.2rem; text-decoration: none; }
.yz-merch-item__media {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--yz-gray);
  position: relative;
}
.yz-merch-item__media img,
.yz-merch-item__media .yz-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--yz-ease);
}
.yz-merch-item:hover .yz-merch-item__media img,
.yz-merch-item:hover .yz-merch-item__media .yz-placeholder { transform: scale(1.04); }

.yz-merch-item__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--yz-rose);
  color: var(--yz-text);
  padding: 0.4rem 0.9rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.yz-merch-item__meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; border-top: var(--yz-border); padding-top: 1.2rem;
}
.yz-merch-item__title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  line-height: 1.4;
}
.yz-merch-item__price {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
  white-space: nowrap;
  font-weight: 500;
}
.yz-merch-item__price del { opacity: 0.4; margin-right: 0.4rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.yz-footer {
  background: var(--yz-text);
  color: var(--yz-bg);
  padding: 6rem var(--yz-pad-x) 2rem;
  border-top: var(--yz-border);
}
.yz-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: var(--yz-border-invert);
}
.yz-footer__brand .yz-logo { color: var(--yz-bg); font-size: 1.8rem; }
.yz-footer__brand .yz-logo img { filter: brightness(0) invert(1); }
.yz-footer__brand p { margin-top: 1.5rem; opacity: 0.6; max-width: 340px; font-size: 0.95rem; line-height: 1.7; }
.yz-footer__col h4 {
  font-family: var(--yz-font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.4; margin-bottom: 1.4rem;
}
.yz-footer__col ul { display: grid; gap: 0.9rem; }
.yz-footer__col a { opacity: 0.8; font-size: 0.9rem; transition: opacity 0.3s; }
.yz-footer__col a:hover { opacity: 1; }
.yz-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0.4; font-size: 0.75rem; flex-wrap: wrap; gap: 1rem;
  letter-spacing: 1px;
}
.yz-footer__big {
  font-family: var(--yz-font-massive);
  font-size: clamp(6rem, 22vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  margin-top: 4rem;
  opacity: 0.06;
  text-transform: uppercase;
  user-select: none;
  overflow: hidden;
  text-align: center;
}

/* ================================================================
   GSAP reveal hidden states
   ================================================================ */
/* L'etat cache d'avant animation est retire le 2026-08-19 : un titre est visible des la
   premiere peinture. Voir la note dans `snippets/yz-head.liquid`. */
.gs-hero-text { display: inline-block; will-change: transform, opacity; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1024px) {
  /* Keep hero as 2-col on tablet/mobile: massive text left, media right */
  .yz-hero {
    grid-template-columns: 1.3fr 1fr;
    min-height: auto;
    padding-top: calc(var(--yz-header-height) + 1rem);
  }
  .yz-hero__left { padding: 2.5rem var(--yz-pad-x); }
  .yz-hero__right { border-left: var(--yz-border); }
  .yz-hero__subtitle-box { padding: 1.5rem var(--yz-pad-x); }
  .yz-hero__media { min-height: 200px; padding: 1rem; }
  .yz-hero-subtitle { font-size: 0.9rem; }
  .yz-formats-grid { grid-template-columns: 1fr; border-left: none; }
  .yz-format-card { border-left: var(--yz-border); min-height: auto; padding: 3rem var(--yz-pad-x); }
  .yz-membership { grid-template-columns: 1fr; }
  .yz-membership__info { border-right: none; border-bottom: var(--yz-border-invert); padding: 5rem var(--yz-pad-x); }
  .yz-wallet-container { padding: 4rem 0; min-height: 500px; }
  .yz-shop__header { flex-direction: column; align-items: flex-start; }
  .yz-merch-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.2rem; }
  .yz-footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
}
@media (max-width: 640px) {
  .yz-massive { font-size: 16vw; }
  .yz-merch-grid { grid-template-columns: 1fr; }
  .yz-footer__grid { grid-template-columns: 1fr; }
  /* Mobile hero: still 2-col with text left + media right */
  .yz-hero { grid-template-columns: 1.3fr 1fr; }
  .yz-hero__left { padding: 2rem var(--yz-pad-x); }
  .yz-hero__subtitle-box { padding: 1.2rem var(--yz-pad-x); font-size: 0.85rem; }
  .yz-hero-subtitle { font-size: 0.85rem; line-height: 1.4; }
  .yz-hero__media { padding: 0.6rem; min-height: 160px; }
  .yz-membership__info { padding: 4rem var(--yz-pad-x); }
}
