:root {
  --bg: #08070a;
  --bg-soft: #0e0c11;
  --surface: #151219;
  --surface-strong: #1c1820;
  --text: #f8f4ed;
  --muted: #b5adb9;
  --muted-dark: #827a87;
  --gold: #d8aa5d;
  --gold-light: #f4dfad;
  --gold-dark: #87642d;
  --rose: #bf3f77;
  --iris: #947ce7;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --container: 1180px;
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 38px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.22, 0.8, 0.26, 1);
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--gold-light);
  color: #211706;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(70vmax 55vmax at 10% -10%, rgba(216, 170, 93, 0.16), transparent 62%),
    radial-gradient(55vmax 55vmax at 105% 30%, rgba(148, 124, 231, 0.12), transparent 64%),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 55%, var(--bg));
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

#sparkles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.grain {
  position: fixed;
  inset: -10%;
  z-index: 2;
  width: 120%;
  height: 120%;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Aurora signature: holographic edge used on the page's key panels ---------- */
.aurora {
  position: relative;
  border: 1px solid transparent;
  background-origin: border-box;
}

.aurora-spin {
  animation: aurora-rotate 16s linear infinite;
}

@keyframes aurora-rotate {
  to { --angle: 360deg; }
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-spin { animation: none; }
}

.cursor-glow {
  position: relative;
  isolation: isolate;
}

.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(244, 223, 173, 0.16), rgba(148, 124, 231, 0.08) 42%, transparent 68%);
  transition: opacity 0.4s ease;
}

.cursor-glow:hover::after {
  opacity: 1;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.preloader-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(216, 170, 93, 0.26);
}

.loading-line {
  position: relative;
  width: 144px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.loading-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  animation: loading 1.1s ease-in-out infinite;
}

@keyframes loading {
  from { transform: translateX(-100%); }
  to { transform: translateX(340%); }
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.topbar.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 10, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 0 28px rgba(216, 170, 93, 0.16);
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transition: right 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  right: 0;
}

.btn,
.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn-primary,
.nav-cta {
  color: #211706;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 58%, var(--gold-dark));
  box-shadow: 0 14px 34px rgba(216, 170, 93, 0.22);
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(216, 170, 93, 0.34);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  border-color: rgba(244, 223, 173, 0.58);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.hamb {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.hamb span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 9px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.hamb[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.hamb[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamb[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 86px;
  right: 18px;
  left: 18px;
  z-index: 99;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 12, 17, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: block;
  animation: menu-in 0.3s var(--ease);
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  display: block;
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.mobile-menu .mobile-menu-cta {
  margin-top: 8px;
  border: 0;
  border-radius: 14px;
  color: #211706;
  background: var(--gold-light);
  text-align: center;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px 0 62px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 34%;
  filter: saturate(0.86) contrast(1.04);
  will-change: transform;
  transition: transform 0.2s linear;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 10, 0.98) 0%, rgba(8, 7, 10, 0.88) 40%, rgba(8, 7, 10, 0.2) 72%, rgba(8, 7, 10, 0.34)),
    linear-gradient(0deg, var(--bg), transparent 22%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.hero-content {
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(244, 223, 173, 0.22);
  border-radius: 999px;
  background: rgba(216, 170, 93, 0.08);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 800px;
  margin: 24px 0 22px;
  font-size: clamp(44px, 7.2vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.kinetic-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.kinetic-word span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}

.hero-content h1.is-revealed .kinetic-word span {
  transform: translateY(0);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-highlights {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.hero-highlights span {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
}

.hero-accent {
  align-self: end;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(rgba(12, 10, 14, 0.74), rgba(12, 10, 14, 0.74)),
    conic-gradient(from 200deg, rgba(216, 170, 93, 0.5), rgba(148, 124, 231, 0.4), rgba(216, 170, 93, 0.5));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translateY(18px);
}

.hero-accent-image {
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
}

.hero-accent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-accent:hover img {
  transform: scale(1.045);
}

.hero-accent-copy {
  padding: 20px;
}

.hero-accent-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-accent-copy strong {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 44px;
}

.section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold-light);
}

.section h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-head > p,
.experience-copy > p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(148, 124, 231, 0.07);
  filter: blur(90px);
  pointer-events: none;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(260px, 340px));
  gap: 18px;
}

.visual-service {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.visual-service--wide {
  grid-row: 1 / 3;
}

.visual-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.85s;
}

.visual-service--wide img {
  object-position: center 22%;
}

.visual-service:nth-child(2) img {
  object-position: center 29%;
}

.visual-service:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.visual-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 4, 7, 0.9) 100%);
}

.visual-service-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
}

.visual-service-content span {
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-service-content h3 {
  max-width: 520px;
  margin: 8px 0 8px;
  font-size: clamp(21px, 2.8vw, 32px);
  line-height: 1.12;
}

.visual-service-content p {
  max-width: 520px;
  margin-bottom: 0;
  color: #cdc6cf;
  font-size: 14px;
  line-height: 1.55;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.service-details > div {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.service-details > div:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 223, 173, 0.36);
}

.service-details span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.service-details strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
}

.service-details p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.results-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.orbit-carousel {
  position: relative;
}

.orbit-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 36px) clamp(12px, 2vw, 18px) clamp(38px, 5vw, 48px);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(148, 124, 231, 0.16), transparent 58%),
    radial-gradient(90% 120% at 0% 100%, rgba(191, 63, 119, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    conic-gradient(from var(--angle, 0deg), rgba(216, 170, 93, 0.7), rgba(148, 124, 231, 0.56), rgba(191, 63, 119, 0.54), rgba(216, 170, 93, 0.7));
  background-origin: border-box;
  background-clip: padding-box, padding-box, padding-box, border-box;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  perspective: 1800px;
  animation: aurora-rotate 18s linear infinite;
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-stage { animation: none; }
}

.orbit-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 7, 10, 0.98) 0%, transparent 14%, transparent 86%, rgba(8, 7, 10, 0.98) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 84%, rgba(255, 255, 255, 0.02));
  opacity: 0.96;
}

.orbit-stage::after {
  content: "DIGITAL BEAUTY SHOWCASE";
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(244, 223, 173, 0.22);
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.48);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.orbit-track {
  position: relative;
  height: clamp(390px, 51vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.orbit-slide {
  position: absolute;
  width: min(420px, 72vw);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #0c0a0e;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  cursor: grab;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s var(--ease), filter 0.6s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform, opacity, filter;
}

.orbit-slide:active {
  cursor: grabbing;
}

.orbit-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 26%, transparent 74%, rgba(244, 223, 173, 0.1));
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}

.orbit-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}

.orbit-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 12, 0.06) 0%, transparent 32%, rgba(0, 0, 0, 0.14) 56%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(244, 223, 173, 0.08), transparent 24%, transparent 76%, rgba(148, 124, 231, 0.06));
}

.orbit-slide.is-active {
  box-shadow: 0 0 0 1px rgba(244, 223, 173, 0.45), 0 42px 110px rgba(0, 0, 0, 0.62), 0 0 90px rgba(216, 170, 93, 0.16);
}

.orbit-slide.is-active img {
  transform: scale(1.05);
}

.orbit-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  max-width: 78%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 12, 17, 0.78), rgba(14, 12, 17, 0.58));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s 0.15s, transform 0.45s var(--ease) 0.15s;
}

.orbit-slide.is-active .orbit-caption {
  opacity: 1;
  transform: translateY(0);
}

.orbit-caption span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orbit-caption h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.05;
}

.orbit-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.orbit-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 100%;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 18, 25, 0.86), rgba(20, 18, 25, 0.56));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.orbit-status small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.orbit-status strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
}

.orbit-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  white-space: nowrap;
}

.orbit-counter b {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  color: var(--gold-light);
}

.orbit-counter span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.orbit-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 21px;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.orbit-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: rgba(216, 170, 93, 0.12);
  box-shadow: 0 10px 24px rgba(216, 170, 93, 0.16);
}

.orbit-rail {
  position: relative;
  height: 5px;
  flex: 1 1 180px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.orbit-rail span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), var(--iris), var(--gold-light));
  box-shadow: 0 0 18px rgba(216, 170, 93, 0.28);
  transition: width 0.35s var(--ease);
}

.orbit-thumbs {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.orbit-thumbs::-webkit-scrollbar {
  display: none;
}

.orbit-thumbs button {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s var(--ease), border-color 0.3s, width 0.3s var(--ease), box-shadow 0.3s;
}

.orbit-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-thumbs button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.orbit-thumbs button.is-active {
  width: 56px;
  border-color: var(--gold-light);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(216, 170, 93, 0.42), 0 10px 24px rgba(216, 170, 93, 0.18);
}

.experience-section {
  overflow: hidden;
}

.experience-section::after {
  content: "";
  position: absolute;
  bottom: -18%;
  left: -12%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(191, 63, 119, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.experience-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.experience-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
}

.experience-photo:hover img {
  transform: scale(1.035);
}

.experience-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(244, 223, 173, 0.38);
  border-radius: 50%;
  background: rgba(8, 7, 10, 0.76);
  color: var(--gold-light);
  text-align: center;
  backdrop-filter: blur(12px);
}

.experience-stamp span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.experience-stamp strong {
  font-size: 20px;
  line-height: 1.2;
}

.experience-copy h2 {
  margin-bottom: 22px;
}

.experience-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
}

.experience-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.experience-list > div > span {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 223, 173, 0.26);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
}

.experience-list strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.experience-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.space-video-section {
  padding-top: 30px;
}

.space-video-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 30%, rgba(216, 170, 93, 0.12), transparent 34%),
    linear-gradient(135deg, #050406, var(--surface)),
    conic-gradient(from var(--angle, 0deg), rgba(216, 170, 93, 0.5), rgba(148, 124, 231, 0.46), rgba(191, 63, 119, 0.46), rgba(216, 170, 93, 0.5));
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  box-shadow: var(--shadow);
  animation: aurora-rotate 20s linear infinite;
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .space-video-card { animation: none; }
}

.video-frame {
  position: relative;
  width: 100%;
  justify-self: center;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 223, 173, 0.5);
  border-radius: 50%;
  background: rgba(8, 7, 10, 0.6);
  color: var(--gold-light);
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 0 rgba(216, 170, 93, 0.45);
  transition: opacity 0.4s, transform 0.3s var(--ease), box-shadow 0.3s;
  animation: play-pulse 2.6s ease-out infinite;
}

.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 170, 93, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(216, 170, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 170, 93, 0); }
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-play { animation: none; }
}

.space-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(76svh, 720px);
  display: block;
  justify-self: center;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #050406;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.space-video-label {
  position: static;
  max-width: 540px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.space-video-label span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.space-video-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.location-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
  box-shadow: var(--shadow);
}

.location-info {
  padding: clamp(30px, 5vw, 58px);
}

.location-info h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4.2vw, 48px);
}

.address {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.location-note {
  color: var(--muted);
  font-size: 13px;
}

.hours-list {
  margin: 28px 0 4px;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--gold-light);
}

.map {
  min-height: 560px;
  border-left: 1px solid var(--line);
  filter: saturate(0.78) contrast(1.04);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding-top: 20px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 78px) 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 170, 93, 0.22), transparent 46%),
    radial-gradient(circle at 100% 100%, rgba(148, 124, 231, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    conic-gradient(from 140deg, rgba(216, 170, 93, 0.55), rgba(191, 63, 119, 0.4), rgba(148, 124, 231, 0.45), rgba(216, 170, 93, 0.55));
  background-origin: border-box;
  background-clip: padding-box, padding-box, padding-box, border-box;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  margin-inline: auto;
}

.cta-panel p {
  max-width: 650px;
  margin: 16px auto 28px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 44px 0 96px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-content,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.footer-brand strong {
  font-family: var(--font-display);
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 5px;
}

.developer-credit {
  display: grid;
  justify-items: end;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.developer-credit:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 223, 173, 0.38);
  background: rgba(216, 170, 93, 0.07);
}

.developer-credit span,
.developer-credit small {
  color: var(--muted-dark);
  font-size: 10px;
}

.developer-credit strong {
  margin: 3px 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 15px;
}

.developer-credit--wide {
  position: relative;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: start;
  column-gap: 22px;
  width: 100%;
  margin-top: 24px;
  padding: 22px 26px;
  border-color: rgba(244, 223, 173, 0.2);
  background:
    radial-gradient(circle at 0 50%, rgba(216, 170, 93, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.developer-credit--wide span {
  grid-row: 1 / 3;
  padding-right: 22px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-credit--wide strong {
  margin: 0;
  font-size: 21px;
}

.developer-credit--wide small {
  font-size: 11px;
}

.developer-credit--wide b {
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--gold-light);
  color: #211706;
  font-size: 12px;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #24c875;
  box-shadow: 0 14px 40px rgba(36, 200, 117, 0.28);
  color: #05160d;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s, box-shadow 0.25s;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(36, 200, 117, 0.36);
}

.mobile-bottom {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 4, 7, 0.95);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 25px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamb {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
  }

  .service-showcase {
    grid-template-rows: repeat(2, 290px);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 7, 10, 0.97), rgba(8, 7, 10, 0.74) 65%, rgba(8, 7, 10, 0.42)),
      linear-gradient(0deg, var(--bg), transparent 25%);
  }

  .hero-grid,
  .experience-grid,
  .location-shell {
    grid-template-columns: 1fr;
  }

  .hero-accent {
    max-width: 470px;
    display: grid;
    grid-template-columns: 160px 1fr;
    transform: none;
  }

  .hero-accent-image {
    aspect-ratio: 1 / 1;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 16px;
  }

  .service-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 320px;
  }

  .visual-service--wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .experience-photo {
    max-width: 620px;
  }

  .space-video-card video {
    max-height: 680px;
  }

  .map {
    min-height: 380px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 11.5px;
  }

  .brand-text span {
    display: none;
  }

  .mobile-menu {
    top: 80px;
  }

  .hero {
    padding: 102px 0 44px;
  }

  .hero-media {
    inset: 0 0 31%;
  }

  .hero-media img {
    object-position: 58% 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 7, 10, 0.12), rgba(8, 7, 10, 0.68) 35%, var(--bg) 68%),
      linear-gradient(90deg, rgba(8, 7, 10, 0.3), transparent);
  }

  .hero-content {
    padding-top: 54vw;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-highlights li {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 15px;
  }

  .hero-highlights span {
    margin: 0;
  }

  .hero-accent {
    grid-template-columns: 125px 1fr;
  }

  .hero-accent-copy {
    align-self: center;
    padding: 16px;
  }

  .hero-accent-copy strong {
    font-size: 14px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .service-showcase {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .visual-service,
  .visual-service--wide {
    grid-column: auto;
    min-height: 440px;
  }

  .visual-service:nth-child(2),
  .visual-service:nth-child(3) {
    min-height: 390px;
  }

  .orbit-stage {
    border-radius: 27px;
  }

  .orbit-track {
    height: 480px;
  }

  .orbit-slide {
    width: 79vw;
    border-radius: 22px;
  }

  .orbit-controls {
    gap: 12px;
    padding-inline: 0;
  }

  .orbit-status {
    padding: 13px 14px;
  }

  .orbit-caption {
    max-width: calc(100% - 36px);
  }

  .orbit-thumbs {
    flex-basis: 100%;
    order: 5;
  }

  .orbit-rail {
    order: 4;
    min-width: 100%;
  }

  .experience-photo img {
    aspect-ratio: 4 / 5.3;
  }

  .experience-stamp {
    width: 96px;
    height: 96px;
  }

  .hours-list > div {
    display: block;
  }

  .hours-list strong {
    display: block;
    margin-top: 4px;
  }

  .map {
    min-height: 320px;
  }

  .footer {
    padding-bottom: 120px;
  }

  .footer-content,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
  }

  .footer-bottom p + p {
    margin-top: 6px;
  }

  .developer-credit {
    justify-items: start;
    margin-top: 18px;
  }

  .developer-credit--wide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
    padding: 20px;
  }

  .developer-credit--wide span,
  .developer-credit--wide strong,
  .developer-credit--wide small,
  .developer-credit--wide b {
    grid-column: auto;
    grid-row: auto;
  }

  .developer-credit--wide span {
    padding: 0;
    border: 0;
  }

  .developer-credit--wide b {
    margin-top: 10px;
  }

  .space-video-label {
    max-width: none;
    padding: 6px 4px 10px;
  }

  .space-video-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .space-video-card video {
    width: min(100%, 390px);
    max-height: none;
  }

  .float-whatsapp {
    display: none;
  }

  .mobile-bottom {
    position: fixed;
    left: 50%;
    bottom: 10px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(calc(100% - 18px), 360px);
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(8, 7, 10, 0.86);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }

  .mobile-bottom a {
    flex: 1 1 0;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 800;
  }

  .mobile-bottom .primary {
    background: #24c875;
    color: #05160d;
  }

  .mobile-bottom .secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  #sparkles {
    display: none;
  }
}

/* ============================================================
   2026 Premium Upgrade — smoother flow, futuristic motion layer,
   accessories boutique video, stronger conversion affordances.
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 180;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.035);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold-light), var(--iris));
  box-shadow: 0 0 26px rgba(244, 223, 173, 0.55);
  transition: width 0.12s linear;
}

.lux-orb {
  position: fixed;
  z-index: -1;
  width: 34vmax;
  height: 34vmax;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: orb-float 14s var(--ease) infinite alternate;
}

.lux-orb--one {
  top: 12vh;
  left: -14vw;
  background: radial-gradient(circle, rgba(216, 170, 93, 0.34), transparent 64%);
}

.lux-orb--two {
  right: -17vw;
  bottom: 12vh;
  background: radial-gradient(circle, rgba(148, 124, 231, 0.28), transparent 66%);
  animation-delay: -6s;
}

@keyframes orb-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(7vw, -4vh, 0) scale(1.16); }
}

.nav-links a.is-active {
  color: var(--text);
}

.nav-links a.is-active::after {
  right: 0;
  box-shadow: 0 0 18px rgba(244, 223, 173, 0.5);
}

.btn,
.nav-cta,
.float-whatsapp,
.mobile-bottom a {
  position: relative;
  overflow: hidden;
}

.btn::after,
.nav-cta::after,
.float-whatsapp::after,
.mobile-bottom a::after {
  content: "";
  position: absolute;
  inset: -80% -35%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 62%);
  transform: translateX(-115%) rotate(8deg);
  transition: transform 0.62s var(--ease);
}

.btn:hover::after,
.nav-cta:hover::after,
.float-whatsapp:hover::after,
.mobile-bottom a:hover::after {
  transform: translateX(115%) rotate(8deg);
}

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

.signature-flow-section {
  padding-top: clamp(40px, 6vw, 74px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.flow-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.016)),
    conic-gradient(from var(--angle, 0deg), rgba(216,170,93,0.44), rgba(148,124,231,0.42), rgba(191,63,119,0.38), rgba(216,170,93,0.44));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  animation: aurora-rotate 22s linear infinite;
}

.flow-panel::before,
.flow-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.flow-panel::before {
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(244,223,173,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,223,173,0.10) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 72% 50%, #000, transparent 72%);
}

.flow-panel::after {
  top: 17%;
  right: 8%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 28px rgba(244,223,173,0.62);
  animation: scan-line 3.8s var(--ease) infinite;
}

@keyframes scan-line {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(210px); opacity: 0.95; }
}

.flow-copy,
.flow-steps {
  position: relative;
  z-index: 2;
}

.flow-copy h2 {
  margin: 13px 0 18px;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.flow-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(244,223,173,0.13), transparent 44%),
    rgba(8, 7, 10, 0.46);
  backdrop-filter: blur(18px);
  transition: transform 0.42s var(--ease), border-color 0.42s, background 0.42s;
}

.flow-step:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(244, 223, 173, 0.32);
}

.flow-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(244,223,173,0.28);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
  box-shadow: inset 0 0 16px rgba(216,170,93,0.08);
}

.flow-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
}

.flow-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.accessories-section {
  overflow: hidden;
  padding-top: clamp(66px, 8vw, 116px);
  padding-bottom: clamp(70px, 9vw, 124px);
}

.accessories-section::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 52%;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,170,93,0.15), transparent 62%);
  filter: blur(70px);
}

.accessories-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 430px);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.accessories-copy h2 {
  margin: 13px 0 18px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.accessories-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.accessory-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 2px;
}

.accessory-chips span {
  padding: 10px 13px;
  border: 1px solid rgba(244,223,173,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #ded5e1;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.boutique-video-card {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(244,223,173,0.19), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    conic-gradient(from var(--angle, 0deg), rgba(216,170,93,0.68), rgba(191,63,119,0.48), rgba(148,124,231,0.52), rgba(216,170,93,0.68));
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  box-shadow: 0 36px 100px rgba(0,0,0,0.5), 0 0 80px rgba(216,170,93,0.12);
  animation: aurora-rotate 18s linear infinite;
}

.boutique-video-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(244,223,173,0.18), transparent 44%, rgba(148,124,231,0.16));
  filter: blur(18px);
  opacity: 0.68;
}

.video-frame--phone video,
.boutique-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #050406;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

.video-caption-glass {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(8, 7, 10, 0.66);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.34);
  pointer-events: none;
}

.video-caption-glass span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-caption-glass strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.32;
}

.video-card {
  transform-style: preserve-3d;
}

.video-card:hover .video-caption-glass,
.video-card:hover .space-video-label {
  transform: translateY(-4px);
}

.space-video-label,
.video-caption-glass {
  transition: transform 0.35s var(--ease);
}

.reveal[data-reveal="left"] {
  transform: translateX(-30px);
}

.reveal[data-reveal="right"] {
  transform: translateX(30px);
}

.reveal[data-reveal="zoom"] {
  transform: translateY(18px) scale(0.96);
}

.reveal.visible[data-reveal="left"],
.reveal.visible[data-reveal="right"],
.reveal.visible[data-reveal="zoom"] {
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1040px) {
  .service-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-panel {
    grid-template-columns: 1fr;
  }
}

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

  .boutique-video-card {
    justify-self: center;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .scroll-progress {
    height: 2px;
  }

  .lux-orb {
    opacity: 0.18;
  }

  .service-details,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-panel {
    padding: 22px;
    border-radius: 27px;
  }

  .flow-step {
    min-height: auto;
    padding: 20px;
  }

  .accessories-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .boutique-video-card {
    width: min(100%, 390px);
    border-radius: 28px;
  }

  .video-caption-glass {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }
}

@media (max-width: 640px) {
  .orbit-stage::after {
    top: 12px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .orbit-track {
    height: 430px;
  }

  .orbit-slide {
    width: 82vw;
  }

  .orbit-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px 15px;
  }

  .orbit-caption h3 {
    font-size: 20px;
  }

  .orbit-status {
    gap: 10px;
    align-items: flex-end;
  }

  .orbit-counter b {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-orb,
  .flow-panel,
  .flow-panel::after,
  .boutique-video-card {
    animation: none !important;
  }
}
