/* ============================================================
   MAISON CELESTE — BRIDAL COUTURE HOUSE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400;1,6..96,500;1,6..96,600&family=Inter:wght@300;400;500&display=swap');

/* --------------------------------------------------------
   CUSTOM PROPERTIES
   -------------------------------------------------------- */
:root {
  /* Palette */
  --moon-ivory:    #F9F5EF;
  --pearl:         #F3EDE5;
  --champagne:     #E9DCC9;
  --soft-gold:     #C9A96E;
  --warm-gold:     #B8935A;
  --obsidian:      #1C1C1C;
  --dark-ivory:    #2E2B28;
  --white:         #FEFEFE;

  /* Text */
  --text-primary:   #2C2926;
  --text-secondary: #6B6459;
  --text-tertiary:  #9E9690;

  /* Typography */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   32px;
  --sp-lg:   64px;
  --sp-xl:   120px;
  --sp-2xl:  200px;

  /* Transitions */
  --ease-luxury:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow:   0.9s var(--ease-luxury);
  --t-medium: 0.55s var(--ease-luxury);
  --t-fast:   0.3s  var(--ease-luxury);

  /* Layout */
  --nav-h:        80px;
  --max-w:        1440px;
  --content-w:    1200px;
  --narrow-w:     820px;
}

/* --------------------------------------------------------
   RESET
   -------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--moon-ivory);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* --------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background-color var(--t-medium), border-bottom-color var(--t-medium);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background-color: rgba(249, 245, 239, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 169, 110, 0.18);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: opacity var(--t-fast);
  opacity: 0.6;
}
.nav.is-scrolled .nav-logo { opacity: 1; }
.nav-logo:hover { opacity: 0.65; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--obsidian);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background-color: var(--soft-gold);
  transition: width var(--t-medium);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--text-primary); }
.nav-links a.is-active::after { width: 100%; }

/* --------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.52s; }

/* --------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------- */
.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 60px;
}

.container-narrow {
  max-width: var(--narrow-w);
  margin: 0 auto;
  padding: 0 60px;
}

.section { padding: var(--sp-xl) 0; }

.gold-rule {
  width: 44px; height: 1px;
  background-color: var(--soft-gold);
  margin: 36px 0;
}

.gold-rule-center {
  width: 44px; height: 1px;
  background-color: var(--soft-gold);
  margin: 36px auto;
}

/* --------------------------------------------------------
   TYPOGRAPHY UTILITIES
   -------------------------------------------------------- */
.label-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.caption-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

/* --------------------------------------------------------
   IMAGE FIGURES — placeholder + real image
   -------------------------------------------------------- */
.img-frame {
  position: relative;
  overflow: hidden;
  background-color: var(--champagne);
}

.img-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Collection-specific placeholder tints */
.tint-nocturne    { background: linear-gradient(150deg, #F5EDD8 0%, #DEC9A2 60%, #C9AA78 100%); }
.tint-etoile      { background: linear-gradient(150deg, #F8F4EE 0%, #EAE1D3 60%, #D9CEBC 100%); }
.tint-obsidienne  { background: linear-gradient(150deg, #2C2A26 0%, #3B3530 60%, #A07C45 100%); }

/* Filename label inside placeholder */
.img-frame::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 41, 38, 0.28);
  pointer-events: none;
  z-index: 2;
}
.tint-obsidienne::after { color: rgba(249, 245, 239, 0.25); }

/* --------------------------------------------------------
   HERO — HOMEPAGE
   -------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s ease;
}

.hero-bg.is-loaded img { transform: scale(1); }

.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(249,245,239,0.08) 0%,
    rgba(249,245,239,0.28) 55%,
    rgba(249,245,239,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 80px;
  border-radius: 2px;
  background: radial-gradient(ellipse at center, rgba(233,220,201,0.18) 0%, transparent 72%);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1) 0.5s,
              transform 1.6s cubic-bezier(0.4,0,0.2,1) 0.5s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(57px, 8.7vw, 115px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 0.88;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 2.0s cubic-bezier(0.4,0,0.2,1) 1.0s,
              transform 2.0s cubic-bezier(0.4,0,0.2,1) 1.0s;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #4A4440;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.8s cubic-bezier(0.4,0,0.2,1) 2.2s,
              transform 1.8s cubic-bezier(0.4,0,0.2,1) 2.2s;
}

.hero-scroll-cue {
  opacity: 0;
  transition: opacity 1.4s ease 3.4s;
}

.hero.is-ready .hero-eyebrow,
.hero.is-ready .hero-title,
.hero.is-ready .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-ready .hero-scroll-cue {
  opacity: 1;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  /* opacity + transition handled in animation block above */
}

.hero-scroll-cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--soft-gold), transparent);
  animation: cue-pulse 2.2s ease-in-out infinite;
}

@keyframes cue-pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8) translateY(-4px); }
  50%       { opacity: 0.9;  transform: scaleY(1)   translateY(0); }
}

.hero-scroll-cue-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* --------------------------------------------------------
   HOUSE STATEMENT
   -------------------------------------------------------- */
.statement {
  padding: 72px 0;
  text-align: center;
}

.statement-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 auto 16px;
  line-height: 1.2;
}

.statement-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin: 0;
}

/* --------------------------------------------------------
   COLLECTIONS GRID — HOMEPAGE
   -------------------------------------------------------- */
.home-collections { padding: var(--sp-xl) 0 calc(var(--sp-xl) * 1.3); }

.home-collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-top: 24px;
}

.home-collections-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.link-subtle {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(201, 169, 110, 0.45);
  padding-bottom: 3px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link-subtle:hover { color: var(--text-primary); border-color: var(--soft-gold); }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.collection-card {
  position: relative;
  aspect-ratio: 2/2.9;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.collection-card:hover .collection-card-bg { transform: scale(1.025); }

/* Base veil — restrained gradient */
.collection-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(20,18,16,0.55) 100%
  );
  transition: opacity var(--t-medium);
}

/* Étoile: slightly stronger bottom to bring forward the figure */
.collection-card--etoile .collection-card-veil {
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(20,18,16,0.65) 100%
  );
}

/* Obsidienne: the image is already very dark — lighter veil to balance */
.collection-card--obsidienne .collection-card-veil {
  background: linear-gradient(
    to bottom,
    transparent 52%,
    rgba(20,18,16,0.42) 100%
  );
}

/* Hover cue — appears on pointer enter, invisible otherwise */
.collection-card-hover-cue {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.collection-card-hover-cue span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(249,245,239,0.7);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  padding-bottom: 3px;
}

.collection-card:hover .collection-card-hover-cue {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------
   THE HOUSE — HOMEPAGE
   -------------------------------------------------------- */
.house-intro {
  padding: var(--sp-xl) 0;
  overflow: hidden;
}

.house-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: center;
}

/* Image takes left 3 columns — natural proportions, no crop */
.house-intro-visual {
  position: relative;
}
.house-intro-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 90vh;
  object-fit: contain;
  object-position: center;
}

/* Text column — generous side padding, vertically centered */
.house-intro-copy {
  padding: 60px 72px 60px 64px;
}

.house-intro-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--sp-md);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--soft-gold);
  padding-bottom: 6px;
  transition: gap var(--t-medium), opacity var(--t-fast);
}
.btn-text:hover { gap: 22px; opacity: 0.68; }

/* --------------------------------------------------------
   JOURNAL PREVIEW — HOMEPAGE
   -------------------------------------------------------- */
.journal-preview { padding: var(--sp-xl) 0; }

.journal-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
}

.journal-preview-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-md);
}

.journal-card { cursor: pointer; }

.journal-card-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.journal-card-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform var(--t-slow);
}
.journal-card:hover .journal-card-img img { transform: scale(1.04); }

.journal-card-cat {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 10px;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color var(--t-fast);
}
.journal-card:hover .journal-card-title { color: var(--soft-gold); }

.journal-card-excerpt {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.footer {
  background-color: var(--obsidian);
  color: var(--pearl);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(243,237,229,0.08);
  margin-bottom: var(--sp-md);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 16px;
}

.footer-brand-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: rgba(243,237,229,0.42);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(243,237,229,0.55);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--pearl); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(243,237,229,0.3);
}

/* --------------------------------------------------------
   COLLECTIONS PAGE
   -------------------------------------------------------- */
.page-header-minimal {
  padding: calc(var(--nav-h) + 90px) 0 80px;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 0.9;
  color: var(--text-primary);
}

.page-header-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 22px;
  letter-spacing: 0.12em;
}

.collections-list {}

.collection-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-top: 1px solid rgba(201,169,110,0.18);
  overflow: hidden;
}

.collection-row:nth-child(even) .collection-row-visual { order: 2; }
.collection-row:nth-child(even) .collection-row-copy   { order: 1; }

.collection-row-visual {
  position: relative;
  overflow: hidden;
}

.collection-row-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-luxury);
}
.collection-row:hover .collection-row-visual img { transform: scale(1.04); }

.collection-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
}

.collection-row-num {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.collection-row-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.collection-row-manifesto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.collection-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 52px;
}

.meta-pair {}

.meta-pair-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 5px;
}

.meta-pair-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
}

/* --------------------------------------------------------
   COLLECTION DETAIL PAGE
   -------------------------------------------------------- */
.coll-hero {
  position: relative;
  overflow: hidden;
}

.coll-hero-bg {
  position: relative;
  width: 100%;
}

/* Override img-frame's absolute positioning for collection heroes */
.coll-hero-bg img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  display: block;
}

.coll-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.62) 100%);
}

.coll-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 80px;
  color: var(--white);
}

.coll-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 14px;
}

.coll-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9.5vw, 136px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 26px;
}

.coll-hero-manifesto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.55;
}

/* Metadata bar */
.coll-meta-bar {
  background-color: var(--obsidian);
  padding: 30px 80px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.coll-meta-item {}

.coll-meta-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 6px;
}

.coll-meta-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--pearl);
}

/* Look sections inside collection detail */
.looks-section { padding: var(--sp-xl) 0; }

.look-entry {
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid rgba(201,169,110,0.13);
}
.look-entry:last-child { border-bottom: none; }

.look-entry-header {
  margin-bottom: var(--sp-lg);
}

.look-entry-number {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  display: block;
}

.look-entry-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  line-height: 1;
}

.look-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 14px;
  transition: color var(--t-fast), gap var(--t-medium);
}
.look-entry-link:hover { color: var(--soft-gold); gap: 16px; }

.look-entry-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  align-items: start;
  margin-bottom: var(--sp-lg);
}

/* Hero image: full height, no crop */
.look-hero-img {
  width: 100%;
  overflow: hidden;
}
.look-hero-img img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

/* Pair images stacked vertically on the right */
.look-pair-imgs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Pair images: full width, no crop */
.look-pair-img {
  width: 100%;
  overflow: hidden;
}
.look-pair-img img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.look-entry-story {
  max-width: 660px;
  margin-top: var(--sp-md);
}

.look-entry-story-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ========================================================
   LOOKBOOK SYSTEM — IMMERSIVE COLLECTION PAGES
   ======================================================== */

.lookbook { padding-bottom: var(--sp-xl); }

/* ---- Shared type ---- */
.lb-num {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 14px;
}
.lb-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 28px;
}
.lb-story {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 32px;
}
.lb-link {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color var(--t-fast), gap var(--t-medium);
}
.lb-link:hover { color: var(--soft-gold); gap: 16px; }

.lb-rule {
  width: 28px; height: 1px;
  background: rgba(201,169,110,0.45);
  margin: 24px 0;
}

/* ---- LOOK — hero centre, two side images smaller ---- */
.lb-look {
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid rgba(201,169,110,0.09);
}
.lb-look:last-child { border-bottom: none; }

.lb-look-images {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 60px;
}
.lb-look-side img {
  width: 100%; height: auto; display: block;
  margin-top: 60px;
}
.lb-look-hero img {
  width: 100%; height: auto; display: block;
}

.lb-look-info {
  max-width: var(--content-w);
  margin: 48px auto 0;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lb-look-info .lb-story { margin-bottom: 0; }

/* ---- OBSIDIENNE variant — bolder ---- */
.coll-obsidienne .lb-name {
  font-size: clamp(44px, 5.8vw, 84px);
  letter-spacing: 0.12em;
}
.coll-obsidienne .lb-story {
  color: var(--text-primary);
  font-size: clamp(16px, 1.9vw, 22px);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .lb-look-images {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .lb-look-side { display: none; }
  .lb-look-side img { margin-top: 0; }
  .lb-look-info {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

/* --------------------------------------------------------
   LOOK DETAIL PAGE
   -------------------------------------------------------- */
.look-detail-top {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 60px;
}

.look-detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.look-detail-breadcrumb a {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-gold);
  transition: opacity var(--t-fast);
}
.look-detail-breadcrumb a:hover { opacity: 0.65; }

.breadcrumb-sep {
  color: var(--text-tertiary);
  font-size: 12px;
}

.look-detail-num {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.look-detail-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 0.92;
  color: var(--text-primary);
}

.look-detail-images {
  margin: 56px 0;
  display: grid;
  gap: 4px;
}

.look-detail-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
}

.look-detail-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.look-detail-duo-img {
  aspect-ratio: 3/4;
}

.look-detail-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.look-detail-story-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-secondary);
}

.look-meta-table {
  border-top: 1px solid rgba(201,169,110,0.3);
}

.look-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.look-meta-key {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.look-meta-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  text-align: right;
}

.look-nav {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-xl) 0;
  border-top: 1px solid rgba(201,169,110,0.18);
  margin-top: var(--sp-xl);
}

.look-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.look-nav-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.look-nav-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-primary);
  transition: color var(--t-fast);
}
.look-nav-link:hover .look-nav-name { color: var(--soft-gold); }

/* --------------------------------------------------------
   JOURNAL PAGE
   -------------------------------------------------------- */
.journal-page-header {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  text-align: center;
}

.journal-page-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 124px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.journal-page-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 20px;
}

.journal-cats {
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 0 0 var(--sp-lg);
  flex-wrap: wrap;
}

.journal-cat-btn {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.journal-cat-btn:hover,
.journal-cat-btn.is-active {
  color: var(--text-primary);
  border-bottom-color: var(--soft-gold);
}

/* Featured layout */
.journal-featured {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.journal-featured-main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.journal-featured-main > img {
  width: 100%; height: auto;
  display: block;
  transition: transform var(--t-slow);
}
.journal-featured-main:hover img { transform: scale(1.04); }

.journal-featured-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.64) 100%);
}

.journal-featured-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px;
  color: var(--white);
}

.journal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journal-sidebar-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

.journal-sidebar-item > img {
  width: 100%; height: auto;
  display: block;
  transition: transform var(--t-slow);
}
.journal-sidebar-item:hover img { transform: scale(1.04); }

.journal-sidebar-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.62) 100%);
}

.journal-sidebar-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
  color: var(--white);
}

.jc-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 8px;
}

.jc-title-lg {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.2;
}

.jc-title-sm {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.2;
}

/* Grid of articles */
.journal-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  padding: var(--sp-xl) 0;
}

/* --------------------------------------------------------
   ABOUT PAGE
   -------------------------------------------------------- */
.about-hero {
  height: 72vh;
  min-height: 520px;
  background-color: var(--obsidian);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}

.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--pearl);
  line-height: 0.88;
  margin-bottom: 32px;
}

.about-hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  color: rgba(243,237,229,0.56);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.62;
}

/* Split sections */
.about-split {
  padding: var(--sp-xl) 0;
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-split-inner.is-reversed .about-split-visual { order: 2; }
.about-split-inner.is-reversed .about-split-copy   { order: 1; }

.about-split-visual {
  aspect-ratio: 4/5;
}

.about-split-copy {}

.about-split-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}

.about-split-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-secondary);
}

/* Process grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(201,169,110,0.15);
  margin: var(--sp-lg) 0 0;
}

.process-card {
  background-color: var(--moon-ivory);
  padding: 48px 36px;
}

.process-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,169,110,0.22);
  line-height: 1;
  margin-bottom: 20px;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.process-card-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --------------------------------------------------------
   MOBILE NAV TOGGLE
   -------------------------------------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background-color: var(--text-primary);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* --------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .container  { padding: 0 40px; }
  .container-narrow { padding: 0 40px; }
  .nav        { padding: 0 40px; }

  .collection-row-copy  { padding: 60px 60px; }
  .coll-hero-content    { padding: 60px; }
  .coll-meta-bar        { padding: 28px 60px; gap: 52px; }
}

@media (max-width: 900px) {
  :root { --sp-xl: 80px; --nav-h: 64px; }

  .collections-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .house-intro-inner        { grid-template-columns: 1fr; }
  .house-intro-copy         { padding: 48px 32px; }
  .journal-preview-grid     { grid-template-columns: 1fr 1fr; }
  .journal-preview-grid .journal-card:first-child { grid-column: 1 / -1; }
  .footer-grid              { grid-template-columns: 1fr 1fr; }
  .collection-row           { grid-template-columns: 1fr; min-height: auto; }
  .collection-row:nth-child(even) .collection-row-visual { order: 0; }
  .collection-row:nth-child(even) .collection-row-copy   { order: 0; }
  .collection-row-visual    { aspect-ratio: 16/9; }
  .collection-row-copy      { padding: 60px 40px; }
  .about-split-inner        { grid-template-columns: 1fr; }
  .about-split-inner.is-reversed .about-split-visual { order: 0; }
  .about-split-inner.is-reversed .about-split-copy   { order: 0; }
  .look-detail-body         { grid-template-columns: 1fr; }
  .look-detail-duo          { grid-template-columns: 1fr 1fr; }
  .journal-featured         { grid-template-columns: 1fr; }
  .journal-articles         { grid-template-columns: 1fr 1fr; }
  .process-grid             { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --sp-xl: 60px; }

  .nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .coll-hero-content { padding: 40px 24px; }
  .coll-meta-bar { padding: 24px; gap: 28px; }
  .look-entry-images { grid-template-columns: 1fr; }
  .look-pair-imgs { flex-direction: row; }
  .look-detail-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .journal-preview-grid { grid-template-columns: 1fr; }
  .journal-articles { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .home-collections-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   REFINEMENT LAYER — COUTURE ELEVATION
   ============================================================ */

/* ---- FILM GRAIN OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: mc-grain 0.55s steps(1) infinite;
}

@keyframes mc-grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-4%, -8%); }
  30%  { transform: translate(5%, -14%); }
  50%  { transform: translate(-12%, 7%); }
  70%  { transform: translate(9%, 4%); }
  90%  { transform: translate(-2%, 11%); }
  100% { transform: translate(0, 0); }
}

/* ---- PAGE TRANSITION VEIL ---- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--moon-ivory);
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-veil.is-gone { opacity: 0; }

/* ---- CUSTOM CURSOR ---- */
.mc-cursor {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--soft-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s, width 0.45s cubic-bezier(0.4,0,0.2,1), height 0.45s cubic-bezier(0.4,0,0.2,1), background 0.45s, border 0.45s;
  will-change: left, top;
}
.mc-cursor.is-visible { opacity: 0.5; }
.mc-cursor.is-link {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--soft-gold);
  opacity: 0.32;
}

/* ---- NAV SEAL MONOGRAM ---- */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 14px;
}
.nav-seal {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity var(--t-medium);
  color: var(--text-primary);
}
.nav.is-scrolled .nav-seal,
.nav-logo:hover .nav-seal { opacity: 1; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* ---- FOOTER REDESIGN ---- */
.footer { padding: 0 0 var(--sp-lg); }

.footer-inner { /* no-op wrapper */ }

.footer-seal-row {
  display: flex;
  align-items: center;
  padding: 100px 60px 72px;
  max-width: var(--content-w);
  margin: 0 auto;
}
.footer-rule {
  flex: 1;
  height: 1px;
  background: rgba(243,237,229,0.1);
}
.footer-seal-wrap {
  flex-shrink: 0;
  padding: 0 48px;
}
.footer-seal-svg {
  width: 68px;
  height: 68px;
  color: rgba(201,169,110,0.45);
  display: block;
  transition: color 0.8s ease;
}
.footer-seal-svg:hover { color: rgba(201,169,110,0.8); }

.footer-statement {
  text-align: center;
  padding: 0 60px var(--sp-xl);
  border-bottom: 1px solid rgba(243,237,229,0.07);
  margin-bottom: 0;
}
.footer-maison-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 16px;
}
.footer-world-line {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 12px;
}
.footer-house-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: rgba(243,237,229,0.32);
  letter-spacing: 0.06em;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
  padding-top: var(--sp-lg);
}

.footer-bottom {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

/* ---- IMAGE HOVER — slow cinematic scale ---- */
.journal-featured-main > img,
.journal-sidebar-item > img,
.journal-card-img img {
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.journal-featured-main:hover > img,
.journal-sidebar-item:hover > img,
.journal-card:hover .journal-card-img img { transform: scale(1.03); }

/* ---- HERO PARALLAX ---- */
.hero-bg { overflow: hidden; }
.hero-bg img { will-change: transform; transform-origin: center top; }

/* ---- COLL HERO PARALLAX ---- */
.coll-hero-bg { overflow: hidden; }
.coll-hero-bg img { will-change: transform; transform-origin: center top; }

/* ---- BTN-TEXT UNDERLINE ---- */
.btn-text { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--soft-gold);
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-text:hover::after { width: 100%; }

/* ---- FADE-UP — more cinematic timing ---- */
.fade-up {
  transition-duration: 1.35s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.delay-1 { transition-delay: 0.18s; }
.fade-up.delay-2 { transition-delay: 0.36s; }
.fade-up.delay-3 { transition-delay: 0.54s; }
.fade-up.delay-4 { transition-delay: 0.76s; }

/* ---- COLLECTION CARD — slow veil ---- */
.collection-card-veil { transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1); }
.collection-card:hover .collection-card-veil { opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-seal-row { padding: 72px 40px 52px; }
  .footer-statement { padding: 0 40px var(--sp-lg); }
  .footer-bottom { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 680px) {
  .footer-seal-row { padding: 52px 24px 40px; }
  .footer-seal-wrap { padding: 0 28px; }
  .footer-statement { padding: 0 24px var(--sp-md); }
  .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .mc-cursor { display: none; }
}

/* ============================================================
   THE HOUSE PAGE — FULL EDITORIAL LAYOUT
   ============================================================ */

/* Hero — full viewport, 2-column split */
.th-hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: 100vh;
}
.th-hero-visual { position: relative; overflow: hidden; }
.th-hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.th-hero-text {
  background: var(--obsidian);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 72px) 72px 80px;
}
.th-hero-est {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--soft-gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 18px;
}
.th-hero-est::before, .th-hero-est::after {
  content: ''; flex: 0 0 32px; height: 1px;
  background: rgba(201,169,110,0.35);
}
.th-hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 124px);
  font-weight: 300; letter-spacing: 0.02em; line-height: 0.88;
  color: var(--white); margin-bottom: 44px;
}
.th-hero-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(15px, 1.55vw, 20px); font-weight: 300;
  color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 360px;
}

/* Section split (house / women) */
.th-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 62vh;
}
.th-split.th-split--reverse { direction: rtl; }
.th-split.th-split--reverse > * { direction: ltr; }

.th-split-visual { position: relative; overflow: hidden; }
.th-split-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.th-split-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  background: var(--moon-ivory);
}
.th-split-copy--pearl { background: var(--pearl); }

.th-split-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 300; letter-spacing: 0.01em; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 30px;
}
.th-split-body {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(14px, 1.5vw, 18px); font-weight: 300;
  color: var(--text-secondary); line-height: 1.9;
  margin-bottom: 18px;
}
.th-split-body:last-child { margin-bottom: 0; }

/* Collections triptych */
.th-triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 82vh; min-height: 520px;
}
.th-triptych-panel {
  position: relative; overflow: hidden; cursor: pointer;
}
.th-triptych-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.th-triptych-panel:hover img { transform: scale(1.05); }

.th-triptych-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.7) 100%);
}
.th-triptych-center-veil {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
}

.th-triptych-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px; text-align: center; z-index: 2;
}
.th-triptych-name {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(249,245,239,0.88); margin-bottom: 7px;
}
.th-triptych-world {
  font-family: var(--font-body);
  font-size: 8.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--soft-gold);
}

.th-triptych-center-body {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 32px 100px;
}
.th-triptych-eyebrow {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--soft-gold); margin-bottom: 22px;
}
.th-triptych-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.th-triptych-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(13px, 1.25vw, 15px); font-weight: 300;
  color: rgba(255,255,255,0.58); max-width: 260px; line-height: 1.75;
}

/* Women portraits */
.th-women {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 62vh;
}
.th-women-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  background: var(--pearl);
}
.th-women-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: start;
}
.th-portrait {
  overflow: hidden;
}
.th-portrait img {
  width: 100%; height: auto;
  display: block;
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.th-portrait:hover img { transform: scale(1.04); }

/* Closing */
.th-closing {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 52vh;
}
.th-closing-visual { position: relative; overflow: hidden; }
.th-closing-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.th-closing-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  background: var(--moon-ivory);
}
.th-closing-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300; color: var(--text-primary);
  line-height: 1.2; margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.th-closing-body {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.45vw, 17px); font-weight: 300;
  color: var(--text-secondary); line-height: 1.85;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 900px) {
  .th-hero { grid-template-columns: 1fr; }
  .th-hero-visual { height: 55vh; min-height: 320px; }
  .th-hero-text { padding: 60px 40px; }
  .th-split, .th-split.th-split--reverse { grid-template-columns: 1fr; direction: ltr; }
  .th-split-visual { height: 45vh; }
  .th-split-copy { padding: 56px 40px; }
  .th-triptych { grid-template-columns: 1fr; height: auto; }
  .th-triptych-panel { height: 65vw; min-height: 280px; }
  .th-women { grid-template-columns: 1fr; }
  .th-women-copy { padding: 56px 40px; }
  .th-women-portraits { height: auto; }
  .th-closing { grid-template-columns: 1fr; }
  .th-closing-visual { height: 44vh; }
  .th-closing-text { padding: 56px 40px; }
}
@media (max-width: 680px) {
  .th-hero-text { padding: 48px 24px; }
  .th-split-copy, .th-women-copy, .th-closing-text { padding: 48px 24px; }
}
