@font-face {
  font-family: 'Autography';
  src: url('fonts/Autography.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --noir: #161412;
  --charbon: #1f1d1a;
  --carte: #211f1c;
  --perle: #ECE7DC;
  --perle-70: rgba(236, 231, 220, 0.7);
  --perle-45: rgba(236, 231, 220, 0.45);
  --perle-15: rgba(236, 231, 220, 0.15);
  --accent: #ece7dc;
  --font-serif: 'Italiana', serif;
  --font-sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.is-loading { overflow: hidden; }

body {
  background-color: var(--noir);
  background-image: radial-gradient(ellipse 120% 65% at 50% -5%, rgba(236, 218, 185, 0.07) 0%, transparent 100%);
  background-attachment: fixed;
  color: var(--perle);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.no-grain::after { display: none; }

::selection { background: var(--perle); color: var(--noir); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.12; text-wrap: balance; }

a { color: inherit; text-decoration: none; }

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ---------- Wordmark ---------- */
.mark { display: block; color: currentColor; }

/* ---------- Loader ---------- */
#sclLoad {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charbon);
  transition: opacity 0.9s var(--ease), visibility 0s linear 0.9s;
}
#sclLoad.scl-done { opacity: 0; visibility: hidden; pointer-events: none; }
.scl-load__col { display: flex; flex-direction: column; align-items: center; }
.scl-mark {
  position: relative;
  width: 184px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scl-mark > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.scl-set { width: 114px; height: auto; display: block; position: relative; color: inherit; }
.scl-mark rect {
  fill: none;
  stroke: var(--perle-45);
  stroke-width: 1.4;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: scl-draw 1.5s cubic-bezier(.65, 0, .35, 1) forwards;
}
.scl-word {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--perle);
  text-align: center;
  line-height: 1;
  font-size: 28px;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(7px);
  animation: scl-rise 1s cubic-bezier(.16, 1, .3, 1) forwards .6s;
}
.scl-word span { display: block; }
.scl-bar {
  margin-top: 28px;
  width: 140px;
  height: 1px;
  background: var(--perle-15);
  overflow: hidden;
  opacity: 0;
  animation: scl-rise .6s ease forwards .6s;
}
.scl-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--perle-45);
  transform: translateX(-101%);
  animation: scl-fill 1.8s cubic-bezier(.55, 0, .2, 1) forwards .6s;
}
@keyframes scl-draw { to { stroke-dashoffset: 0; } }
@keyframes scl-rise { to { opacity: 1; transform: none; } }
@keyframes scl-fill { to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .scl-mark rect { animation: none; stroke-dashoffset: 0; }
  .scl-word { animation: none; opacity: 1; transform: none; }
  .scl-bar { animation: none; opacity: 1; }
  .scl-bar i { animation: none; transform: none; }
}

/* ---------- Nav ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled,
body.inner header {
  background: rgba(22, 20, 18, 0.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--perle-15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-lockup { display: flex; align-items: center; gap: 14px; color: var(--perle); }
.nav-lockup .mark { width: 52px; }
.nav-lockup span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3em;
}
.nav-pp {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Italiana', serif;
  gap: 4px;
}
.nav-pp .pp-top {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
}
.nav-pp .pp-bot {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-pp .pp-since {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 2px;
  font-family: 'Jost', sans-serif;
}
.nav-links { display: flex; gap: clamp(18px, 2.2vw, 40px); list-style: none; }
.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--perle-70);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--perle); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav-links a.active { color: var(--perle); }
.nav-links a.active::after { transform: scaleX(1); }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0 8px 8px;
  color: var(--perle);
  position: relative;
  z-index: 55;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero-scroll-track {
  height: 260vh;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  padding: 140px 24px 120px;
  overflow: hidden;
}

/* Sticky only when inside the scroll track */
.hero-scroll-track .hero {
  height: 100svh;
  min-height: unset;
  position: sticky;
  top: 0;
}

.hero-bar {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--noir);
  z-index: 4;
  pointer-events: none;
}
.hero-bar--top {
  top: 0;
  height: 15vh;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}
.hero-bar--bot {
  bottom: 0;
  height: 15vh;
  transform: scaleY(0);
  transform-origin: bottom center;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--noir);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-bg { will-change: transform; }
.hero-inner { will-change: transform, opacity; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg image-slot {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.78) 0%, rgba(22, 20, 18, 0.5) 42%, rgba(22, 20, 18, 0.62) 70%, rgba(22, 20, 18, 0.94) 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(22, 20, 18, 0.25), rgba(22, 20, 18, 0.6));
}
.hero-inner { display: grid; justify-items: center; gap: 36px; max-width: 1000px; position: relative; z-index: 2; }
.hero .mark { width: clamp(110px, 14vw, 150px); color: var(--perle); }
.hero-cucine {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.42em;
  margin-right: -0.42em;
  margin-top: -16px;
}
.hero-logo {
  width: clamp(220px, 32vw, 380px);
  height: auto;
}
.hero-mark-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(235, 228, 218, 0.5);
  padding: clamp(28px, 4.5vw, 56px) clamp(36px, 6vw, 72px);
}
.hmt-line {
  font-family: 'Italiana', serif;
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--perle);
  text-align: center;
}
.hero h1 {
  font-family: 'Autography', serif;
  font-size: clamp(52px, 8.5vw, 124px);
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.01em;
}
.hero-line {
  max-width: 460px;
  color: var(--perle-70);
  font-size: 17px;
  letter-spacing: 0.02em;
}
.hero-cta {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent);
  border-bottom: 1px solid var(--perle-15);
  padding-bottom: 10px;
  white-space: nowrap;
  transition: letter-spacing 0.4s var(--ease);
}
.hero-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.hero-cta:hover { letter-spacing: 0.34em; }
.hero-cta:hover::after { transform: scaleX(1); }

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 88px;
  background: var(--perle-15);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 110%; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue::after { animation: none; } }

/* ---------- Cinematic band ---------- */
.band { padding: 0 48px; }
.band image-slot { width: 100%; aspect-ratio: 21 / 9; height: auto; }

/* ---------- Page head (inner pages) ---------- */
.page-head {
  padding: 220px 0 0;
}
.page-head .wrap { display: grid; gap: 22px; max-width: 860px; }
.page-head h1 {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.04;
}
.page-head .page-sub {
  color: var(--perle-70);
  font-size: 18px;
  max-width: 560px;
  letter-spacing: 0.01em;
}

/* ---------- Featured sections (home) ---------- */
.feat-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--perle-15);
}
.feat-section--light {
  background: var(--perle);
  border-bottom-color: rgba(22, 20, 18, 0.08);
}
.feat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.feat-header h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.07;
  max-width: 660px;
  margin: 0;
}
.feat-link {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--perle-70);
  white-space: nowrap;
  border-bottom: 1px solid var(--perle-15);
  padding-bottom: 8px;
  flex-shrink: 0;
  transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.4s var(--ease);
}
.feat-link:hover { color: var(--perle); border-color: var(--perle-45); letter-spacing: 0.32em; }
.feat-link--dark {
  color: rgba(22, 20, 18, 0.55);
  border-bottom-color: rgba(22, 20, 18, 0.15);
}
.feat-link--dark:hover { color: var(--noir); border-bottom-color: rgba(22, 20, 18, 0.4); }
.feat-images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
  height: 560px;
}
.feat-images--alt { grid-template-columns: 1fr 1.5fr; }
.feat-img-primary { position: relative; overflow: hidden; }
.feat-img-primary image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; transition: transform 1.2s var(--ease); }
.feat-img-primary:hover image-slot { transform: scale(1.04); }
.feat-img-secondary { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.feat-img-cell { position: relative; overflow: hidden; }
.feat-img-cell image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; transition: transform 1.2s var(--ease); }
.feat-img-cell:hover image-slot { transform: scale(1.05); }
.feat-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 28px 22px;
  background: linear-gradient(to top, rgba(22, 20, 18, 0.82) 0%, rgba(22, 20, 18, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.feat-quote q {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  color: var(--perle);
  line-height: 1.45;
  margin-bottom: 8px;
  quotes: '\00AB' '\00BB';
}
.feat-quote q::before { content: open-quote; }
.feat-quote q::after  { content: close-quote; }
.feat-quote cite {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(235, 228, 218, 0.55);
  font-style: normal;
}
/* Aside layout — text left, single tall image right (Espaces de vie) */
.feat-aside {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 80px;
  align-items: center;
  min-height: 560px;
}
.feat-aside-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.feat-aside-text h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--noir);
  margin: 0;
}
.feat-aside-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--noir);
  opacity: 0.55;
  max-width: 360px;
  margin: 0;
}
.feat-aside-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.feat-aside-img image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1.2s var(--ease);
}
.feat-aside-img:hover image-slot { transform: scale(1.03); }

/* ---------- Index hub ---------- */
.hub { padding: 0 0 40px; }
.hub-list { display: grid; border-top: 1px solid var(--perle-15); }
.hub-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--perle-15);
  transition: padding-left 0.45s var(--ease), background 0.45s ease;
}
.hub-item:hover { padding-left: 28px; background: rgba(236, 231, 220, 0.02); }
.hub-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  width: 44px;
  flex: none;
}
.hub-name {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: 0.01em;
  flex: 1;
}
.hub-desc {
  color: var(--perle-45);
  font-size: 15px;
  max-width: 280px;
  text-align: right;
}
.hub-arrow {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--perle-45);
  transition: transform 0.45s var(--ease), color 0.45s ease;
}
.hub-item:hover .hub-arrow { transform: translateX(8px); color: var(--accent); }

/* ---------- CTA Split Panel (À propos / Contact) ---------- */
.cta-pair {
  display: flex;
  border-top: 1px solid var(--perle-15);
}
.cta-half {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  overflow: hidden;
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  border-right: 1px solid var(--perle-15);
  transition: flex-grow 0.75s var(--ease);
}
.cta-half:last-child { border-right: none; }
.cta-pair:has(.cta-half:hover) .cta-half { flex-grow: 0.88; }
.cta-pair .cta-half:hover { flex-grow: 1.12; }
/* Background image — always visible */
.cta-half-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.0);
  transition: transform 1.4s var(--ease);
  pointer-events: none;
}
.cta-half-bg image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.cta-half:hover .cta-half-bg { transform: scale(1.04); }
/* Gradient scrim — always on, lightens on hover */
.cta-half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 20, 18, 0.92) 0%,
    rgba(22, 20, 18, 0.60) 45%,
    rgba(22, 20, 18, 0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.cta-half:hover::after { opacity: 0.72; }
/* Cursor spotlight — above scrim */
.cta-half::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 110%),
    rgba(236, 231, 220, 0.06),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 2;
}
.cta-half:hover::before { opacity: 1; }
/* Inner content — above everything */
.cta-half-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.65s var(--ease);
}
.cta-half:hover .cta-half-inner { transform: translateY(-8px); }
.cta-half h3 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.5vw, 86px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--perle);
  margin: 0;
  text-wrap: balance;
}
.cta-half-sub {
  order: -1;
  color: rgba(236, 231, 220, 0.55);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.5s ease;
}
.cta-half:hover .cta-half-sub { color: var(--perle-70); }
/* SVG arrow — draws once on scroll-in, slides right on hover */
.cta-arrow-wrap {
  display: flex;
  align-items: center;
  height: 20px;
  margin-top: 6px;
  transition: transform 0.5s var(--ease);
}
.cta-half:hover .cta-arrow-wrap { transform: translateX(10px); }
.cta-arrow-svg {
  width: 60px;
  height: 14px;
  color: rgba(236, 231, 220, 0.5);
  overflow: visible;
  transition: color 0.45s ease;
}
.cta-half:hover .cta-arrow-svg { color: var(--perle); }
.cta-arrow-svg line { stroke-dasharray: 50; stroke-dashoffset: 50; }
.cta-arrow-svg polyline { stroke-dasharray: 20; stroke-dashoffset: 20; }
@keyframes draw-cta-line { to { stroke-dashoffset: 0; } }
@keyframes draw-cta-poly { to { stroke-dashoffset: 0; } }
/* One-time draw on viewport entry — works on all devices including mobile */
html.js .cta-half:nth-child(1).inview .cta-arrow-svg line  { animation: draw-cta-line 0.65s var(--ease) 0.36s both; }
html.js .cta-half:nth-child(1).inview .cta-arrow-svg polyline { animation: draw-cta-poly 0.45s var(--ease) 0.84s both; }
html.js .cta-half:nth-child(2).inview .cta-arrow-svg line  { animation: draw-cta-line 0.65s var(--ease) 0.50s both; }
html.js .cta-half:nth-child(2).inview .cta-arrow-svg polyline { animation: draw-cta-poly 0.45s var(--ease) 0.98s both; }
/* Scroll-in stagger for text */
html.js .cta-half h3 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
html.js .cta-half .cta-half-sub {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s var(--ease);
}
html.js .cta-half .cta-arrow-wrap {
  opacity: 0;
  transition: opacity 0.5s ease 0.18s, transform 0.5s var(--ease);
}
html.js .cta-half.inview h3 { opacity: 1; transform: none; }
html.js .cta-half.inview .cta-half-sub { opacity: 1; transform: none; }
html.js .cta-half.inview .cta-arrow-wrap { opacity: 1; }
html.js .cta-half:nth-child(1) h3 { transition-delay: 0s; }
html.js .cta-half:nth-child(1) .cta-half-sub { transition-delay: 0.08s; }
html.js .cta-half:nth-child(2) h3 { transition-delay: 0.14s; }
html.js .cta-half:nth-child(2) .cta-half-sub { transition-delay: 0.22s; }
html.js .cta-half:nth-child(2) .cta-arrow-wrap {
  transition: opacity 0.5s ease 0.32s, transform 0.5s var(--ease);
}

.cta-half-btn { align-self: flex-start; margin-top: 16px; }
html.js .cta-half .cta-half-btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.44s, transform 0.7s var(--ease) 0.44s;
}
html.js .cta-half.inview .cta-half-btn { opacity: 1; transform: none; }

/* ---------- Catalogues ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}
.cat-card { display: grid; gap: 0; }
.cat-cover { position: relative; overflow: hidden; }
.cat-cover image-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  transition: opacity 0.4s ease, transform 1.1s var(--ease);
}
.cat-card:hover .cat-cover image-slot { opacity: 0.88; transform: scale(1.04); }
.cat-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--perle-15);
}
.cat-title { font-family: var(--font-serif); font-size: 30px; font-weight: 500; letter-spacing: 0.02em; }
.cat-meta { color: var(--perle-45); font-size: 14px; letter-spacing: 0.04em; margin-top: 8px; }
.cat-link {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  border-bottom: 1px solid var(--perle-45);
  padding-bottom: 8px;
  transition: letter-spacing 0.4s var(--ease), border-color 0.4s ease;
}
.cat-link:hover { letter-spacing: 0.3em; border-color: var(--accent); }
.cat-skeleton { pointer-events: none; }
.cat-sk-cover { aspect-ratio: 4/3; background: var(--perle-07); animation: cat-pulse 1.6s ease-in-out infinite; }
.cat-sk-body  { height: 40px; margin-top: 26px; background: var(--perle-07); animation: cat-pulse 1.6s ease-in-out infinite 0.2s; }
@keyframes cat-pulse { 0%,100%{opacity:.4} 50%{opacity:.8} }

/* ---------- Materials carousel ---------- */
.mat-heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--perle-70);
}
.mat-carousel-wrap {
  position: relative;
}
.mat-side-btn {
  position: absolute;
  top: 0;
  bottom: 64px;
  width: 90px;
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  color: rgba(232,224,210,0.7);
  transition: color 0.3s ease;
  pointer-events: all;
}
.mat-side-btn--left {
  left: 0;
  background: linear-gradient(to right, rgba(10,9,8,0.6) 0%, transparent 100%);
  justify-content: flex-start;
  padding-left: 22px;
}
.mat-side-btn--right {
  right: 0;
  background: linear-gradient(to left, rgba(10,9,8,0.6) 0%, transparent 100%);
  justify-content: flex-end;
  padding-right: 22px;
}
.mat-side-btn svg { width: 18px; height: 18px; }
.mat-side-btn:hover { color: #fff; }
.mat-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 64px;
  cursor: grab;
  user-select: none;
}
.mat-track-wrap:active { cursor: grabbing; }
.mat-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.mat-slide {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--perle-07);
  cursor: pointer;
}
.mat-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
}
.mat-slide:hover img { transform: scale(1.05); opacity: 0.85; }

/* ---------- Material lightbox ---------- */
.mat-lb {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mat-lb.is-open {
  opacity: 1;
  pointer-events: all;
}
.mat-lb-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.88);
  backdrop-filter: blur(6px);
}
.mat-lb-img {
  position: relative;
  max-width: min(520px, 90vw);
  max-height: 85vh;
  transform: scale(0.72) translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}
.mat-lb.is-open .mat-lb-img { transform: scale(1) translateY(0); opacity: 1; }
.mat-lb-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
}
.mat-lb-caption {
  position: absolute;
  bottom: -36px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--perle-45);
}
.mat-lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--perle-45);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 0;
}
.mat-lb-close:hover { color: var(--perle); }

/* ---------- About — timeline ---------- */
.ap-timeline { display: flex; flex-direction: column; gap: 0; }
.ap-tl-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--perle-15);
}
.ap-tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  padding-top: 4px;
  flex-shrink: 0;
}
.ap-tl-body h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.ap-tl-body p {
  font-size: 15.5px;
  color: var(--perle-70);
  line-height: 1.75;
  max-width: 580px;
}

.ap-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 48px;
}
.ap-body p {
  font-size: 16px;
  color: var(--perle-70);
  line-height: 1.8;
  border-top: 1px solid var(--perle-15);
  padding-top: 24px;
}

/* ---------- About — owners text ---------- */
.ap-owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}
.ap-owner {
  padding-top: 28px;
  border-top: 1px solid var(--perle-15);
}
.ap-owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.ap-owner-role {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.ap-owner-bio {
  font-size: 15px;
  color: var(--perle-70);
  line-height: 1.75;
}

/* ---------- About / owners ---------- */
.about-lead {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.32;
  color: var(--perle);
  max-width: 880px;
  text-wrap: pretty;
}
.about-lead em { font-style: italic; color: var(--accent); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  margin-top: 8px;
}
.story-grid p { color: var(--perle-70); font-size: 16.5px; max-width: 480px; }
.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}
.owner { display: grid; gap: 0; }
.owner image-slot { width: 100%; aspect-ratio: 4 / 5; height: auto; }
.owner-meta { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--perle-15); }
.owner-name { font-family: var(--font-serif); font-size: 27px; font-weight: 500; }
.owner-role {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.owner-bio { color: var(--perle-45); font-size: 14.5px; margin-top: 16px; max-width: 380px; }

@media (max-width: 1100px) {
  .cat-grid { gap: 48px 32px; }
}
@media (max-width: 760px) {
  .cat-grid, .owners-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .cat-body { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Sections ---------- */
section { padding: 140px 0; }

.section-head {
  display: grid;
  gap: 22px;
  margin-bottom: 72px;
  max-width: 720px;
}
.section-head h2 { font-size: clamp(36px, 4.6vw, 60px); }
.section-note {
  color: var(--perle-45);
  font-size: 14px;
  font-style: italic;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

/* ---------- Collection chapters ---------- */
#collections-root section { padding: 0; }
.coll-chapter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 64px 0 48px;
  border-top: 1px solid var(--perle-15);
}
.coll-chapter-label {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}
.coll-chapter-desc {
  font-size: 16px;
  color: var(--perle-70);
  letter-spacing: 0.04em;
  max-width: 580px;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto;
}

/* ---------- Collections ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.concept { display: grid; gap: 0; }
.concept image-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  transition: opacity 0.4s ease;
}
.concept:hover image-slot { opacity: 0.88; }
.concept-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--perle-15);
  margin-top: 24px;
}
.concept-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 400;
}
.concept-name {
  font-family: 'Italiana', serif;
  font-size: 27px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.concept-desc {
  color: var(--perle-45);
  font-size: 14.5px;
  letter-spacing: 0.03em;
  margin-top: 6px;
}

/* ---------- Model showcase (editorial grid) ---------- */
.model-showcase { margin-bottom: 72px; }
.model-showcase-header { display: none; }
.model-showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.model-showcase-grid--alt { grid-template-columns: 1fr 2fr; }
.ms-main image-slot,
.ms-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.ms-main:hover image-slot,
.ms-main:hover img { opacity: 0.88; }
.ms-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ms-side image-slot,
.ms-side img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.ms-side > *:hover image-slot,
.ms-side > *:hover img { opacity: 0.88; }

/* ---------- Philosophie (pearl) ---------- */
.philo {
  background: var(--perle);
  color: var(--noir);
}
.philo .label { color: var(--noir); }
.philo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
}
.philo h2 { font-size: clamp(38px, 4.8vw, 64px); margin: 26px 0 40px; }
.philo p {
  color: rgba(22, 20, 18, 0.72);
  font-size: 17px;
  max-width: 520px;
}
.philo p + p { margin-top: 24px; }
.philo image-slot { width: 100%; aspect-ratio: 3 / 4; height: auto; }
.philo-rule {
  width: 64px;
  height: 1px;
  background: rgba(22, 20, 18, 0.3);
  margin-top: 48px;
}
.philo-sign {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(22, 20, 18, 0.6);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact h2 { font-size: clamp(38px, 4.8vw, 64px); margin: 26px 0 28px; }
.contact-intro { color: var(--perle-70); max-width: 420px; font-size: 17px; }
.contact-list { list-style: none; display: grid; }
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--perle-15);
}
.contact-list li:first-child { border-top: 1px solid var(--perle-15); }
.contact-key {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--perle-45);
  font-weight: 400;
}
.contact-val { font-family: 'Jost', sans-serif; font-size: 21px; letter-spacing: 0.02em; }
.contact-val a { border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.contact-val a:hover { border-bottom-color: var(--accent); }

/* ---------- Grand typographic CTA ---------- */
.cta-grand {
  position: relative;
  padding: 160px 48px;
  text-align: center;
  border-top: 1px solid var(--perle-15);
  overflow: hidden;
}
.cta-grand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(210, 180, 130, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-grand-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.cta-grand-rule {
  width: 40px;
  height: 1px;
  background: rgba(210, 180, 130, 0.7);
  margin: 0 auto 44px;
}
.cta-grand .label { display: block; margin-bottom: 28px; }
.cta-grand-h {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 36px;
}
.cta-grand-sub {
  color: var(--perle-70);
  font-size: 16px;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.75;
}
.cta-grand .btn-ghost { margin-top: 40px; }
@media (max-width: 760px) {
  .cta-grand { padding: 120px 24px; }
}

.btn-ghost {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-block;
  margin-top: 48px;
  padding: 18px 44px;
  border: 1px solid var(--perle-45);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--perle);
  white-space: nowrap;
  transition: color 0.45s ease, border-color 0.45s ease, letter-spacing 0.45s var(--ease);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
}
.btn-ghost:hover {
  color: var(--noir);
  border-color: var(--accent);
  letter-spacing: 0.32em;
}
.btn-ghost:hover::before { transform: scaleY(1); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--perle-15); padding: 56px 0; }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-lockup { display: flex; align-items: center; gap: 12px; color: var(--perle-70); }
.footer-lockup .mark { width: 42px; }
.footer-lockup span { font-size: 13px; letter-spacing: 0.3em; font-weight: 400; }
.footer-legal { color: var(--perle-45); font-size: 13px; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--perle-45);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--perle); }

/* ---------- Contact — key/value split animation ---------- */
html.js .contact-list li {
  overflow: hidden;
}
html.js .contact-list li .contact-key {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
html.js .contact-list li .contact-val {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease) 0.18s, transform 0.55s var(--ease) 0.18s;
}
html.js .contact-list li.inview .contact-key { opacity: 1; transform: none; }
html.js .contact-list li.inview .contact-val { opacity: 1; transform: none; }
html.js .contact-list li:nth-child(1) .contact-key { transition-delay: 0s; }
html.js .contact-list li:nth-child(1) .contact-val { transition-delay: 0.18s; }
html.js .contact-list li:nth-child(2) .contact-key { transition-delay: 0.12s; }
html.js .contact-list li:nth-child(2) .contact-val { transition-delay: 0.30s; }
html.js .contact-list li:nth-child(3) .contact-key { transition-delay: 0.24s; }
html.js .contact-list li:nth-child(3) .contact-val { transition-delay: 0.42s; }
html.js .contact-list li:nth-child(4) .contact-key { transition-delay: 0.36s; }
html.js .contact-list li:nth-child(4) .contact-val { transition-delay: 0.54s; }
html.js .contact-list li:nth-child(5) .contact-key { transition-delay: 0.48s; }
html.js .contact-list li:nth-child(5) .contact-val { transition-delay: 0.66s; }

@media (prefers-reduced-motion: reduce) {
  html.js .contact-list li .contact-key,
  html.js .contact-list li .contact-val { opacity: 1; transform: none; transition: none; }
}

/* ---------- Reveal ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
html.js .reveal.inview { opacity: 1; transform: none; }

/* Clip-path wipe — for image-heavy blocks */
html.js .reveal-wipe {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.3s var(--ease);
}
html.js .reveal-wipe.inview { clip-path: inset(0 0 0% 0); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .reveal-wipe { clip-path: none; transition: none; }
  html.js .cta-half h3,
  html.js .cta-half .cta-half-sub,
  html.js .cta-half .cta-arrow-wrap { opacity: 1; transform: none; transition: none; }
  .cta-half-bg,
  .cta-half-inner { transition: none; }
  .cta-arrow-svg line,
  .cta-arrow-svg polyline { animation: none; stroke-dashoffset: 0; transition: none; }
  /* Disable scroll-driven hero */
  .hero-scroll-track { height: auto; }
  .hero { position: relative; height: auto; min-height: 100svh; }
  .hero-bar, .hero-veil { display: none; }
}
@media print {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html.js .reveal-wipe { clip-path: none !important; }
  #sclLoad, .scroll-cue { display: none !important; }
}

/* ---------- Gallery overlay ---------- */
#gallery-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(14, 12, 10, 0.97);
  display: flex; flex-direction: column;
  color: var(--perle);
  font-family: var(--font-sans);
}
#gallery-overlay[hidden] { display: none !important; }
.gl-header {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--perle-15);
  flex-shrink: 0;
}
.gl-title {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--perle-70);
}
.gl-count {
  font-size: 11px; color: var(--perle-45); letter-spacing: .1em;
  margin-left: auto;
}
.gl-close {
  background: none; border: none; color: var(--perle-45);
  display: flex; align-items: center; justify-content: center;
  padding: 4px; cursor: pointer; transition: color .2s;
  flex-shrink: 0;
}
.gl-close:hover { color: var(--perle); }
.gl-close svg { width: 18px; height: 18px; }

#gallery-overlay [hidden] { display: none !important; }

/* grid */
.gl-grid {
  flex: 1; overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3px;
  padding: 3px;
}
.gl-thumb {
  background: none; border: none; padding: 0; cursor: pointer;
  aspect-ratio: 4 / 3; overflow: hidden; display: block;
}
@keyframes glThumbIn {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.gl-thumb--in {
  animation: glThumbIn .35s var(--ease) both;
}
.gl-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .25s, transform .4s var(--ease);
}
.gl-thumb:hover img { opacity: .82; transform: scale(1.04); }

.gl-sentinel {
  grid-column: 1 / -1;
  height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.gl-sentinel::after {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--perle-15);
  border-top-color: var(--perle-45);
  animation: glSpin .8s linear infinite;
}
@keyframes glSpin { to { transform: rotate(360deg); } }

/* full */
.gl-full {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gl-img-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 24px 80px;
}
#gl-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  transition: opacity .25s;
}
.gl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(236,231,220,.08); border: 1px solid var(--perle-15);
  border-radius: 2px; color: var(--perle);
  width: 44px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
  z-index: 2;
}
.gl-nav:hover { background: rgba(236,231,220,.16); }
.gl-nav svg { width: 24px; height: 24px; }
.gl-prev { left: 16px; }
.gl-next { right: 16px; }
.gl-pos {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .2em; color: var(--perle-45);
}
.gl-back {
  position: absolute; bottom: 18px; left: 28px;
  background: none; border: none; color: var(--perle-45);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: color .2s; font-family: var(--font-sans);
}
.gl-back:hover { color: var(--perle); }
.gl-back svg { width: 14px; height: 14px; }

/* gallery trigger button */
.gallery-trigger {
  display: flex; align-items: center; gap: 10px;
  margin-top: 40px;
  background: none; border: none;
  color: var(--perle-45); font-family: var(--font-sans);
  font-size: 11px; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
  cursor: pointer; padding: 0;
  transition: color .2s;
}
.gallery-trigger:hover { color: var(--perle); }
.gallery-trigger svg { width: 14px; height: 14px; }
.gallery-trigger-line {
  display: block; width: 32px; height: 1px;
  background: currentColor; transition: width .3s var(--ease);
}
.gallery-trigger:hover .gallery-trigger-line { width: 56px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .philo-grid, .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .philo image-slot { aspect-ratio: 4 / 3; height: auto; }
  .feat-images, .feat-images--alt { grid-template-columns: 1fr; height: auto; }
  .feat-img-primary image-slot { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 16/9; }
  .feat-img-secondary { grid-template-rows: auto; grid-template-columns: 1fr 1fr; height: 240px; }
  .feat-img-cell image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
  .feat-aside { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .feat-aside-img { height: 420px; }
  .cta-half { padding: 72px 56px; }
}
@media (max-width: 760px) {
  .hero-scroll-track { height: 210vh; }
  .wrap { padding: 0 24px; }
  .band { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 20, 18, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 40;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { font-size: 22px; letter-spacing: 0.2em; color: var(--perle-70); }
  .nav-links a:hover, .nav-links a.active { color: var(--perle); }
  section { padding: 80px 0; }
  .band image-slot { aspect-ratio: 4 / 3; height: auto; }
  .page-head { padding-top: 148px; }
  .feat-section { padding: 64px 0; }
  .feat-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .feat-aside { gap: 36px; }
  .feat-aside-img { height: auto; aspect-ratio: 4/3; }
  .feat-aside-img image-slot { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 4/3; }
  .cta-pair { flex-direction: column; }
  .cta-half {
    min-height: 300px;
    padding: 56px 24px;
    border-right: none;
    border-bottom: 1px solid var(--perle-15);
  }
  .cta-half:last-child { border-bottom: none; }
  .cta-pair:has(.cta-half:hover) .cta-half { flex-grow: 1; }
  .cta-pair .cta-half:hover { flex-grow: 1; }
  .hub-item { flex-wrap: wrap; gap: 12px 20px; padding: 28px 8px; }
  .hub-desc { text-align: left; max-width: none; flex-basis: 100%; padding-left: 64px; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-list li { grid-template-columns: 1fr; gap: 6px; }
}
