:root {
  --luxury-black: #000000;
  --luxury-black-soft: #090909;
  --luxury-white: #ffffff;
  --luxury-white-muted: rgba(255, 255, 255, 0.72);
  --luxury-red: #b3001b;
  --luxury-red-soft: rgba(179, 0, 27, 0.32);
  --luxury-border: rgba(255, 255, 255, 0.16);
  --luxury-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);

  --accent-gold: var(--luxury-red);
  --accent-teal: var(--luxury-white-muted);
  --text-main: var(--luxury-white);
  --text-soft: var(--luxury-white-muted);
  --glass-light: rgba(255, 255, 255, 0.08);
  --glass-dark: rgba(6, 6, 6, 0.78);
  --glass-border: var(--luxury-border);
  --shadow-soft: var(--luxury-shadow);
}

body {
  color: var(--luxury-white);
  background:
    radial-gradient(circle at 86% 12%, rgba(179, 0, 27, 0.14), transparent 40%),
    radial-gradient(circle at 20% 74%, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(170deg, var(--luxury-black), var(--luxury-black-soft));
}

html {
  scroll-behavior: smooth;
  background: #000;
}

a {
  color: var(--luxury-white);
}

a:hover {
  color: var(--luxury-white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.form-check-input:focus {
  outline: 2px solid var(--luxury-red);
  outline-offset: 2px;
  box-shadow: 0 0 0 0.2rem rgba(179, 0, 27, 0.2);
}

.page-shell {
  position: relative;
  z-index: 20;
}

.glass-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 30%, rgba(5, 5, 5, 0.8));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: var(--luxury-shadow);
}

.glass-card::before {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 42%);
}

.glass-nav {
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.brand-mark {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.luxury-link,
.navbar .nav-link {
  position: relative;
  letter-spacing: 0.01em;
}

.navbar .nav-link::after,
.luxury-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--luxury-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after,
.luxury-link:hover::after,
.luxury-link:focus-visible::after {
  transform: scaleX(1);
}

.luxury-link:hover,
.navbar .nav-link:hover {
  letter-spacing: 0.02em;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.22);
}

.btn {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card .btn {
  position: relative;
  overflow: hidden;
}

.hero-card .btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--luxury-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card .btn:hover::after,
.hero-card .btn:focus-visible::after {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(145deg, #780012, #b3001b);
  border-color: transparent;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(145deg, #940016, #c7001f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(179, 0, 27, 0.26);
}

.btn-outline-light {
  color: var(--luxury-white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--luxury-white);
  border-color: rgba(179, 0, 27, 0.72);
  background: rgba(179, 0, 27, 0.16);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.price-tag,
.stars {
  color: #ff3150;
}

.hero-section {
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
  min-height: calc(100vh - 76px);
  overflow: clip;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.hero-media {
  transform: scale(1.03) translate3d(calc(var(--hero-pointer-x) * -18px), calc(var(--hero-pointer-y) * -10px), 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.48) saturate(1.02);
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.hero-card {
  transform: translate3d(calc(var(--hero-pointer-x) * 12px), calc(var(--hero-pointer-y) * 8px), 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1rem;
  padding: clamp(1.3rem, 3vw, 2.4rem);
  max-width: min(720px, 94vw);
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-word {
  display: inline-block;
  white-space: pre;
}

.section-head {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.66));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.section-head::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%);
}

.editorial-chapter {
  position: relative;
  padding-top: clamp(2.6rem, 6vw, 4.8rem);
  padding-bottom: clamp(2.3rem, 5vw, 4rem);
  --chapter-progress: 0;
}

.chapter-rule {
  width: min(180px, 30vw);
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--luxury-red), transparent);
  opacity: 0.95;
}

.chapter-corner {
  position: absolute;
  top: 1.2rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(179, 0, 27, 0.9);
  border-right: 1px solid rgba(179, 0, 27, 0.9);
}

.grid-cards,
.grid-gallery {
  gap: 1.2rem;
}

.service-card,
.blog-card,
.gallery-card {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover,
.blog-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.44);
}

.card-media {
  border-radius: 0.9rem 0.9rem 0 0;
}

.gallery-card .card-media {
  height: clamp(320px, 33vw, 480px);
  object-fit: cover;
  background: #050505;
}

.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(7, 7, 7, 0.7));
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: rgba(179, 0, 27, 0.78);
  box-shadow: 0 0 0 0.16rem rgba(179, 0, 27, 0.2);
}

.pagination .page-item.active .page-link {
  border-color: rgba(179, 0, 27, 0.74);
  background: linear-gradient(145deg, rgba(179, 0, 27, 0.68), rgba(85, 0, 13, 0.92));
  color: #fff;
}

.social-brand-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
}

.social-icon-fb,
.social-icon-ig {
  background: linear-gradient(145deg, rgba(179, 0, 27, 0.95), rgba(120, 0, 18, 0.95));
}

.gallery-modal .modal-dialog {
  max-width: min(96vw, 1520px);
}

.gallery-modal .modal-content {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(7, 7, 7, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-modal-media-wrap {
  min-height: 72vh;
  height: min(84vh, 940px);
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(2, 2, 2, 0.92);
}

.gallery-modal-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

video.gallery-modal-media {
  background: #000;
}

.webgl-enhancer-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  mix-blend-mode: normal;
  opacity: 0.95;
}

.webgl-disabled .webgl-enhancer-canvas {
  display: none;
}

#entryLoader {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: #000;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
}

.entry-loader__inner {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  justify-items: center;
}

.entry-loader__logo {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.6vw, 1.05rem);
}

.entry-loader__line {
  width: min(220px, 44vw);
  height: 1px;
  background: var(--luxury-red);
  transform-origin: left center;
}

.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 1550;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.95);
}

.transition-overlay__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.transition-overlay__accent {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--luxury-red), transparent);
}

.transition-overlay.is-active {
  opacity: 1;
}

#luxuryCursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  z-index: 1700;
  pointer-events: none;
  transition:
    width 0.24s ease,
    height 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

#luxuryCursor.is-active {
  width: 34px;
  height: 34px;
  border-color: rgba(179, 0, 27, 0.9);
  background: rgba(179, 0, 27, 0.14);
}

html.luxury-motion-ready:not(.reduced-motion) [data-luxury-reveal] {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
}

[data-luxury-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reduced-motion .hero-media,
.reduced-motion .hero-card,
.reduced-motion .service-card,
.reduced-motion .blog-card,
.reduced-motion .gallery-card,
.reduced-motion .btn {
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 991px) {
  .hero-card {
    transform: none;
  }

  #luxuryCursor {
    display: none;
  }

  .chapter-corner {
    width: 26px;
    height: 26px;
  }

  .gallery-modal-media-wrap {
    min-height: 52vh;
    height: min(72vh, 720px);
  }
}
