/* =====================================================
   SK LUXURY — PREMIUM STYLESHEET
   ===================================================== */

:root {
  --black:    #080808;
  --dark:     #111111;
  --dark-2:   #191919;
  --dark-3:   #222222;
  --white:    #ffffff;
  --w80:      rgba(255,255,255,0.80);
  --w60:      rgba(255,255,255,0.60);
  --w40:      rgba(255,255,255,0.40);
  --w20:      rgba(255,255,255,0.20);
  --w10:      rgba(255,255,255,0.10);
  --w05:      rgba(255,255,255,0.05);
  --gold:     #c9a96e;
  --gold-l:   #dfc28a;
  --gold-d:   #a07840;
  --gold-20:  rgba(201,169,110,0.20);
  --gold-10:  rgba(201,169,110,0.10);
  --gold-05:  rgba(201,169,110,0.05);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Montserrat', Arial, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:        0.4s var(--ease);
  --t-slow:   0.8s var(--ease);
  --nav-h:    80px;
  --r:        2px;
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); color: inherit; }
input, textarea, select { font-family: var(--sans); }
::selection { background: var(--gold-20); color: var(--gold-l); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 0; }

/* ─── PAGE LOADER ────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.loader__logo { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.loader__svg { width: 120px; height: 60px; overflow: visible; }
.loader__text-sk {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: strokeDraw 1.2s 0.15s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }
.loader__luxury {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: var(--w40);
  opacity: 0;
  animation: loaderFade 0.6s 0.8s ease forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
.loader__bar {
  width: 160px;
  height: 1px;
  background: var(--w10);
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: barFill 1.1s 0.1s ease forwards;
}
@keyframes barFill { to { width: 100%; } }

/* ─── CUSTOM CURSOR ──────────────────────────── */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 9997; }
.cursor__dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: -3px 0 0 -3px;
  will-change: transform;
  transition: opacity 0.2s;
}
.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 50%;
  margin: -18px 0 0 -18px;
  will-change: transform;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), border-color 0.3s;
}
.cursor__ring.expanded {
  width: 58px; height: 58px;
  margin: -29px 0 0 -29px;
  border-color: var(--gold);
}

/* ─── GRAIN ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainMove 0.5s steps(2) infinite;
}
@keyframes grainMove {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-5%,-10%); }
  50%  { transform: translate(-15%, 5%); }
  75%  { transform: translate(7%, -15%); }
  100% { transform: translate(-10%, 10%); }
}

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--w10);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: baseline; gap: 5px; }
.nav__logo-sk {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav__logo-luxury {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--w60);
  text-transform: uppercase;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w60);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--t);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__lang {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w60);
  padding: 5px 10px;
  border: 1px solid var(--w20);
  transition: all var(--t);
}
.nav__lang:hover { color: var(--gold); border-color: var(--gold); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all var(--t); }

/* ─── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 48px;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 1.4rem;
  color: var(--w40);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t);
}
.mobile-menu__close:hover { color: var(--gold); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 48px; }
.mobile-menu__link {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  color: var(--w60);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color var(--t), transform var(--t);
}
.mobile-menu__link:hover { color: var(--white); transform: translateX(8px); }
.mobile-menu__lang { margin-top: auto; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn span, .btn { position: relative; z-index: 1; }

.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold::before { background: var(--white); }
.btn--gold:hover { color: var(--black); }

.btn--ghost { border: 1px solid var(--w40); color: var(--white); }
.btn--ghost::before { background: var(--gold); }
.btn--ghost:hover { color: var(--black); border-color: var(--gold); }

.btn--outline { border: 1px solid var(--gold-d); color: var(--gold); }
.btn--outline::before { background: var(--gold); }
.btn--outline:hover { color: var(--black); }

.btn--sm { padding: 10px 22px; font-size: 0.57rem; }
.btn--full { width: 100%; text-align: center; }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 130px 0; }
.section__header { text-align: center; margin-bottom: 72px; }
.section__label {
  display: block;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section__sub {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--w60);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.25) 55%, transparent 100%),
    linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9vw, 9.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__line {
  display: block;
  overflow: hidden;
  will-change: transform, opacity;
}
.hero__subtitle {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--w60);
  letter-spacing: 0.12em;
  max-width: 440px;
  margin-bottom: 52px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFade 1s 1.4s var(--ease) forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold) 60%, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
/* heroFade removed — hero reveal is handled by JS initHeroReveal() */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ─── STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--dark);
  border-top: 1px solid var(--w10);
  border-bottom: 1px solid var(--w10);
  padding: 64px 0;
}
.stats-band__grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__suffix {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 300;
}
.stat__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--w40);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--w10);
}

/* ─── MAISON ─────────────────────────────────── */
.maison { background: var(--black); }
.maison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.maison__left { padding-top: 8px; }
.maison__left .section__title { text-align: left; margin-top: 10px; }
.maison__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}
.maison__body {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--w80);
}
.maison__signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.maison__sig-line { width: 48px; height: 1px; background: var(--gold); flex-shrink: 0; }
.maison__sig-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.maison__sig-role {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.maison__right { display: flex; flex-direction: column; gap: 20px; }
.maison__card {
  padding: 40px 36px;
  border: 1px solid var(--w10);
  border-left: 2px solid var(--gold);
  background: var(--w05);
  transition: background var(--t), border-left-color var(--t), transform var(--t);
}
.maison__card:hover {
  background: var(--gold-05);
  border-left-color: var(--gold-l);
  transform: translateX(4px);
}
.maison__card-badge {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.maison__card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.maison__card-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.maison__card-text {
  font-size: 0.83rem;
  color: var(--w60);
  line-height: 1.75;
  margin-bottom: 16px;
}
.maison__card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.maison__card-list li {
  font-size: 0.77rem;
  color: var(--w40);
  padding-left: 16px;
  position: relative;
}
.maison__card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
}

/* ─── SAVOIR-FAIRE ───────────────────────────── */
.savoir-faire { background: var(--dark); }
.savoir-faire .section__header .section__title { text-align: center; }
.sf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--w10);
}
.sf__item {
  background: var(--dark);
  overflow: hidden;
  position: relative;
  transition: background var(--t);
}
.sf__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.sf__item:hover { background: rgba(201,169,110,0.04); }
.sf__item:hover::after { transform: scaleX(1); }
.sf__img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.sf__img-inner {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(201,169,110,0.03) 22px, rgba(201,169,110,0.03) 23px);
}
.sf__img--1 { background: linear-gradient(150deg,#100c04,#2e1e0a,#1a1005,#0e0a04); }
.sf__img--2 { background: linear-gradient(150deg,#06080e,#0e1830,#0a1220,#060810); }
.sf__img--3 { background: linear-gradient(150deg,#0a0c06,#181e0a,#101408,#080a06); }
.sf__img--4 { background: linear-gradient(150deg,#120606,#301010,#1e0808,#0e0606); }
.sf__img--5 { background: linear-gradient(150deg,#060e0a,#0e2818,#081a0e,#060e08); }
.sf__img--6 { background: linear-gradient(150deg,#0e0c06,#221e0a,#181408,#0c0c06); }
.sf__body { padding: 32px 36px 40px; }
.sf__number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--w10);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t);
}
.sf__item:hover .sf__number { color: var(--gold-20); }
.sf__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.sf__desc { font-size: 0.82rem; color: var(--w60); line-height: 1.75; }

/* ─── RÉALISATIONS ───────────────────────────── */
.realisations { background: var(--black); }
.filters { margin-bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.filters__row { display: flex; gap: 8px; flex-wrap: wrap; }
.filters__row--secondary .filter-btn {
  font-size: 0.57rem;
  padding: 7px 16px;
  border-color: var(--w10);
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w60);
  border: 1px solid var(--w20);
  background: transparent;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-05);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: opacity 0.3s ease;
}
.gallery__item.is-hiding { animation: galleryOut 0.3s forwards; }
.gallery__item.is-showing { animation: galleryIn 0.4s forwards; }
@keyframes galleryOut { to { opacity: 0; transform: scale(0.96); } }
@keyframes galleryIn  { from { opacity: 0; transform: scale(0.97) translateY(10px); } to { opacity: 1; transform: none; } }
.gallery__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}
.gallery__bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gallery__item:hover .gallery__bg { transform: scale(1.06); }
.gallery__shine {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 28px, rgba(201,169,110,0.025) 28px, rgba(201,169,110,0.025) 29px);
  pointer-events: none;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__cat {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.gallery__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
}
.gallery__plus {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 200;
  transition: all var(--t);
}
.gallery__item:hover .gallery__plus { background: var(--gold); color: var(--black); }

/* ─── INSPIRATIONS ───────────────────────────── */
.inspirations { background: var(--dark); }
.inspo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.inspo__item--tall { grid-row: 1 / 3; }
.inspo__item--wide { grid-column: 2 / 4; }
.inspo__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.inspo__img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.inspo__item:hover .inspo__img { transform: scale(1.06); }
.inspo__img--1 {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(201,169,110,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.06) 0%, transparent 40%),
    linear-gradient(160deg, #1a1205,#3d2808,#5a3a12,#2a1808,#120d05);
}
.inspo__img--2 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%),
    linear-gradient(150deg,#0a0a0a,#1a1a1a,#0e0e0e,#080808);
}
.inspo__img--3 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(180,80,40,0.12) 0%, transparent 50%),
    linear-gradient(150deg,#100806,#281808,#180f06,#100806);
}
.inspo__img--4 {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(40,180,120,0.08) 0%, transparent 50%),
    linear-gradient(150deg,#050e0a,#0d2218,#081810,#050e08);
}
.inspo__img--5 {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(100,120,200,0.08) 0%, transparent 50%),
    linear-gradient(150deg,#080812,#101230,#0a0c20,#080810);
}
.inspo__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-40deg, transparent, transparent 30px, rgba(201,169,110,0.02) 30px, rgba(201,169,110,0.02) 31px);
}
.inspo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.15) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--t);
}
.inspo__item:hover .inspo__overlay { background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 55%, transparent 80%); }
.inspo__tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.inspo__overlay h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* ─── JOURNAL ────────────────────────────────── */
.journal { background: var(--black); }
.journal__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.article--featured { grid-row: 1 / 3; }
.article {
  background: var(--dark-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t);
}
.article:hover { transform: translateY(-5px); }
.article__img {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.article--featured .article__img { height: 360px; }
.article__img { height: 200px; }
.article__img > div {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.article:hover .article__img > div { transform: scale(1.05); }
.article__img--1 > div { background: linear-gradient(155deg,#1a100a,#3d2018,#281508,#180e06); }
.article__img--2 > div { background: linear-gradient(155deg,#060a18,#101830,#080d20,#060810); }
.article__img--3 > div { background: linear-gradient(155deg,#100a06,#281808,#180f05,#100805); }
.article__img--4 > div { background: linear-gradient(155deg,#0a1006,#18200e,#10140a,#0a1008); }
.article__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(201,169,110,0.025) 22px, rgba(201,169,110,0.025) 23px);
  pointer-events: none;
}
.article__content {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article__cat {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}
.article__excerpt {
  font-size: 0.82rem;
  color: var(--w60);
  line-height: 1.75;
  margin-bottom: 20px;
}
.article__link {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  transition: letter-spacing var(--t);
}
.article__link:hover { letter-spacing: 0.32em; }

/* ─── CONTACT ────────────────────────────────── */
.contact { background: var(--dark); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
.contact__left .section__title { text-align: left; }
.contact__sub {
  font-size: 0.85rem;
  color: var(--w60);
  margin-top: 16px;
  margin-bottom: 48px;
}
.contact__details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contact__detail { display: flex; flex-direction: column; gap: 4px; }
.contact__detail-label {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__detail-val { font-size: 0.88rem; color: var(--w80); }
.contact__social { display: flex; align-items: center; gap: 14px; }
.contact__social-link {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w40);
  transition: color var(--t);
}
.contact__social-link:hover { color: var(--gold); }
.contact__social-sep { color: var(--w20); font-size: 0.7rem; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form__group { position: relative; margin-bottom: 20px; }
.form__input {
  width: 100%;
  padding: 18px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--w20);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form__input:focus { border-bottom-color: var(--gold); }
.form__label {
  position: absolute;
  left: 0; top: 18px;
  font-size: 0.75rem;
  color: var(--w40);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.05em;
}
.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: 0;
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__select option { background: var(--dark-2); color: var(--white); }
.form__textarea { resize: none; line-height: 1.65; }
.form__success {
  display: none;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--gold-20);
}
.form__success.visible { display: block; }
.contact__form .btn--full { margin-top: 8px; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--w10);
  padding: 80px 0 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.footer__logo-sk {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.footer__logo-luxury {
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--w40);
}
.footer__tagline {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--w40);
  margin-bottom: 8px;
}
.footer__ks {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w20);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 0.8rem;
  color: var(--w40);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--w10);
}
.footer__bottom p { font-size: 0.7rem; color: var(--w20); letter-spacing: 0.05em; }

/* ─── LIGHTBOX ───────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.4rem;
  color: var(--w60);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: color var(--t);
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 200;
  color: var(--w40);
  width: 60px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: color var(--t);
}
.lightbox__nav:hover { color: var(--gold); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__content {
  display: grid;
  grid-template-columns: 1fr 360px;
  max-width: 1100px;
  width: calc(100% - 160px);
  max-height: 88vh;
  overflow: hidden;
}
.lightbox__visual {
  height: 75vh;
  max-height: 640px;
  position: relative;
  overflow: hidden;
}
.lightbox__visual-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}
.lightbox__panel {
  background: var(--dark-2);
  border-left: 1px solid var(--w10);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.lightbox__cat {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lightbox__title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.lightbox__desc {
  font-size: 0.84rem;
  color: var(--w60);
  line-height: 1.85;
  margin-bottom: 28px;
}
.lightbox__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.lightbox__tag {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w40);
  border: 1px solid var(--w10);
  padding: 4px 10px;
}
.lightbox__cta { width: fit-content; }
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--w40);
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays for grid items */
.sf__grid .sf__item:nth-child(1) { transition-delay: 0s; }
.sf__grid .sf__item:nth-child(2) { transition-delay: 0.08s; }
.sf__grid .sf__item:nth-child(3) { transition-delay: 0.16s; }
.sf__grid .sf__item:nth-child(4) { transition-delay: 0.06s; }
.sf__grid .sf__item:nth-child(5) { transition-delay: 0.14s; }
.sf__grid .sf__item:nth-child(6) { transition-delay: 0.22s; }
.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(3) { transition-delay: 0.1s; }
.stat:nth-child(5) { transition-delay: 0.2s; }
.stat:nth-child(7) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1200px) {
  .maison__grid { gap: 60px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .inspo__grid { grid-template-rows: 240px 240px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .maison__grid { grid-template-columns: 1fr; gap: 48px; }
  .sf__grid { grid-template-columns: repeat(2, 1fr); }
  .journal__grid { grid-template-columns: 1fr; }
  .article--featured { grid-row: auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .lightbox__content { width: calc(100% - 100px); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 90px 0; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links, .nav__actions .btn--outline { display: none; }
  .nav__burger { display: flex; }
  .sf__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .inspo__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .inspo__item--tall { grid-row: auto; grid-column: 1 / 3; height: 280px; }
  .inspo__item--wide { grid-column: 1 / 3; height: 200px; }
  .inspo__item { height: 200px; }
  .journal__grid { grid-template-columns: 1fr; }
  .article--featured { grid-row: auto; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lightbox__content { grid-template-columns: 1fr; width: 95vw; }
  .lightbox__panel { display: none; }
  .lightbox__visual { height: 70vw; max-height: none; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .stats-band__grid { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__title { font-size: clamp(3rem, 12vw, 5.5rem); }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .filter-btn { padding: 7px 14px; font-size: 0.55rem; }
  .footer__nav { grid-template-columns: 1fr; }
  .mobile-menu { padding: 60px 28px; }
}
