/* =====================================================================
   KADRI VINCENT — PREMIUM CSS  |  iOS 26 Liquid Glass + Spring Physics
   ===================================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand palette */
  --bordeaux: #4d1b1c;
  --cream: #e3dace;
  --ink: #161f2a;
  --gold: #c9a66b;
  --gold-2: #b89156;
  --stone: #2a3039;
  --beige: #d6c9b6;

  /* iOS 26 — Liquid Glass materials */
  --glass-1: rgba(255, 255, 255, .06);
  --glass-2: rgba(255, 255, 255, .10);
  --glass-3: rgba(255, 255, 255, .16);
  --glass-4: rgba(255, 255, 255, .22);
  --glass-gold: rgba(201, 166, 107, .12);
  --glass-cream: rgba(227, 218, 206, .88);

  /* iOS 26 — Blur levels */
  --blur-sm: blur(10px) saturate(150%);
  --blur-md: blur(24px) saturate(170%);
  --blur-lg: blur(44px) saturate(190%);
  --blur-xl: blur(64px) saturate(210%);

  /* iOS 26 — Spring easings */
  --spring-std: cubic-bezier(0.22, 1, 0.36, 1);
  --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-snappy: cubic-bezier(0.4, 0, 0.2, 1);
  --spring-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* iOS 26 — Multi-layer shadow system */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, .10), 0 0 1px rgba(0, 0, 0, .06);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, .12), 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .16), 0 3px 8px rgba(0, 0, 0, .10), 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, .20), 0 8px 18px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08);
  --shadow-xl: 0 36px 80px rgba(0, 0, 0, .26), 0 16px 32px rgba(0, 0, 0, .16), 0 4px 10px rgba(0, 0, 0, .10);
  --shadow-gold: 0 8px 28px rgba(201, 166, 107, .30), 0 2px 8px rgba(201, 166, 107, .18);
  --shadow-inset: inset 0 0 0 1px rgba(255, 255, 255, .10);

  /* Timing */
  --dur-fast: .18s;
  --dur-std: .35s;
  --dur-slow: .55s;
  --dur-epic: .80s;

  /* Typography scale */
  --fs-body: clamp(15px, 1.5vw, 16px);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: var(--fs-body)
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto
}

a {
  color: inherit
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--ink);
  transition: opacity var(--dur-slow) var(--spring-std), transform var(--dur-slow) var(--spring-std);
}

.loader.is-done {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
}

.loader__ring {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 166, 107, .25);
  display: grid;
  place-items: center;
  position: relative;
  animation: loaderSpin 1.4s linear infinite;
}

.loader__ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(201, 166, 107, .4);
  animation: loaderSpin .9s cubic-bezier(0.5, 0.05, 0.5, 0.95) infinite;
}

.loader__logo {
  animation: loaderPulse 1.4s ease-in-out infinite
}

.loader__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain
}

.loader__label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(201, 166, 107, .8);
  animation: loaderFade 1.4s ease-in-out infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: .7;
    transform: scale(.96)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes loaderFade {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .05s linear;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 24px);
}

/* ===== TYPOGRAPHY ===== */
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin: .25rem 0;
}

.h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: .25rem 0;
}

.ink {
  color: var(--ink)
}

.muted {
  color: rgba(227, 218, 206, .8)
}

.muted-ink {
  color: rgba(22, 31, 42, .78)
}

.small {
  font-size: .875rem
}

.section__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.divider {
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  margin-top: 12px;
}

.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: .78rem 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) var(--spring-std),
    background var(--dur-std) var(--spring-std);
}

/* Shimmer layer */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .18) 60%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn:hover::after {
  transform: translateX(100%)
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 14px 36px rgba(201, 166, 107, .38), 0 4px 10px rgba(201, 166, 107, .20);
}

.btn--gold:active {
  transform: translateY(-1px) scale(.99)
}

.btn--glass {
  background: rgba(255, 255, 255, .14);
  backdrop-filter: var(--blur-sm);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, .20);
  transform: translateY(-3px) scale(1.015);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, .32);
}

.btn--outline {
  background: rgba(227, 218, 206, .18);
  color: var(--cream);
  border: 1px solid rgba(227, 218, 206, .75);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  background: rgba(227, 218, 206, .28);
  border-color: rgba(227, 218, 206, .9);
  transform: translateY(-2px);
}

/* Text link */
.text-link {
  position: relative;
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--dur-fast) ease;
}

.text-link--gold {
  color: var(--gold-2)
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-std) var(--spring-std);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1)
}

/* ===== HEADER — iOS 26 Liquid Glass ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg,
      rgba(227, 218, 206, .92) 0%,
      rgba(227, 218, 206, .80) 100%);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-bottom: 1px solid rgba(22, 31, 42, .07);
  transition:
    transform var(--dur-slow) var(--spring-std),
    background var(--dur-std) ease,
    box-shadow var(--dur-std) ease;
  will-change: transform;
}

.header--scrolled {
  border-bottom-color: rgba(201, 166, 107, .30);
  box-shadow:
    0 8px 32px rgba(22, 31, 42, .10),
    0 2px 8px rgba(22, 31, 42, .06),
    0 0 0 1px rgba(255, 255, 255, .18) inset;
}

.header--menu-open {
  background: rgba(227, 218, 206, .97);
  backdrop-filter: var(--blur-lg);
}

.header--hidden {
  transform: translateY(-100%)
}

.header--reveal {
  transform: translateY(0)
}

.header .container {
  padding-inline: clamp(24px, 4vw, 48px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  position: relative;
}

.logo__glass {
  position: absolute;
  inset: -6px -10px;
  border-radius: 12px;
  background: transparent;
  transition: background var(--dur-std) ease;
  pointer-events: none;
}

.logo:hover .logo__glass {
  background: rgba(201, 166, 107, .08);
}

.logo__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform var(--dur-std) var(--spring-bounce)
}

.logo:hover .logo__img {
  transform: scale(1.04) rotate(-1deg)
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.logo__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: var(--ink);
}

.logo__tag {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  padding: .5rem .9rem .5rem .8rem;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  transition: background var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.nav__toggle:hover {
  background: rgba(201, 166, 107, .08);
  box-shadow: 0 4px 12px rgba(201, 166, 107, .20);
}

.nav__toggle .bars {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
  margin-right: .45rem;
}

.nav__toggle .bars::before,
.nav__toggle .bars::after,
.nav__toggle .bar {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-2);
  border-radius: 2px;
  transition: transform var(--dur-std) var(--spring-std), opacity var(--dur-std) ease;
}

.nav__toggle .bar {
  top: 50%;
  transform: translateY(-50%)
}

.nav__toggle .bars::before {
  top: 0
}

.nav__toggle .bars::after {
  bottom: 0
}

.nav__toggle[aria-expanded="true"] .bars::before {
  transform: translateY(6px) rotate(45deg)
}

.nav__toggle[aria-expanded="true"] .bars::after {
  transform: translateY(-6px) rotate(-45deg)
}

.nav__toggle[aria-expanded="true"] .bar {
  opacity: 0;
  transform: translateY(-50%) scaleX(0)
}

.nav__list {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  position: relative;
  color: rgba(20, 22, 26, .9);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color var(--dur-fast) ease;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-std) var(--spring-std);
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  transform: scaleX(1)
}

.nav__cta .btn {
  margin-left: 2px
}

/* Mobile nav */
@media (max-width: 960px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center
  }

  .nav__list {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 68px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 4px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px) scale(.98);
    background: rgba(227, 218, 206, .97);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid rgba(22, 31, 42, .07);
    border-top: 1px solid rgba(201, 166, 107, .25);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 18px 16px;
    --menu-h: 0px;
    transition:
      max-height .38s var(--spring-std),
      opacity .28s ease,
      transform .38s var(--spring-std);
  }

  .nav__list.show {
    max-height: var(--menu-h);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .nav__list li {
    width: 100%;
    opacity: 0;
    transform: translateY(10px) scale(.97);
    transition: opacity .3s ease, transform .3s var(--spring-bounce);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 166, 107, .18);
  }

  .nav__list li:last-child {
    border-bottom: none
  }

  .nav__list.show li {
    opacity: 1;
    transform: translateY(0) scale(1)
  }

  .nav__list.show li:nth-child(1) {
    transition-delay: .05s
  }

  .nav__list.show li:nth-child(2) {
    transition-delay: .09s
  }

  .nav__list.show li:nth-child(3) {
    transition-delay: .13s
  }

  .nav__list.show li:nth-child(4) {
    transition-delay: .17s
  }

  .nav__list.show li:nth-child(5) {
    transition-delay: .21s
  }

  .nav__list.show li:nth-child(6) {
    transition-delay: .25s
  }

  .nav__list a {
    display: block;
    color: rgba(20, 22, 26, .92);
    font-size: .96rem
  }

  .nav__list a .nav__txt {
    position: relative;
    display: inline-block;
    padding: 2px 0
  }

  .nav__list a .nav__txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-std) var(--spring-std);
  }

  .nav__list a:hover .nav__txt::after {
    transform: scaleX(1)
  }
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(22, 31, 42, .35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto
}

body.nav-open {
  overflow: hidden
}

/* ===== SECTIONS ===== */
.section {
  padding: 88px 0
}

.section--ink {
  background: var(--ink)
}

.section--stone {
  background: var(--stone)
}

.section--cream {
  background: var(--cream);
  padding-bottom: 120px
}

.mt-10 {
  margin-top: 2.5rem
}

/* ===== GRIDS ===== */
.grid {
  display: grid;
  gap: 24px
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid__full {
  grid-column: 1 / -1
}

@media (max-width:1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:680px) {

  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  filter: brightness(.20) contrast(1.05) saturate(1.12);
  transition: opacity 1.8s ease;
  will-change: transform;
}

.hero__video.is-ready {
  opacity: 1
}

.hero__video.is-fallback {
  opacity: 0
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(22, 31, 42, .30), transparent),
    linear-gradient(180deg, rgba(22, 31, 42, .55) 0%, rgba(22, 31, 42, .85) 100%),
    linear-gradient(90deg, rgba(77, 27, 28, .12), rgba(22, 31, 42, .12));
}

/* Ambient orbs */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--1 {
  width: 520px;
  height: 380px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(201, 166, 107, .18), transparent 70%);
  animation-delay: 0s;
}

.orb--2 {
  width: 400px;
  height: 400px;
  bottom: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(77, 27, 28, .22), transparent 70%);
  animation-delay: -4s;
}

.orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(201, 166, 107, .10), transparent 70%);
  animation-delay: -8s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(24px, -18px) scale(1.04)
  }

  66% {
    transform: translate(-16px, 14px) scale(.97)
  }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 1.5rem;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(227, 218, 206, .88);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: .45rem 1rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  opacity: 0;
  animation: heroSeq var(--dur-epic) var(--spring-std) .3s forwards;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 166, 107, .8);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(.8)
  }
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 1.3rem;
  color: #f0ece4;
  text-shadow: 0 2px 32px rgba(22, 31, 42, .5);
  opacity: 0;
  animation: heroSeq var(--dur-epic) var(--spring-std) .52s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(227, 218, 206, .88);
  line-height: 1.7;
  margin: 0 0 2.2rem;
  opacity: 0;
  animation: heroSeq var(--dur-epic) var(--spring-std) .70s forwards;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroSeq var(--dur-epic) var(--spring-std) .86s forwards;
}

/* Trust strip */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  opacity: 0;
  animation: heroSeq var(--dur-epic) var(--spring-std) 1.02s forwards;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(227, 218, 206, .72);
}

.trust__sep {
  color: rgba(201, 166, 107, .5)
}

@keyframes heroSeq {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroSeq var(--dur-slow) ease 1.4s both;
}

.scroll__mouse {
  display: block;
  width: 22px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid rgba(227, 218, 206, .45);
  position: relative;
}

.scroll__dot {
  display: block;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1
  }

  80% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0
  }
}

/* ===== SERVICES CAROUSEL ===== */
.svc {
  position: relative;
  margin-top: 0
}

.svc-viewport {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-lg)
}

.svc-viewport--masked {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 1%, black 99%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 1%, black 99%, transparent 100%);
}

.svc-track {
  display: flex;
  gap: 18px;
  transition: transform .65s var(--spring-std);
  will-change: transform;
}

.svc-slide {
  position: relative;
  min-width: 100%;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--stone);
}

.svc-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  filter: saturate(105%) contrast(103%) brightness(.88);
  transform: scale(1) translateZ(0);
  transition: transform 10s ease, filter .7s ease;
  will-change: transform;
}

.svc-slide.is-active .svc-bg {
  transform: scale(1.04)
}

/* Glass overlay card */
.svc-glass {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  background: rgba(22, 31, 42, .45);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transform: translateY(4px);
  transition: transform var(--dur-std) var(--spring-bounce);
}

.svc-slide.is-active .svc-glass {
  transform: translateY(0)
}

.svc-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(201, 166, 107, .30), rgba(184, 148, 82, .18));
  border: 1px solid rgba(201, 166, 107, .45);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(22, 31, 42, .18), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.svc-badge__icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.svc-meta .h3 {
  color: #f0ece4;
  text-shadow: 0 1px 4px rgba(22, 31, 42, .3)
}

.svc-meta .muted-ink {
  color: rgba(240, 236, 228, .75)
}

.svc-meta .text-link--gold {
  color: var(--gold)
}

/* Arrows */
.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  z-index: 5;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(201, 166, 107, .55);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    background var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.svc-arrow--prev {
  left: -22px
}

.svc-arrow--next {
  right: -22px
}

.svc-arrow:hover {
  background: rgba(201, 166, 107, .18);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 166, 107, .35);
  transform: translateY(-50%) scale(1.08);
}

.svc-arrow:active {
  transform: translateY(-50%) scale(.96)
}

.svc-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

.svc-progress {
  margin-top: 14px;
  height: 2px;
  background: rgba(22, 31, 42, .15);
  border-radius: 999px;
  overflow: hidden;
}

.svc-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
}

#services .h2 {
  color: var(--ink)
}

#services .section__eyebrow {
  color: var(--gold-2)
}

/* ===== PRESTIGE — Feature cards ===== */
.prestige .section__eyebrow {
  color: rgba(201, 166, 107, .9)
}

.feature--lux {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) var(--spring-std),
    border-color var(--dur-std) ease;
}

/* Specular highlight (iOS glass) */
.feature--lux::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
}

.feature--lux::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), transparent);
  pointer-events: none;
}

.feature--lux:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 166, 107, .22);
  border-color: rgba(201, 166, 107, .30);
}

.feature__icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 166, 107, .50);
  background: linear-gradient(145deg, rgba(201, 166, 107, .22), rgba(184, 148, 82, .10));
  box-shadow:
    0 4px 14px rgba(0, 0, 0, .14),
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  margin-bottom: 14px;
  transition: transform var(--dur-std) var(--spring-bounce), box-shadow var(--dur-std) ease;
}

.feature--lux:hover .feature__icon-ring {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 166, 107, .25), inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.feature__icon-svg {
  width: 22px;
  height: 22px;
  color: var(--gold-2)
}

.feature--lux .h4 {
  color: #e8dfd1;
  margin-bottom: .4rem
}

.feature--lux .muted {
  color: rgba(227, 218, 206, .75);
  line-height: 1.6
}

/* ===== BRAND BELT ===== */
.brandbelt {
  background: linear-gradient(180deg, var(--stone) 0%, rgba(22, 31, 42, .95) 100%);
  padding-top: 48px;
  padding-bottom: 48px;
}

.brandbelt .ink {
  color: var(--cream)
}

.brandbelt__viewport {
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.brandbelt__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  will-change: transform;
  --cycle: 1000px;
  --speed: 60s;
  animation: brandbelt-scroll var(--speed) linear infinite;
}

.brandbelt__item {
  flex: 0 0 auto
}

.brandbelt__logo {
  height: 52px;
  width: auto;
  opacity: .7;
  filter: grayscale(1) contrast(1.05);
  transition: opacity var(--dur-std) ease, filter var(--dur-std) ease, transform var(--dur-std) var(--spring-bounce);
}

.brandbelt__item:hover .brandbelt__logo {
  opacity: 1;
  transform: scale(1.06) translateY(-2px);
}

@keyframes brandbelt-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-1 * var(--cycle)))
  }
}

@media (prefers-reduced-motion: reduce) {
  .brandbelt__track {
    animation: none
  }
}

@media (max-width: 768px) {
  .brandbelt__track {
    gap: 44px
  }

  .brandbelt__logo {
    height: 32px
  }
}

/* ===== RÉALISATIONS — Carousel ===== */

/* Filtres catégories */
.gfilters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gfilter {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 107, .30);
  background: transparent;
  color: var(--cream);
  opacity: .55;
  font-family: inherit;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-std) var(--spring-std);
}

.gfilter:hover {
  opacity: .85;
  border-color: rgba(201, 166, 107, .55)
}

.gfilter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  opacity: 1;
  font-weight: 600;
}

/* Carousel wrapper */
.gallery-wrap {
  position: relative;
  margin: 0 -8px;
}

/* Track scrollable */
.gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 8px 16px;
  /* masque la scrollbar native */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar {
  display: none
}

/* Cartes */
.gcard {
  flex: 0 0 clamp(260px, 30vw, 360px);
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  margin: 0;
  background: var(--stone);
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) var(--spring-std);
}

.gcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--spring-std), filter .5s ease;
  filter: brightness(.82) contrast(1.05);
}

.gcard figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px;
  background: linear-gradient(0deg, rgba(22, 31, 42, .92) 0%, rgba(22, 31, 42, .45) 55%, transparent 100%);
  transition: opacity var(--dur-std) ease;
}

.gcard:hover,
.gcard:focus-visible {
  box-shadow: var(--shadow-xl);
  outline: none;
}

.gcard:hover img,
.gcard:focus-visible img {
  transform: scale(1.06);
  filter: brightness(.95) contrast(1.07);
}

.gcard.is-hidden {
  display: none
}

.gcard__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

/* Flèches */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-std) var(--spring-bounce), background var(--dur-fast) ease, opacity var(--dur-fast) ease;
}

.gallery__arrow--prev {
  left: -16px
}

.gallery__arrow--next {
  right: -16px
}

.gallery__arrow:hover:not(:disabled) {
  background: rgba(201, 166, 107, .25);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.gallery__arrow:disabled {
  opacity: .25;
  cursor: default
}

/* Barre de progression */
.gallery__progress {
  height: 2px;
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
  margin-top: 20px;
  overflow: hidden;
}

.gallery__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  transition: width .15s ease;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-std) ease;
}

.lb.is-open {
  opacity: 1;
  pointer-events: auto
}

.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, .92);
  backdrop-filter: var(--blur-xl);
  -webkit-backdrop-filter: var(--blur-xl);
}

.lb__card {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(.9) translateY(16px);
  transition: transform var(--dur-slow) var(--spring-bounce);
}

.lb.is-open .lb__card {
  transform: scale(1) translateY(0)
}

.lb__img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 20px 20px 0 0
}

.lb__cap {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: var(--blur-sm);
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.lb__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream)
}

.lb__meta {
  font-size: .78rem;
  color: var(--gold);
  margin-top: 4px
}

.lb__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(255, 255, 255, .20);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--spring-bounce), background var(--dur-fast) ease;
}

.lb__close:hover {
  transform: scale(1.08) rotate(90deg);
  background: rgba(255, 255, 255, .20)
}

.lb__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-std) var(--spring-bounce), background var(--dur-fast) ease;
}

.lb__nav--prev {
  left: 20px
}

.lb__nav--next {
  right: 20px
}

.lb__nav:hover {
  background: rgba(255, 255, 255, .20);
  transform: translateY(-50%) scale(1.08)
}

/* ===== AVIS ===== */
.avis__stars {
  display: flex;
  align-items: center;
  gap: 5px
}

.avis__star {
  width: 18px;
  height: 18px;
  color: var(--gold)
}

.avis__score {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: 8px;
}

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

@media (max-width:900px) {
  .avis-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .avis-grid {
    grid-template-columns: 1fr
  }
}

.avis-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition: transform var(--dur-std) var(--spring-bounce), box-shadow var(--dur-std) ease;
}

.avis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.avis-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 166, 107, .18);
}

.avis-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px
}

.avis-card .avis__star {
  width: 15px;
  height: 15px
}

.avis-card__text {
  font-size: .93rem;
  line-height: 1.7;
  color: rgba(227, 218, 206, .85);
  margin: 0 0 18px;
  font-style: italic;
}

.avis-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.avis-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 700;
  font-size: .95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.avis-card__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--cream)
}

.avis-card__location {
  font-size: .75rem;
  color: var(--gold);
  margin-top: 2px
}

/* ===== INSIGHTS — Metrics ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

@media (max-width:900px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:480px) {
  .metrics {
    grid-template-columns: 1fr
  }
}

.metric {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition: transform var(--dur-std) var(--spring-bounce), box-shadow var(--dur-std) ease;
}

.metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 107, .35), transparent);
}

.metric:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 166, 107, .20);
}

.metric__ring {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.metric__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.metric__unit {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-2)
}

.metric__label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--cream);
}

.metric__hint {
  font-size: .8rem;
  margin: 0;
  color: rgba(227, 218, 206, .65)
}

/* FAQ */
.faq {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq__item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-std) ease, border-color var(--dur-std) ease;
}

.faq__item[open] {
  border-color: rgba(201, 166, 107, .25);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 166, 107, .12);
}

.faq__sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--cream);
  gap: 12px;
  transition: background var(--dur-fast) ease;
}

.faq__sum::-webkit-details-marker {
  display: none
}

.faq__sum:hover {
  background: rgba(255, 255, 255, .04)
}

.faq__chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--dur-std) var(--spring-bounce);
}

.faq__item[open] .faq__chev {
  transform: rotate(180deg)
}

.faq__content {
  padding: 0 22px 18px;
  color: rgba(227, 218, 206, .78);
  line-height: 1.7;
  font-size: .95rem;
}

/* ===== CONTACT ===== */
.contact-lux {
  background: var(--stone)
}

.contact-lux__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 0;
}

@media (max-width:900px) {
  .contact-lux__grid {
    grid-template-columns: 1fr
  }
}

.contact-lux__info,
.contact-lux__form {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg), var(--shadow-inset);
  position: relative;
  overflow: hidden;
}

.contact-lux__info::before,
.contact-lux__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.contact-lux__info .section__eyebrow {
  color: var(--gold)
}

.contact-lux__info .h2 {
  color: var(--cream)
}

.contact-lux__info .divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.contact-lux__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px
}

.contact-lux__item {
  display: flex;
  align-items: center;
  gap: 12px
}

.contact__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(201, 166, 107, .22), rgba(184, 148, 82, .12));
  border: 1px solid rgba(201, 166, 107, .38);
  display: grid;
  place-items: center;
  transition: transform var(--dur-fast) var(--spring-bounce);
}

.contact-lux__item:hover .contact__icon-wrap {
  transform: scale(1.08) rotate(-3deg)
}

.contact__icon {
  width: 17px;
  height: 17px;
  color: var(--gold-2)
}

.contact-lux__cta {
  margin-top: 20px
}

/* Form */
.form__header {
  margin-bottom: 20px
}

.form__header .h3 {
  color: var(--cream)
}

.contact-lux__form label {
  display: grid;
  gap: 7px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(227, 218, 206, .85);
}

.contact-lux__form input,
.contact-lux__form select,
.contact-lux__form textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: var(--cream);
  padding: 11px 14px;
  outline: none;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  transition:
    border-color var(--dur-std) ease,
    box-shadow var(--dur-std) ease,
    background var(--dur-std) ease,
    transform var(--dur-std) var(--spring-bounce);
}

.contact-lux__form input:focus,
.contact-lux__form select:focus,
.contact-lux__form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, .18), var(--shadow-sm);
  transform: scale(1.005);
}

.contact-lux__form select option {
  background: var(--stone);
  color: var(--cream)
}

.form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.form__foot .note {
  font-size: .75rem;
  color: rgba(227, 218, 206, .55)
}

.form__feedback {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .9rem;
  line-height: 1.5;
  animation: formSlideUp .4s var(--spring-bounce) forwards;
}

.form__feedback--ok {
  background: rgba(107, 201, 138, 0.15);
  border: 1px solid rgba(107, 201, 138, 0.3);
  color: #6bc98a;
}

.form__feedback--err {
  background: rgba(201, 107, 107, 0.15);
  border: 1px solid rgba(201, 107, 107, 0.3);
  color: #c96b6b;
}

@keyframes formSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Map */
.map-card {
  margin-top: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-card__inner {
  position: relative;
  aspect-ratio: 16 / 5
}

.map-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  opacity: 0;
  transition: opacity .6s ease;
}

.map-card__iframe.is-loaded {
  opacity: 1
}

/* ===== FOOTER ===== */
.footer--lux {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201, 166, 107, .07), transparent 60%),
    radial-gradient(1200px 700px at 90% 120%, rgba(77, 27, 28, .07), transparent 60%),
    var(--ink);
  padding-top: 0;
  color: var(--cream);
}

.footer__halo {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), transparent);
  background-size: 200% 100%;
  animation: halo-move 10s linear infinite;
  opacity: .65;
}

@keyframes halo-move {
  0% {
    background-position: 0% 0
  }

  100% {
    background-position: 200% 0
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap: 28px;
  padding: 40px 0 20px;
}

@media (max-width:900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:560px) {
  .footer__grid {
    grid-template-columns: 1fr
  }
}

.logo--foot .logo__img {
  width: 38px;
  height: 38px
}

.logo--foot .logo__title {
  color: #e8dfd1;
  font-size: 1rem
}

.foot__title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.foot__list,
.foot__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.foot-link {
  position: relative;
  text-decoration: none;
  color: rgba(227, 218, 206, .85);
  font-weight: 500;
  transition: color var(--dur-fast) ease;
}

.foot-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-std) var(--spring-std);
}

.foot-link:hover::after {
  transform: scaleX(1)
}

.foot-link:hover {
  color: var(--cream)
}

.foot__item {
  display: flex;
  align-items: center;
  gap: 10px
}

.foot__icon {
  width: 17px;
  height: 17px;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: color var(--dur-fast) ease, transform var(--dur-std) var(--spring-bounce);
}

.foot__item:hover .foot__icon {
  color: var(--gold);
  transform: scale(1.12)
}

.foot__social {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.soc {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 166, 107, .45);
  color: var(--gold-2);
  box-shadow: var(--shadow-xs), var(--shadow-inset);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) ease,
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.soc:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, .20);
  background: rgba(201, 166, 107, .12);
  border-color: rgba(201, 166, 107, .7);
  color: var(--gold);
}

.foot__badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(227, 218, 206, .85);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 107, .30);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow-xs);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 10px rgba(201, 166, 107, .65);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 18px 0 28px;
  text-align: center;
}

/* ===== SCROLL-TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 107, .50);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, .82), rgba(255, 255, 255, .60) 60%, rgba(255, 255, 255, .30)),
    linear-gradient(145deg, rgba(201, 166, 107, .18), rgba(184, 148, 82, .10));
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.88);
  transition:
    opacity .45s var(--spring-std),
    transform .45s var(--spring-bounce),
    box-shadow .3s ease;
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: btnBreath 2.8s ease-in-out infinite;
}

.scroll-top.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.88);
  animation: none;
}

.scroll-top svg {
  color: var(--gold-2)
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.scroll-top:hover svg {
  color: var(--ink)
}

@keyframes btnBreath {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-2px) scale(1.02)
  }
}

/* ===== CTA FLOTTANT MOBILE ===== */
.cta-float {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) ease;
  animation: ctaFloat 3s ease-in-out infinite;
}

.cta-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(201, 166, 107, .45), var(--shadow-lg);
}

@keyframes ctaFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

@media (max-width: 768px) {
  .cta-float {
    display: flex
  }
}

/* ===== ANIMATIONS (data-anim / scroll-driven) ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-slow) var(--spring-std),
    transform var(--dur-slow) var(--spring-std);
}

[data-anim][data-anim-delay="1"] {
  transition-delay: .10s
}

[data-anim][data-anim-delay="2"] {
  transition-delay: .20s
}

[data-anim][data-anim-delay="3"] {
  transition-delay: .30s
}

[data-anim].in {
  opacity: 1;
  transform: none
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .header__inner {
    height: 64px
  }

  .logo__img {
    width: 46px;
    height: 46px
  }

  .logo__title {
    font-size: 1rem
  }

  .nav__list {
    top: 64px
  }

  .svc-slide {
    height: 360px
  }

  .svc-arrow--prev {
    left: -16px
  }

  .svc-arrow--next {
    right: -16px
  }
}

@media (max-width:768px) {
  .section {
    padding: 64px 0
  }

  .section--cream {
    padding-bottom: 100px
  }

  .hero {
    min-height: 600px
  }

  .hero__title {
    font-size: 2rem
  }

  .hero__subtitle {
    font-size: 1rem
  }

  .hero__cta {
    flex-direction: column;
    gap: .8rem;
    align-items: center
  }

  .svc-slide {
    height: 400px
  }

  .svc-arrow--prev {
    left: 6px
  }

  .svc-arrow--next {
    right: 6px
  }

  .gcard {
    flex: 0 0 clamp(220px, 44vw, 300px);
    height: 300px
  }

  .gallery__arrow--prev {
    left: -8px
  }

  .gallery__arrow--next {
    right: -8px
  }
}

@media (max-width:560px) {
  .logo {
    gap: 8px
  }

  .logo__img {
    width: 36px;
    height: 36px
  }

  .logo__tag {
    font-size: .58rem
  }

  .hero {
    min-height: 550px
  }

  .svc-slide {
    height: 420px
  }

  .gcard {
    flex: 0 0 82vw;
    height: 260px
  }

  .gallery__arrow {
    display: none
  }

  .gfilters {
    gap: 8px
  }

  .gfilter {
    font-size: .75rem;
    padding: 7px 14px
  }

  .map-card__inner {
    aspect-ratio: 4 / 3
  }

  .scroll-top {
    right: 14px;
    bottom: 80px;
    width: 42px;
    height: 42px
  }

  .contact-lux__form .grid--2 {
    grid-template-columns: 1fr
  }
}

@media (max-width:380px) {
  .map-card__inner {
    aspect-ratio: 1 / 1
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .brandbelt__track {
    animation: none
  }

  .scroll-top.show {
    animation: none
  }

  .cta-float {
    animation: none
  }

  .orb {
    animation: none
  }

  .loader__ring {
    animation: none
  }

  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__cta,
  .hero__trust {
    animation: none;
    opacity: 1;
    transform: none
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== URGENCE — FLOATING BUTTON ===== */
.urgence-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .72rem 1.25rem .72rem .9rem;
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 8px 28px rgba(229, 62, 62, .45), 0 2px 8px rgba(0, 0, 0, .3);
  animation: kv-float-breathe 2.6s ease-in-out infinite;
  transition: transform .4s var(--spring-bounce), box-shadow .25s ease;
  will-change: transform;
  white-space: nowrap;
}

.urgence-float:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 40px rgba(229, 62, 62, .6), 0 2px 8px rgba(0, 0, 0, .3);
  animation: none;
}

.urgence-float svg {
  flex-shrink: 0
}

.urgence-float__label {
  line-height: 1
}

@keyframes kv-float-breathe {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 28px rgba(229, 62, 62, .45), 0 2px 8px rgba(0, 0, 0, .3)
  }

  50% {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(229, 62, 62, .6), 0 2px 8px rgba(0, 0, 0, .3)
  }
}

@media (max-width: 768px) {
  .urgence-float {
    left: 14px;
    bottom: 80px
  }
}

/* ===== FORM FEEDBACK ===== */
.form__feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.6;
  animation: kv-feedbackIn .4s var(--spring-out) forwards;
}

@keyframes kv-feedbackIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.form__feedback--ok {
  background: rgba(107, 201, 138, .12);
  border: 1px solid rgba(107, 201, 138, .3);
  color: #6bc98a;
}

.form__feedback--err {
  background: rgba(229, 62, 62, .1);
  border: 1px solid rgba(229, 62, 62, .25);
  color: #fc8181;
}

/* =====================================================================
   RÉFÉRENCES CHANTIERS
   ===================================================================== */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 960px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 560px) {
  .refs-grid {
    grid-template-columns: 1fr
  }
}

.ref-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) var(--spring-std),
    border-color var(--dur-std) ease;
}

/* Specular top */
.ref-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

/* Featured card — slightly larger visual */
.ref-card--featured {
  border-color: rgba(201, 166, 107, .22);
  background: linear-gradient(145deg, rgba(201, 166, 107, .10), rgba(255, 255, 255, .04));
}

.ref-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 166, 107, .08), transparent 70%);
  pointer-events: none;
}

/* Pro badge */
.ref-card--pro {
  border-color: rgba(201, 166, 107, .25)
}

.ref-card__pro-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  padding: 3px 10px;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.ref-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 166, 107, .25);
  border-color: rgba(201, 166, 107, .30);
}

.ref-card__pin {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(201, 166, 107, .22), rgba(184, 148, 82, .12));
  border: 1px solid rgba(201, 166, 107, .40);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .14), inset 0 0 0 1px rgba(255, 255, 255, .10);
  transition: transform var(--dur-std) var(--spring-bounce);
}

.ref-card__pin svg {
  width: 18px;
  height: 18px;
  color: var(--gold)
}

.ref-card:hover .ref-card__pin {
  transform: scale(1.08) rotate(-4deg)
}

.ref-card__body {
  position: relative;
  z-index: 1
}

.ref-card__city {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.ref-card__region {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ref-card__desc {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(227, 218, 206, .72);
  margin: 0 0 14px;
}

.ref-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.ref-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(227, 218, 206, .75);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  padding: 3px 9px;
}

/* Zone intervention */
.refs-zone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 166, 107, .20);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(227, 218, 206, .75);
  box-shadow: var(--shadow-sm);
}

.refs-zone__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.refs-zone strong {
  color: var(--cream)
}

/* =====================================================================
   CERTIFICATIONS RGE
   ===================================================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .cert-grid {
    grid-template-columns: 1fr
  }
}

.cert-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md), var(--shadow-inset);
  transition:
    transform var(--dur-std) var(--spring-bounce),
    box-shadow var(--dur-std) var(--spring-std),
    border-color var(--dur-std) ease;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .20), transparent);
}

.cert-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201, 166, 107, .22);
  border-color: rgba(201, 166, 107, .28);
}

.cert-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(201, 166, 107, .24), rgba(184, 148, 82, .14));
  border: 1px solid rgba(201, 166, 107, .45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14), inset 0 0 0 1px rgba(255, 255, 255, .10);
  transition: transform var(--dur-std) var(--spring-bounce), box-shadow var(--dur-std) ease;
}

.cert-card:hover .cert-card__icon-wrap {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 8px 24px rgba(201, 166, 107, .24), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.cert-card__icon {
  width: 26px;
  height: 26px;
  color: var(--gold)
}

.cert-card__body {
  flex: 1
}

.cert-card__badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cert-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 3px;
}

.cert-card__sub {
  font-size: .82rem;
  color: rgba(201, 166, 107, .8);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.cert-card__desc {
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(227, 218, 206, .72);
}

.cert-card__footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.cert-card__avantage {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-2);
}

/* Bandeau aides état */
.cert-banner {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(201, 166, 107, .12), rgba(184, 148, 82, .06));
  border: 1px solid rgba(201, 166, 107, .28);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(201, 166, 107, .10), var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.cert-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 107, .5), transparent);
}

.cert-banner__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: var(--shadow-gold);
  color: #111;
}

.cert-banner__icon svg {
  width: 22px;
  height: 22px
}

.cert-banner>div {
  flex: 1;
  min-width: 200px;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(227, 218, 206, .80);
}

.cert-banner strong {
  color: var(--cream)
}

/* ===== VIDEO SHOWCASE ===== */

.vidshowcase {
  background: var(--cream);
  padding-bottom: 180px;
}


.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}


.vid-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  /* Liquid transition for smoother cursor interaction */
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;

  /* Fix corner bleed/rendering bugs */
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.vid-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.vid-card__preview {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: inherit;
}


.vid-card__preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  border-radius: inherit;
}

.vid-card:hover .vid-card__preview video {
  opacity: 1;
  transform: scale(1.08);
}

.vid-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, transparent 40%, rgba(22, 31, 42, 0.4) 100%);
  transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 32px;
  text-align: center;
}

.vid-card:hover .vid-card__overlay {
  background: linear-gradient(to bottom, transparent 20%, rgba(22, 31, 42, 0.6) 100%);
}

.vid-card__play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  margin-bottom: 20px;
}

.vid-card__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.vid-card:hover .vid-card__play {
  transform: scale(1.1);
  background: var(--gold-2);
}

.vid-card__info {
  margin-top: auto;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vid-card:hover .vid-card__info {
  opacity: 1;
  transform: translateY(0);
}

.vid-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px) {
  .vid-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Lightbox video specific */
.lb--video .lb__card {
  max-width: 1000px;
  background: #000;
  aspect-ratio: 16/9;
}

.lb--video video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}