/* ═══════════════════════════════════════════════════
   SKINDIA · ULTRA-PREMIUM B2B
   Font: Sansumi (UltraLight/Regular/DemiBold/Bold)
   Palette: Charcoal · Warm Ivory · Rich Cognac
═══════════════════════════════════════════════════ */



/* ─────────────────── TOKENS ─────────────────── */
:root {
  --cognac:       #6b3a1f;
  --cognac-deep:  #4a2610;
  --cognac-mid:   #9a6040;
  --cognac-pale:  #f4ede5;
  --cognac-ultra: #faf6f1;

  --ink:          #141210;
  --ink-70:       rgba(20,18,16,0.70);
  --ink-40:       rgba(20,18,16,0.40);
  --ink-15:       rgba(20,18,16,0.15);
  --ink-06:       rgba(20,18,16,0.06);

  --ivory:        #fdfaf6;
  --white:        #ffffff;
  --off:          #f6f1eb;
  --charcoal:     #18120d;
  --charcoal-2:   #241a12;

  --font:         'Sansumi', Georgia, serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────── RESET ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─────────────────── GRAIN OVERLAY ─────────────────── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%; height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
  animation: grainShift 0.15s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,-2%); }
  50%  { transform: translate(2%,2%); }
  75%  { transform: translate(-1%,1%); }
  100% { transform: translate(1%,-1%); }
}

/* ─────────────────── LAYOUT HELPERS ─────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ─────────────────── SCROLL REVEAL ─────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-reveal.visible { opacity: 1; transform: none; }

/* ─────────────────── TYPOGRAPHY ─────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 14px;
}
.eyebrow.light { color: rgba(255,255,255,0.5); }

.sec__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ─────────────────── GLOBAL BUTTONS ─────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cognac);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background 0.28s var(--ease), transform 0.18s var(--ease-spring);
}
.btn-primary:hover { background: var(--cognac-deep); transform: scale(1.025); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  transition: border-color 0.28s, background 0.28s, transform 0.18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); transform: scale(1.025); color: var(--white); }

/* ═══════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════ */
.hdr { position: fixed; inset: 0 0 auto 0; z-index: 900; }

.nav {
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid var(--ink-06);
  transition: background 0.35s var(--ease), box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(253,250,246,0.97);
  box-shadow: 0 1px 24px rgba(20,18,16,0.07);
}

.nav__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav__logo span {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--cognac);
}

/* Nav menu */
.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  padding: 9px 16px;
  border-radius: 2px;
  position: relative;
  transition: color 0.22s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 16px; right: 16px;
  height: 1px;
  background: var(--cognac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--cognac); }
.nav__link:hover::after { transform: scaleX(1); }

/* Nav right */
.nav__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cognac);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.18s var(--ease-spring);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--cognac-deep); transform: scale(1.03); color: var(--white); }
.nav__cta i { font-size: 14px; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--ink-15);
  border-radius: 2px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}
.nav__burger:hover { border-color: var(--cognac); }
.nav__burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.drawer {
  background: var(--ivory);
  border-bottom: 1px solid var(--ink-06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.drawer.open { max-height: 500px; }
.drawer__body { padding: 28px 24px 36px; }
.drawer__menu { list-style: none; margin-bottom: 28px; }
.drawer__link {
  display: block;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-06);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__link:hover { color: var(--cognac); padding-left: 8px; }
.drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cognac);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 2px;
}

@media (max-width: 1060px) { .nav__menu { display: none; } .nav__burger { display: flex; } }
@media (max-width: 600px) {
  .nav__wrap { padding: 0 20px; height: 60px; }
  .nav__logo span { font-size: 15px; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 14px; }
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  /* height: 100svh; */
  min-height: 680px;
  /* max-height: 1080px; */
  /* margin-top: 68px; */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Slides */
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }

.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,6,2,0.88) 0%,
    rgba(10,6,2,0.38) 44%,
    rgba(10,6,2,0.10) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px 88px;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(46px, 8.5vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 200;
  color: rgba(255,255,255,0.75);
}

.hero__sub {
  font-family: var(--font);
  font-weight: 200;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.58);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Progress dots */
.hero__progress {
  position: absolute;
  right: 52px; bottom: 48px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__progress span {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.4s var(--ease-out);
  border-radius: 1px;
}
.hero__progress span.is-active {
  background: var(--white);
  width: 52px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  left: 52px; bottom: 44px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: lineDown 2.2s ease-in-out infinite;
}
@keyframes lineDown { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }
.hero__scroll-hint span {
  font-family: var(--font);
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 768px) {
  .hero { margin-top: 60px; min-height: 580px; }
  .hero__content { padding: 0 20px 72px; }
  .hero__scroll-hint { display: none; }
  .hero__progress { right: 24px; bottom: 28px; }
}

/* ═══════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--cognac);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 28px;
}
.marquee-track .dot {
  color: rgba(255,255,255,0.35);
  padding: 0;
  font-size: 16px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════════════ */
.sec { padding: 110px 0; }

.sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════ */
.collection { background: var(--ivory); overflow: hidden; }
.collection--alt { background: var(--off); }

.swiper-outer { overflow: hidden; }
.sw1, .sw2 { overflow: visible; padding-right: 10vw; }

/* Slider nav buttons */
.slider-nav { display: flex; gap: 10px; }
.snav-btn {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ink-15);
  background: var(--white);
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.28s var(--ease-spring);
}
.snav-btn:hover {
  background: var(--cognac);
  border-color: var(--cognac);
  color: var(--white);
  transform: scale(1.08);
}

/* Product card */
.pcard {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ink-06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(20,18,16,0.12);
}

.collection--alt .pcard { background: var(--ivory); }

.pcard__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pcard:hover .pcard__img img { transform: scale(1.08); }

.pcard__hover {
  position: absolute; inset: 0;
  background: rgba(36,26,18,0.58);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.pcard:hover .pcard__hover { opacity: 1; }

.pcard__quote {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 12px 28px;
  border-radius: 2px;
  transform: translateY(12px);
  transition: transform 0.35s var(--ease-spring);
}
.pcard:hover .pcard__quote { transform: translateY(0); }
.pcard__quote:hover { background: var(--cognac-pale); }

.pcard__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cognac);
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 1px;
}

.pcard__body {
  padding: 20px 22px 22px;
}
.pcard__body h4 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 5px;
}
.pcard__body p {
  font-family: var(--font);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-40);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SPLIT SHOWCASE
═══════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 580px 580px;
}

.split__cell {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 60px 56px;
  overflow: hidden;
}
.split__cell::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(107,58,31,0);
  transition: background 0.5s var(--ease);
}
.split__cell:hover::before { background: rgba(107,58,31,0.08); }

.split__scrim {
  position: absolute; inset: 0;
}
.light-scrim {
  background: linear-gradient(to top, rgba(253,250,246,0.88) 0%, rgba(253,250,246,0.18) 55%, transparent 100%);
}
.dark-scrim {
  background: linear-gradient(to top, rgba(10,6,2,0.88) 0%, rgba(10,6,2,0.28) 55%, transparent 100%);
}

.split__content { position: relative; z-index: 2; }

.split__eye {
  display: block;
  font-family: var(--font);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 12px;
}
.split__eye.light { color: rgba(255,255,255,0.50); }

.split__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.split__title.light { color: var(--white); }

.split__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.split-btn-dark, .split-btn-outline-dark,
.split-btn-white, .split-btn-outline-white {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}
.split-btn-dark        { background: var(--cognac); color: var(--white); }
.split-btn-dark:hover  { background: var(--cognac-deep); color: var(--white); transform: scale(1.03); }
.split-btn-outline-dark{ border: 1px solid var(--cognac); color: var(--cognac); }
.split-btn-outline-dark:hover { background: var(--cognac); color: var(--white); }
.split-btn-white       { background: var(--white); color: var(--ink); }
.split-btn-white:hover { background: var(--cognac-pale); color: var(--cognac); }
.split-btn-outline-white{ border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.split-btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); color: var(--white); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; grid-template-rows: repeat(4, 440px); }
  .split__cell { padding: 36px 28px; }
}

/* ═══════════════════════════════════════════════════
   WHY SKINDIA
═══════════════════════════════════════════════════ */
.why { background: var(--charcoal); }
.why .eyebrow { color: var(--cognac-mid); }
.why .sec__title { color: var(--white); }

.why__head { text-align: center; margin-bottom: 72px; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.why-card {
  padding: 52px 44px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,58,31,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover { background: rgba(255,255,255,0.03); }
.why-card:hover::before { opacity: 1; }

.why-card__num {
  font-family: var(--font);
  font-weight: 200;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  pointer-events: none;
}

.why-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(107,58,31,0.4);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover .why-card__icon {
  background: var(--cognac);
  border-color: var(--cognac);
}
.why-card__icon i { font-size: 20px; color: var(--cognac-mid); transition: color 0.3s; }
.why-card:hover .why-card__icon i { color: var(--white); }

.why-card h4 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}
.why-card p {
  font-family: var(--font);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
}

@media (max-width: 1024px) { .why__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .why__grid { grid-template-columns: 1fr; } .why-card { padding: 36px 28px; } }

/* ═══════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════ */
.stats-band {
  background: var(--cognac);
  padding: 52px 48px;
  overflow-x: auto;
}
.stats-band__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: max-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 60px;
}
.stat strong {
  font-family: var(--font);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.stat strong span {
  font-size: 28px;
  font-weight: 200;
  opacity: 0.7;
}
.stat > span {
  font-family: var(--font);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.stat-div {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stat { padding: 0 32px; }
  .stat strong { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
.gallery { background: var(--ivory); overflow: hidden; }
.gallery__sub {
  font-family: var(--font);
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--ink-40);
  max-width: 520px;
  margin-top: 16px;
}
.gallery__swiper-wrap { margin-top: 52px; overflow: hidden; }
.swGallery { padding: 0 48px 48px; overflow: visible; }
.swGallery .swiper-slide {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.swGallery .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.swGallery .swiper-slide:hover img { transform: scale(1.05); }
.gallery-dots { text-align: center; margin-top: 20px; }
.gallery-dots .swiper-pagination-bullet { background: var(--cognac-mid); opacity: 0.3; width: 6px; height: 6px; }
.gallery-dots .swiper-pagination-bullet-active { background: var(--cognac); opacity: 1; width: 24px; border-radius: 3px; }

@media (max-width: 768px) { .swGallery { padding: 0 20px 32px; } }

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 160px 48px;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.cta-banner__veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,6,2,0.90) 0%, rgba(74,38,16,0.82) 100%);
}
.cta-banner__content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.cta-banner__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 14px;
}
.cta-banner__title em { font-style: italic; font-weight: 200; color: rgba(255,255,255,0.72); }

.cta-banner__sub {
  font-family: var(--font);
  font-weight: 200;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
  margin-bottom: 44px;
  text-transform: uppercase;
}
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) { .cta-banner { padding: 100px 24px; } }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: #100c08; }

.footer__top {
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 64px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.footer__logo img { height: 32px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer__logo span {
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
}
.footer__tagline {
  font-family: var(--font);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.85;
  color: rgba(255,255,255,0.32);
  margin-bottom: 24px;
}
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badges span {
  font-family: var(--font);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 1px;
}

.footer__col h5 {
  font-family: var(--font);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-family: var(--font);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: rgba(255,255,255,0.88); }

.footer__contact { list-style: none; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__contact i { font-size: 13px; color: var(--cognac-mid); margin-top: 2px; flex-shrink: 0; }
.footer__contact a, .footer__contact span {
  font-family: var(--font);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__contact a:hover { color: rgba(255,255,255,0.85); }

.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  transition: all 0.28s var(--ease-spring);
}
.footer__social a:hover { background: var(--cognac); border-color: var(--cognac); color: var(--white); transform: scale(1.1); }

.footer__bottom {
  padding: 28px 0;
}
.footer__bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-family: var(--font);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.22);
}
.footer__legal { display: flex; align-items: center; gap: 14px; }
.footer__legal a {
  font-family: var(--font);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }
.footer__legal span { color: rgba(255,255,255,0.12); }

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; padding: 0 32px; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .footer__bottom-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; }
}
