/* ═══════════════════════════════════════════════════════════════
   ELITE LOUNGE · LANDING PAGE — REDESIGN LAYER
   ═══════════════════════════════════════════════════════════════
   S'appuie entièrement sur les tokens de elite-lounge.css
   (--el-gold, --el-bg, --el-font-display, etc.). Ne redéfinit
   aucune couleur : ne fait qu'orchestrer la mise en page, le
   rythme et le mouvement de la landing publique.

   Signature : "Le Fil d'Or" — un fil vertical qui accompagne le
   scroll et relie les sections, comme le service qui accompagne
   le client du premier verre au dernier.
   ═══════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

.el-landing {
  position: relative;
  overflow-x: clip;
  background: var(--el-bg);
}

/* Ancres — ne pas laisser le nav fixe recouvrir le haut de la section ciblée */
.el-landing-section,
.el-landing-hero,
.el-landing-statement,
.el-landing-banner {
  scroll-margin-top: 92px;
}

/* Grain overlay — texture pellicule, subtile, sur tout le body */
.el-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Custom scrollbar */
.el-landing { scrollbar-color: var(--el-gold-dim) var(--el-bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--el-bg); }
::-webkit-scrollbar-thumb { background: var(--el-gold-dim); border-radius: 10px; border: 2px solid var(--el-bg); }

/* ── Le Fil d'Or — filet de progression verticale ─────────── */
.el-thread {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  height: 42vh;
  width: 1px;
  z-index: var(--el-z-sticky);
  background: linear-gradient(to bottom, transparent, var(--el-hairline-gold) 15%, var(--el-hairline-gold) 85%, transparent);
  display: none;
}
.el-thread__fill {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--el-gold), var(--el-gold-dark));
  box-shadow: 0 0 8px var(--el-gold-glow);
  transition: height 80ms linear;
}
.el-thread__diamond {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 7px; height: 7px;
  background: var(--el-gold);
  box-shadow: 0 0 10px 2px var(--el-gold-glow);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: top 80ms linear;
}
@media (min-width: 1280px) { .el-thread { display: block; } }

/* ── Reveal on scroll ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--el-ease), transform 800ms var(--el-ease);
}
[data-reveal].el-in-view { opacity: 1; transform: translateY(0); }
[data-reveal="scale"] { transform: translateY(0) scale(0.96); }
[data-reveal="scale"].el-in-view { transform: scale(1); }
[data-reveal-group] > * { transition-delay: calc(var(--el-i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══ NAV ═══════════════════════════════════════════════════ */
.el-landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--el-z-modal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  transition: padding var(--el-dur-slow) var(--el-ease),
              background var(--el-dur-slow) var(--el-ease),
              border-color var(--el-dur-slow) var(--el-ease);
  border-bottom: 0.5px solid transparent;
}
.el-landing-nav.el-is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--el-hairline);
}
.el-logo-inline { display: inline-flex; align-items: center; }
.el-landing-nav__logo { height: 34px; width: auto; display: block; transition: height var(--el-dur-slow) var(--el-ease); }
.el-is-scrolled .el-landing-nav__logo { height: 28px; }

.el-landing-navlinks {
  list-style: none;
  margin: 0; padding: 0;
  display: none;
  gap: 40px;
}
.el-landing-navlinks li a {
  position: relative;
  font-family: var(--el-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--el-text-muted);
  text-decoration: none;
  padding-bottom: 6px;
}
.el-landing-navlinks li a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--el-gold);
  transition: right var(--el-dur-base) var(--el-ease);
}
.el-landing-navlinks li a:hover {
  color: var(--el-text);
  text-decoration: none;
}
.el-landing-navlinks li a:hover::after { right: 0; }

@media (min-width: 900px) { .el-landing-navlinks { display: flex; align-items: center; } }

/* ── Burger (mobile) ─────────────────────────────────────── */
.el-landing-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--el-z-modal) + 2);
  position: relative;
}
.el-landing-nav__burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--el-text);
  transition: transform 320ms var(--el-ease), opacity 200ms var(--el-ease), width 320ms var(--el-ease);
}
.el-landing-nav__burger span:nth-child(2) { width: 68%; }
.el-landing-nav__burger.el-is-open span { width: 100%; }
.el-landing-nav__burger.el-is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.el-landing-nav__burger.el-is-open span:nth-child(2) { opacity: 0; }
.el-landing-nav__burger.el-is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 900px) { .el-landing-nav__burger { display: none; } }

/* ── Menu plein écran (mobile) ───────────────────────────── */
@media (max-width: 899px) {
  .el-landing-navlinks {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: var(--el-z-modal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms var(--el-ease);
  }
  .el-landing-navlinks::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 50% 15%, rgba(238,200,139,0.10), transparent 60%);
    pointer-events: none;
  }
  .el-landing-navlinks.el-is-open { opacity: 1; pointer-events: auto; }
  .el-landing-navlinks li {
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 420ms var(--el-ease), transform 420ms var(--el-ease);
  }
  .el-landing-navlinks.el-is-open li { opacity: 1; transform: translateY(0); }
  .el-landing-navlinks.el-is-open li:nth-child(1) { transition-delay: 90ms; }
  .el-landing-navlinks.el-is-open li:nth-child(2) { transition-delay: 160ms; }
  .el-landing-navlinks.el-is-open li:nth-child(3) { transition-delay: 230ms; }
  .el-landing-navlinks.el-is-open li:nth-child(4) { transition-delay: 300ms; }
  .el-landing-navlinks li a {
    font-size: 26px;
    letter-spacing: 0.06em;
    padding-bottom: 4px;
  }
}
body.el-nav-open { overflow: hidden; }

/* ═══ HERO ══════════════════════════════════════════════════ */
.el-landing-hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 clamp(20px, 5vw, 64px) clamp(32px, 5vw, 60px);
}
.el-landing-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: el-kenburns 22s ease-in-out infinite alternate;
  filter: saturate(0.9) brightness(0.62);
}
.el-landing-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 18% 8%, rgba(238,200,139,0.20), transparent 60%),
    linear-gradient(180deg, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.55) 45%, var(--el-bg) 96%);
}
@keyframes el-kenburns {
  from { transform: scale(1.06) translate(0,0); }
  to   { transform: scale(1.14) translate(-1.5%, -1%); }
}

.el-landing-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.el-landing-hero__content .el-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: el-fade-in 900ms var(--el-ease) both;
}
.el-landing-hero__content .el-eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--el-gold-dark);
}
.el-landing-hero__title {
  margin-top: 18px;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
}
.el-landing-hero__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: el-word-up 800ms var(--el-ease) both;
}
@keyframes el-word-up { to { opacity: 1; transform: translateY(0); } }
.el-landing-hero__lead {
  margin-top: 22px;
  max-width: 480px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--el-text-muted);
  animation: el-slide-up 900ms 240ms var(--el-ease) both;
}
.el-landing-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  animation: el-slide-up 900ms 360ms var(--el-ease) both;
}
.el-landing-hero__cta-outline { border-color: rgba(255,255,255,0.28); color: var(--el-text); }
.el-landing-hero__cta-outline:hover { border-color: var(--el-gold); color: var(--el-gold); }

/* magnetic-feeling buttons */
.el-landing .el-btn { transition: transform 220ms var(--el-ease), box-shadow var(--el-dur-base) var(--el-ease), background var(--el-dur-base) var(--el-ease), border-color var(--el-dur-base) var(--el-ease); }
.el-landing .el-btn:hover { transform: translateY(-3px); }

/* scroll cue */
.el-landing-hero__scrollcue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--el-text-dim);
  opacity: 0.8;
}
.el-landing-hero__scrollcue span {
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  font-family: var(--el-font-display);
}
.el-landing-hero__scrollcue svg { animation: el-bob 2.2s ease-in-out infinite; }
@keyframes el-bob { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(7px); opacity: 1; } }
@media (max-width: 640px) { .el-landing-hero__scrollcue { display: none; } }

/* Diamond divider — petite respiration signature entre deux moments */
.el-landing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 0;
}
.el-landing-divider::before,
.el-landing-divider::after {
  content: "";
  width: clamp(40px, 8vw, 90px);
  height: 1px;
  background: var(--el-hairline-gold);
}
.el-landing-divider span {
  width: 5px; height: 5px;
  background: var(--el-gold-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ═══ SECTION SHELL ═════════════════════════════════════════ */
.el-landing-section {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5.5vw, 72px) clamp(20px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
}
.el-landing-section__head { max-width: 620px; margin-bottom: clamp(24px, 3.5vw, 40px); }
.el-landing-section__head .el-eyebrow,
.el-landing-concept .el-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.el-landing-section__head .el-eyebrow::before,
.el-landing-concept .el-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--el-gold-dark); }
.el-landing-section__title { margin-top: 16px; font-size: clamp(28px, 4vw, 46px); text-transform: none; letter-spacing: -0.01em; }

/* ═══ CONCEPT ═══════════════════════════════════════════════ */
.el-landing-concept {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 640px;
}
.el-landing-concept__lead { font-size: 16px; line-height: 1.75; color: var(--el-text-muted); margin: 0; }

/* Tags — infinite marquee ribbon */
.el-landing-tags {
  margin-top: clamp(32px, 4.5vw, 48px);
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 0.5px solid var(--el-hairline);
  border-bottom: 0.5px solid var(--el-hairline);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.el-landing-tags__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: el-marquee 26s linear infinite;
  width: max-content;
}
.el-landing-tags:hover .el-landing-tags__track { animation-play-state: paused; }
@keyframes el-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.el-landing-tag {
  font-family: var(--el-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--el-text-muted);
  padding: 0 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.el-landing-tag::after {
  content: "";
  position: absolute; right: 0; top: 50%; translate: 0 -50%;
  width: 4px; height: 4px; background: var(--el-gold-dark); transform-origin: center;
  transform: rotate(45deg);
}
/* Static (non-marquee) fallback usage keeps original look for other pages */
.el-landing-tags--start { justify-content: flex-start; border: none; padding: 0; mask-image: none; -webkit-mask-image: none; }
.el-landing-tags--start .el-landing-tag { padding: 8px 16px; border: 0.5px solid var(--el-hairline-gold); border-radius: var(--el-radius-pill); color: var(--el-gold); }
.el-landing-tags--start .el-landing-tag::after { display: none; }

.el-landing-quote {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.el-landing-quote p {
  margin-top: 20px;
  font-family: var(--el-font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--el-text);
  letter-spacing: 0.01em;
}
.el-landing-quote .el-rule { justify-content: center; width: 100%; }

/* ═══ GALERIE — mosaïque photo (3 images, asymétrique) ══════ */
.el-landing-gallery {
  margin-top: clamp(32px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 150px);
  gap: 8px;
}
.el-landing-gallery__item {
  position: relative;
  border-radius: var(--el-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.el-landing-gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(238,200,139,0.12), transparent 55%);
  opacity: 0;
  transition: opacity var(--el-dur-base) var(--el-ease);
}
.el-landing-gallery__item:hover::after { opacity: 1; }
.el-landing-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--el-ease); }
.el-landing-gallery__item:hover img { transform: scale(1.05); }
.el-landing-gallery__item:first-child { grid-row: span 2; }
.el-landing-gallery__cap {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--el-font-display);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) {
  .el-landing-gallery { grid-template-rows: repeat(2, 230px); gap: 10px; }
}
@media (min-width: 1024px) {
  .el-landing-gallery { grid-template-rows: repeat(2, 280px); }
}

/* ═══ ÉTAPES — timeline ═════════════════════════════════════ */
.el-landing-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: el-step;
}
.el-landing-step {
  position: relative;
  padding-left: 62px;
}
.el-landing-step__num {
  counter-increment: el-step;
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--el-hairline-gold);
  background: var(--el-bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--el-font-display);
  font-weight: 700; font-size: 15px; color: var(--el-gold);
}
.el-landing-step__num::before { content: "0" counter(el-step); }
.el-landing-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px; top: 44px; bottom: -44px;
  width: 1px;
  background: linear-gradient(to bottom, var(--el-hairline-gold), transparent);
}
.el-landing-step__title {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--el-text);
}
.el-landing-step__body { margin-top: 8px; color: var(--el-text-muted); line-height: 1.65; max-width: 460px; }

@media (min-width: 900px) {
  .el-landing-steps { grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: el-step; }
  .el-landing-step { padding-left: 0; padding-top: 66px; }
  .el-landing-step__num { left: 0; top: 0; }
  .el-landing-step:not(:last-child)::after {
    left: 44px; top: 21px; right: -28px; bottom: auto; width: auto; height: 1px;
    background: linear-gradient(to right, var(--el-hairline-gold), transparent);
  }
}

/* ═══ TECH NARRATIVE ═══════════════════════════════════════ */
.el-landing-narrative {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.el-landing-narrative__title { margin-top: 14px; font-size: clamp(26px, 3.6vw, 40px); text-transform: none; letter-spacing: -0.005em; }
.el-landing-narrative__body { margin-top: 16px; color: var(--el-text-muted); line-height: 1.7; }
.el-landing-narrative__body:first-of-type { color: var(--el-text); font-size: 17px; }

.el-landing-narrative__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--el-radius-2xl);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  border: 1px solid var(--el-hairline-gold);
}
.el-landing-narrative__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 900ms var(--el-ease); }
.el-landing-narrative__img-wrap:hover .el-landing-narrative__img { transform: scale(1.06); }
.el-landing-narrative__img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(238,200,139,0.16), transparent 45%);
  pointer-events: none;
}

@media (min-width: 960px) {
  .el-landing-narrative { grid-template-columns: 1fr 0.9fr; gap: 72px; }
}

/* ═══ STATEMENT BANNER (image serveur) ═════════════════════ */
.el-landing-statement {
  position: relative;
  margin: 0 clamp(20px, 5vw, 64px);
  border-radius: var(--el-radius-3xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.el-landing-statement__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  filter: brightness(0.48) saturate(0.9);
  transform: scale(1.02);
}
@media (min-width: 1024px) {
  .el-landing-statement__bg { background-attachment: fixed; }
}
.el-landing-statement::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.3) 65%);
}
.el-landing-statement__inner { padding: clamp(24px, 4vw, 48px); max-width: 620px; }
.el-landing-statement__title {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--el-text);
}
.el-landing-statement__body { margin-top: 14px; color: var(--el-text-muted); line-height: 1.7; max-width: 480px; }

/* ═══ PAIEMENT ══════════════════════════════════════════════ */
.el-landing-payment-row {
  margin-top: clamp(20px, 3vw, 32px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--el-hairline);
  border: 1px solid var(--el-hairline);
  border-radius: var(--el-radius-2xl);
  overflow: hidden;
  max-width: 460px;
}
.el-landing-payment-item {
  background: var(--el-bg-2);
  padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.el-landing-payment-item svg { color: var(--el-gold); }
.el-landing-payment-item span {
  font-family: var(--el-font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--el-text);
}

/* ═══ CONTACT BANNER ════════════════════════════════════════ */
.el-landing-banner {
  position: relative;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  background: var(--el-bg);
}
.el-landing-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(238,200,139,0.10), transparent 60%);
  pointer-events: none;
}
.el-landing-banner__eyebrow { display: block; }
.el-landing-banner__title {
  margin-top: 18px;
  font-size: clamp(30px, 5.5vw, 58px);
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
  color: var(--el-text);
  text-shadow: 0 0 28px rgba(238,200,139,0.35);
}
.el-landing-banner__body { max-width: 560px; margin: 14px auto 0; color: var(--el-text-muted); line-height: 1.7; }
.el-landing-banner__cta { margin-top: 36px; }

/* ═══ FAB ═══════════════════════════════════════════════════ */
.el-landing-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: var(--el-z-overlay);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 22px;
  border-radius: var(--el-radius-pill);
  background: var(--el-grad-gold);
  color: var(--el-bg);
  font-family: var(--el-font-display);
  font-weight: 700; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--el-shadow-gold-fab);
  transition: opacity 320ms var(--el-ease), transform 320ms var(--el-ease);
}
.el-landing-fab::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: inherit;
  border: 1px solid var(--el-gold);
  opacity: 0.5;
  animation: el-ring-pulse 2.4s var(--el-ease) infinite;
}
@keyframes el-ring-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.22); opacity: 0; }
}
.el-landing-fab:hover { text-decoration: none; transform: translateY(-2px); }
.el-landing-fab.el-is-hidden {
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
}

/* ═══ FOOTER ════════════════════════════════════════════════ */
.el-landing-footer {
  position: relative; z-index: 1;
  padding: 48px clamp(20px, 5vw, 64px) calc(40px + var(--el-safe-bottom));
  border-top: 0.5px solid var(--el-hairline);
  display: flex; flex-direction: column; gap: 28px; align-items: center;
  text-align: center;
}
.el-landing-footer__social { display: flex; gap: 10px; }
.el-landing-footer__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--el-hairline);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--el-text-muted);
  transition: var(--el-transition);
}
.el-landing-footer__icon:hover {
  color: var(--el-gold);
  border-color: var(--el-hairline-gold);
  box-shadow: var(--el-shadow-gold);
  transform: translateY(-2px);
}
.el-landing-footer__address { font-size: 13px; color: var(--el-text-muted); margin: 0; }
.el-landing-footer__contact { margin: 8px 0 0; font-size: 13px; }
.el-landing-footer__contact a { color: var(--el-text); }
.el-landing-footer__contact a:hover { color: var(--el-gold); }
.el-landing-footer__sep { margin: 0 8px; color: var(--el-text-dim); }

@media (min-width: 640px) {
  .el-landing-footer { flex-direction: row; justify-content: space-between; text-align: left; }
  .el-landing-footer__info { text-align: right; }
}
