/**
 * LYOR Elements — Design System CSS
 * v2.7.5
 *
 * Foundation styles for all Elements widgets.
 * Tokens injected via DesignEngine::css_vars() as :root inline style.
 * This file uses var(--le-*) throughout — never hardcodes values.
 *
 * §A  Reset + Base
 * §B  Typography System
 * §C  Layout Helpers
 * §D  Button System
 * §E  Motion Classes
 * §F  Header System
 * §G  Section Spacing
 * §H  Card System
 * §I  Image System
 * §J  Overlay System
 * §K  Booking CTA
 * §L  Footer System
 * §M  Mobile
 */

/* ══════════════════════════════════════════════════════════
   §A  RESET + BASE
   ══════════════════════════════════════════════════════════ */

.lyor-el *,
.lyor-el *::before,
.lyor-el *::after {
  box-sizing: border-box;
}

.lyor-el {
  font-family: var(--le-font-body);
  color: var(--le-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Max width helpers */
.lyor-el--mw-full  .le-container { max-width: 100%; }
.lyor-el--mw-1400 .le-container { max-width: 1400px; }
.lyor-el--mw-1200 .le-container { max-width: 1200px; }
.lyor-el--mw-1000 .le-container { max-width: 1000px; }
.lyor-el--mw-800  .le-container { max-width: 800px; }

.le-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

/* ══════════════════════════════════════════════════════════
   §B  TYPOGRAPHY SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-display {
  font-family: var(--le-font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--le-text);
}

.le-display-sm {
  font-family: var(--le-font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--le-text);
}

.le-h1 {
  font-family: var(--le-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.le-h2 {
  font-family: var(--le-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

.le-h3 {
  font-family: var(--le-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
}

.le-body-lg { font-size: clamp(.95rem, 1.2vw, 1.1rem); line-height: 1.72; }
.le-body    { font-size: .9rem; line-height: 1.68; }
.le-body-sm { font-size: .8rem; line-height: 1.65; }

.le-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--le-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.le-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex-shrink: 0;
}

.le-muted { color: var(--le-muted); }
.le-soft  { color: var(--le-text-soft); }
.le-accent-text { color: var(--le-accent); }

.le-mono {
  font-family: var(--le-font-mono);
  font-size: .75rem;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════
   §C  LAYOUT HELPERS
   ══════════════════════════════════════════════════════════ */

.le-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--le-space-md); }
.le-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--le-space-md); }
.le-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--le-space-md); }

.le-flex     { display: flex; align-items: center; }
.le-flex-col { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════════════════
   §D  BUTTON SYSTEM
   ══════════════════════════════════════════════════════════ */

/* Base */
.le-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--le-font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--le-radius);
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition:
    background var(--le-t-fast) var(--le-ease),
    box-shadow var(--le-t-std) var(--le-ease),
    transform .12s var(--le-ease),
    border-color var(--le-t-fast) var(--le-ease);
  will-change: transform;
}

.le-btn:active { transform: scale(0.97); }

/* Primary: dark bg + accent border + light text */
.le-btn--primary {
  background: var(--le-surface-3);
  color: var(--le-text);
  border: 1px solid rgba(var(--_acc-rgb, 201 169 110) / .45);
}

.le-btn--primary:hover {
  background: var(--le-accent-dim);
  border-color: var(--le-accent);
  box-shadow: 0 0 24px var(--le-accent-glow);
}

/* Secondary: outline */
.le-btn--secondary {
  background: transparent;
  color: var(--le-text-soft);
  border: 1px solid var(--le-border-mid);
}

.le-btn--secondary:hover {
  background: var(--le-surface-2);
  color: var(--le-text);
}

/* Ghost: text only + underline */
.le-btn--ghost {
  background: transparent;
  color: var(--le-accent);
  border: none;
  padding: 8px 4px;
  gap: 6px;
}

.le-btn--ghost::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 4px; right: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--le-t-std) var(--le-ease);
}

.le-btn--ghost:hover::after { transform: scaleX(1); }

/* Pill variant */
.le-btn--pill { border-radius: var(--le-radius-pill); padding: 12px 32px; }

/* Large */
.le-btn--lg { padding: 16px 36px; font-size: .92rem; min-height: 52px; }

/* Glow border animation */
.le-btn--glow {
  background: var(--le-surface-3);
  color: var(--le-text);
  border: 1px solid transparent;
  background-clip: padding-box;
}

.le-btn--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    var(--le-accent) 0%,
    transparent 40%,
    transparent 60%,
    var(--le-accent) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity var(--le-t-std) var(--le-ease);
}

.le-btn--glow:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   §E  MOTION CLASSES
   ══════════════════════════════════════════════════════════ */

/* Pending state (set by JS before reveal) */
[data-le-reveal] {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Cinematic reveal: clip-path wipe */
.le-cinematic--pending {
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--le-t-reveal) var(--le-ease);
}

.le-cinematic--revealed {
  clip-path: inset(0 0% 0 0);
}

/* Reduced motion: disable everything */
.lyor-el--no-motion [data-le-reveal],
.lyor-el--no-motion [data-le-parallax],
.lyor-el--no-motion [data-le-magnetic],
.lyor-el--no-motion [data-le-cinematic] {
  transition: none !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-le-reveal],
  [data-le-cinematic],
  .le-cinematic--pending {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   §F  HEADER SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--le-header-h, 72px);
  display: flex;
  align-items: center;
  transition:
    background var(--le-t-std) var(--le-ease),
    box-shadow var(--le-t-std) var(--le-ease),
    height var(--le-t-std) var(--le-ease),
    transform var(--le-t-std) var(--le-ease);
}

.le-header--transparent { background: transparent; }

.le-header.is-scrolled {
  background: rgba(var(--_bg-rgb, 9 8 10) / .92);
  backdrop-filter: blur(var(--le-blur-md));
  -webkit-backdrop-filter: blur(var(--le-blur-md));
  box-shadow: var(--le-shadow-md);
  --le-header-h: 60px;
}

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

/* Glass variant */
.le-header--glass {
  background: rgba(var(--_bg-rgb, 9 8 10) / .4);
  backdrop-filter: blur(var(--le-blur-lg));
  -webkit-backdrop-filter: blur(var(--le-blur-lg));
  border-bottom: 1px solid var(--le-border);
}

.le-header--glass.is-scrolled {
  background: rgba(var(--_bg-rgb, 9 8 10) / .75);
}

.le-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.le-header__logo {
  font-family: var(--le-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--le-text);
  text-decoration: none;
  letter-spacing: .01em;
  flex-shrink: 0;
}

.le-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.le-header__nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--le-text-soft);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color var(--le-t-fast) var(--le-ease);
  position: relative;
}

.le-header__nav a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--le-accent);
  transform: scaleX(0);
  transition: transform var(--le-t-std) var(--le-ease);
}

.le-header__nav a:hover { color: var(--le-text); }
.le-header__nav a:hover::after { transform: scaleX(1); }

/* Hamburger */
.le-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}

.le-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--le-text);
  border-radius: 2px;
  transition: transform var(--le-t-std) var(--le-ease), opacity var(--le-t-fast);
}

.le-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.le-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.le-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   §G  SECTION SPACING
   ══════════════════════════════════════════════════════════ */

.le-section {
  padding-block: var(--le-section-py);
  overflow: hidden;
}

.lyor-el--spacing-none  .le-section { padding-block: 0; }
.lyor-el--spacing-sm    .le-section { padding-block: clamp(32px,4vw,60px); }
.lyor-el--spacing-lg    .le-section { padding-block: clamp(80px,11vw,160px); }
.lyor-el--spacing-xl    .le-section { padding-block: clamp(100px,14vw,200px); }

/* ══════════════════════════════════════════════════════════
   §H  CARD SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-card {
  background: var(--le-surface);
  border: 1px solid var(--le-border);
  border-radius: var(--le-radius-lg);
  overflow: hidden;
  transition:
    box-shadow var(--le-t-std) var(--le-ease),
    transform var(--le-t-std) var(--le-ease),
    border-color var(--le-t-std) var(--le-ease);
}

.le-card:hover {
  box-shadow: var(--le-shadow-lg);
  transform: translateY(-4px);
}

.le-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.le-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--le-t-slow) var(--le-ease);
}

.le-card:hover .le-card__image img { transform: scale(1.04); }

.le-card__body { padding: var(--le-space-md); }

.le-card__kicker {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--le-accent);
  margin-bottom: 8px;
}

.le-card__title {
  font-family: var(--le-font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--le-text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.le-card__desc {
  font-size: .82rem;
  color: var(--le-text-soft);
  line-height: 1.65;
}

/* Glass card */
.le-card--glass {
  background: var(--le-surface);
  backdrop-filter: blur(var(--le-blur-md));
  -webkit-backdrop-filter: blur(var(--le-blur-md));
  border-color: var(--le-border-mid);
}

/* Accent card */
.le-card--accent {
  border-color: var(--le-accent);
  border-left: 3px solid var(--le-accent);
}

/* ══════════════════════════════════════════════════════════
   §I  IMAGE SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-img-wrap {
  position: relative;
  overflow: hidden;
}

.le-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Aspect ratios */
.le-img-wrap--cinema  { aspect-ratio: 21/9; }
.le-img-wrap--wide    { aspect-ratio: 16/9; }
.le-img-wrap--std     { aspect-ratio: 4/3; }
.le-img-wrap--square  { aspect-ratio: 1; }
.le-img-wrap--tall    { aspect-ratio: 3/4; }
.le-img-wrap--portrait{ aspect-ratio: 2/3; }

/* Parallax wrapper */
.lyor-el-parallax-wrap {
  position: relative;
  overflow: hidden;
}

.lyor-el-parallax-wrap [data-le-parallax] {
  will-change: transform;
  scale: 1.15; /* pre-scale to allow translation without gaps */
}

/* ══════════════════════════════════════════════════════════
   §J  OVERLAY SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.le-overlay--dark-bottom {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 70%
  );
}

.le-overlay--dark-full {
  background: rgba(0,0,0,0.55);
}

.le-overlay--accent {
  background: linear-gradient(
    135deg,
    rgba(var(--_acc-rgb, 201 169 110) / .2) 0%,
    transparent 60%
  );
}

.le-overlay--vignette {
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}

/* ══════════════════════════════════════════════════════════
   §K  BOOKING CTA BANNER
   ══════════════════════════════════════════════════════════ */

.le-booking-banner {
  position: relative;
  background: var(--le-surface-2);
  border: 1px solid var(--le-border-mid);
  border-radius: var(--le-radius-xl);
  padding: var(--le-space-lg) var(--le-space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-md);
  overflow: hidden;
}

.le-booking-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--le-accent) 40%,
    var(--le-accent) 60%,
    transparent 100%
  );
  opacity: .5;
}

.le-booking-banner__text { flex: 1; min-width: 0; }

.le-booking-banner__eyebrow {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--le-accent);
  margin-bottom: 8px;
}

.le-booking-banner__title {
  font-family: var(--le-font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--le-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.le-booking-banner__sub {
  font-size: .82rem;
  color: var(--le-text-soft);
}

/* ══════════════════════════════════════════════════════════
   §L  FOOTER SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-footer {
  background: var(--le-surface);
  border-top: 1px solid var(--le-border);
  padding-block: var(--le-space-xl) var(--le-space-lg);
}

.le-footer--editorial {
  background: var(--le-bg);
  position: relative;
  overflow: hidden;
}

.le-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--le-space-lg);
  margin-bottom: var(--le-space-lg);
  padding-bottom: var(--le-space-lg);
  border-bottom: 1px solid var(--le-border);
}

.le-footer__brand { font-family: var(--le-font-display); font-size: 1.2rem; font-weight: 400; color: var(--le-text); }
.le-footer__tagline { font-size: .8rem; color: var(--le-muted); margin-top: 8px; line-height: 1.6; max-width: 240px; }

.le-footer__nav-label {
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--le-muted);
  margin-bottom: 14px;
}

.le-footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.le-footer__nav-list a { font-size: .8rem; color: var(--le-text-soft); text-decoration: none; transition: color var(--le-t-fast); }
.le-footer__nav-list a:hover { color: var(--le-text); }

.le-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-md);
  flex-wrap: wrap;
}

.le-footer__copy { font-size: .72rem; color: var(--le-muted); }

.le-footer__awards {
  display: flex;
  align-items: center;
  gap: var(--le-space-sm);
}

.le-footer__award {
  font-size: .65rem;
  color: var(--le-accent);
  border: 1px solid rgba(var(--_acc-rgb, 201 169 110) / .25);
  border-radius: var(--le-radius-pill);
  padding: 3px 10px;
}

/* ══════════════════════════════════════════════════════════
   §M  MOBILE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .le-grid-2,
  .le-grid-3,
  .le-grid-4 { grid-template-columns: 1fr; }

  .le-header__nav { display: none; }
  .le-hamburger   { display: flex; }

  .le-booking-banner { flex-direction: column; align-items: flex-start; }

  .le-footer__top { grid-template-columns: 1fr 1fr; gap: var(--le-space-md); }
}

@media (max-width: 600px) {
  .le-footer__top { grid-template-columns: 1fr; }
  .le-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   §N  PHASE 10.1 — ADDITIONAL TOKENS & MOTION
   ══════════════════════════════════════════════════════════ */

/* Low-power mode: disable decorative motion */
.le-low-power [data-le-parallax],
.le-low-power [data-le-tilt],
.le-low-power [data-le-float],
.le-low-power [data-le-depth],
.le-low-power [data-le-scale-scroll] {
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto !important;
}

/* Tilt card: GPU hint */
[data-le-tilt] {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Cinematic scale on scroll */
[data-le-scale-scroll] {
  overflow: hidden;
}

/* Float element */
[data-le-float] {
  will-change: transform;
}

/* ── Room Grid specifics ─────────────────────────────────── */
@media (max-width: 900px) {
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}

@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: minmax(0,1fr) !important;
  }
}

/* ── Testimonial Cinema ──────────────────────────────────── */
.lyor-el blockquote {
  quotes: none;
}

/* ── Wellness + Region: text on dark image ───────────────── */
.lyor-el [style*="background:rgba(0,0,0"] .le-eyebrow {
  color: var(--le-accent);
}

/* ── Motion curves for luxury feel ──────────────────────── */
.le-section * {
  /* Nothing global — only opt-in via data attrs */
}

/* Cinematic image entrance */
@keyframes le-img-enter {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.le-cinematic--revealed img {
  animation: le-img-enter 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

/* Dish menu hover */
.lyor-el [style*="border-bottom:1px solid var(--le-border)"] {
  transition: background var(--le-t-fast);
}

.lyor-el [style*="border-bottom:1px solid var(--le-border)"]:hover {
  background: var(--le-surface-2);
}

/* Section snap container */
[data-le-snap] {
  overscroll-behavior: none;
}

/* ── Preset: Deep Luxury — extra glass blur on surfaces ─── */
.lyor-el--preset-deep_luxury .le-card {
  backdrop-filter: blur(var(--le-blur-lg));
  -webkit-backdrop-filter: blur(var(--le-blur-lg));
}

/* ── Preset: Nordic Silence — hairline borders ──────────── */
.lyor-el--preset-nordic_silence .le-card {
  border-width: 1px;
  border-color: rgba(40,40,40,0.1);
}

/* ── Preset: Warm Chalet — rounder everything ───────────── */
.lyor-el--preset-warm_chalet .le-btn {
  border-radius: var(--le-radius-pill);
}

/* ══════════════════════════════════════════════════════════
   §O  HEADER CINEMATIC — Global scroll + overlay helpers
   These complement the widget-scoped styles.
   ══════════════════════════════════════════════════════════ */

/* Prevent layout shift from fixed header */
.lyor-el-header-offset {
  padding-top: 72px; /* matches header height */
}

/* Body scroll lock (set by header JS) */
body.lhdr-locked {
  overflow: hidden;
  /* Prevent width shift on scroll-bar disappear */
  padding-right: var(--scrollbar-width, 0px);
}

/* Scrollbar width compensation */
:root {
  --scrollbar-width: 0px;
}

@supports (scrollbar-gutter: stable) {
  body { scrollbar-gutter: stable; }
  body.lhdr-locked { padding-right: 0; }
}

/* ── Footer nav link hover — global ── */
.le-footer__nav-list a:hover {
  color: var(--le-text);
}

/* ── Footer responsive ── */
@media (max-width: 760px) {
  .le-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--le-space-md);
  }
}

@media (max-width: 480px) {
  .le-footer__top {
    grid-template-columns: 1fr !important;
  }
  .le-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Skip to content (accessibility) ── */
.lyor-skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 8px 16px;
  background: var(--le-bg);
  color: var(--le-accent);
  border: 1px solid var(--le-accent);
  border-radius: var(--le-radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}
.lyor-skip-link:focus { top: 16px; }

/* ══════════════════════════════════════════════════════════
   LYOR PREMIUM CURSOR SYSTEM
   ══════════════════════════════════════════════════════════ */

.le-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid color-mix(in oklch, var(--le-accent, #c9a96e) 60%, transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.05s linear,
              width 0.3s cubic-bezier(0.22,1,0.36,1),
              height 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s,
              background 0.25s;
  will-change: transform;
  mix-blend-mode: difference;
}
.le-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--le-accent, #c9a96e);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
}
.le-cursor--hover {
  width: 64px; height: 64px;
  border-color: var(--le-accent, #c9a96e);
  background: color-mix(in oklch, var(--le-accent, #c9a96e) 8%, transparent);
}
.le-cursor--click {
  transform: translate(var(--cx,0), var(--cy,0)) scale(0.85) !important;
}
.le-cursor--label::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--le-font-body, 'DM Sans', sans-serif);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--le-accent, #c9a96e);
}
.le-cursor--label {
  width: 72px; height: 72px;
}

/* Hide default cursor when custom is active */
body:has(.le-cursor) { cursor: none; }
body:has(.le-cursor) a,
body:has(.le-cursor) button { cursor: none; }

/* ══════════════════════════════════════════════════════════
   PREMIUM SECTION TRANSITIONS
   ══════════════════════════════════════════════════════════ */

.lyor-el.le-section {
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

/* ══════════════════════════════════════════════════════════
   STICKY HEADER — hidden state
   ══════════════════════════════════════════════════════════ */

[data-le-scroll].is-hidden {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.5,0,0.75,0);
}
[data-le-scroll]:not(.is-hidden) {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* ══════════════════════════════════════════════════════════
   HORIZONTAL SCROLL TRACK
   ══════════════════════════════════════════════════════════ */

[data-le-hscroll-wrap] {
  overflow: hidden;
  position: relative;
}
[data-le-hscroll] {
  display: flex;
  gap: var(--le-space-md, 24px);
  will-change: transform;
  transition: transform 0.1s linear;
  width: max-content;
}

/* ══════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════ */

.le-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}
[data-le-marquee] {
  display: inline-block;
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════
   PREMIUM TILT CARD
   ══════════════════════════════════════════════════════════ */

.le-card[data-le-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* ══════════════════════════════════════════════════════════
   AMBIENT IMAGE
   ══════════════════════════════════════════════════════════ */

[data-le-ambient-img] {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}


/* ── Image widget hover (PremiumWidgets) ─────────────────────── */
.lyor-el .le-img-wrap:hover figcaption { transform: translateY(0) !important; }
.lyor-el .le-img-wrap:hover img { transform: scale(1.04) !important; }
