:root {
  --ink: #061a18;
  --paper: #f7fff8;
  --mint: #65ffd0;
  --gold: #f7cf78;
  --coral: #ff6b6b;
  --purple: #7d35b2;
  --white: #f8fffb;
  --line: rgba(248, 255, 251, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #021a18;
  overflow-x: hidden;
}

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

#energy-canvas,
.fx-shell,
.fx-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#energy-canvas {
  z-index: 2;
  mix-blend-mode: screen;
}

.fx-shell {
  z-index: 1;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(101, 255, 208, 0.2), transparent 22rem),
    linear-gradient(110deg, rgba(2, 26, 24, 0.58), rgba(8, 55, 49, 0.34), rgba(31, 9, 37, 0.28)),
    url("./assets/luxury-clean-hero.png") center/cover;
  background-blend-mode: screen, multiply, normal;
  filter: saturate(1.22) contrast(1.04) brightness(1.08);
}

.fx-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 82%, rgba(101, 255, 208, 0.12), transparent 24rem),
    radial-gradient(circle at 72% 20%, rgba(247, 207, 120, 0.14), transparent 20rem);
  mix-blend-mode: screen;
}

.fx-orbit {
  z-index: 4;
  display: grid;
  place-items: center;
}

.fx-orbit span {
  position: absolute;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(101, 255, 208, 0.24);
  border-radius: 50%;
  animation: orbitSpin 16s linear infinite;
}

.fx-orbit span:nth-child(2) {
  width: min(48vw, 540px);
  border-color: rgba(247, 207, 120, 0.25);
  animation-duration: 11s;
  animation-direction: reverse;
}

.fx-orbit span:nth-child(3) {
  width: min(28vw, 320px);
  border-color: rgba(255, 107, 107, 0.24);
  animation-duration: 7s;
}

.page {
  position: relative;
  z-index: 5;
}

.service-nav {
  position: fixed;
  inset: 24px clamp(18px, 4vw, 58px) auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 255, 251, 0.84);
}

.service-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.service-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.service-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0,0,0,.28)) drop-shadow(0 0 14px rgba(101,255,208,.3));
}

.service-nav a:not(.service-brand) {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 7vw, 110px) clamp(54px, 8vw, 90px);
}

.service-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 1100px;
  margin: 22px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.2rem, 14vw, 13.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.service-lead {
  max-width: 720px;
  margin: 34px 0 0 auto;
  color: rgba(248,255,251,.8);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.service-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: flex-end;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-btn:hover {
  transform: translateY(-5px) scale(1.02);
}

.service-btn.primary {
  background: linear-gradient(135deg, var(--mint), #fff3a8 56%, var(--coral));
  color: #032421;
  box-shadow: 0 24px 70px rgba(101,255,208,.28);
}

.service-btn.ghost {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(70px, 10vw, 130px) clamp(18px, 7vw, 110px);
  background: linear-gradient(135deg, rgba(2, 26, 24, .76), rgba(8, 45, 41, .62));
  backdrop-filter: blur(16px);
}

.service-body h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.88;
}

.service-body p {
  color: rgba(248,255,251,.74);
  line-height: 1.75;
}

.detail-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.detail-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.detail-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.faq-slice {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 7vw, 110px);
  background: linear-gradient(135deg, rgba(248,255,251,.74), rgba(231,255,247,.58));
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.faq-slice h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.service-faq-list {
  border-top: 1px solid rgba(7,22,21,.16);
}

.service-faq-item {
  border-top: 1px solid rgba(7,22,21,.16);
}

.service-faq-item:first-child {
  border-top: 0;
}

.service-faq-item summary {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 34px;
  gap: 26px;
  align-items: center;
  min-height: 86px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary span {
  color: var(--purple);
  font-weight: 900;
  letter-spacing: .18em;
}

.service-faq-item summary strong {
  margin: 0;
  font-size: 1.2rem;
}

.service-faq-item summary i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7,22,21,.2);
  border-radius: 50%;
  color: var(--purple);
  font-style: normal;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-faq-item[open] summary i {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.service-faq-item p {
  max-width: 820px;
  margin: -8px 0 26px 106px;
  color: rgba(7,22,21,.66);
  line-height: 1.7;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 58px);
  background: #021a18;
  color: rgba(248,255,251,.62);
  font-size: .86rem;
}

.service-footer a {
  color: rgba(248,255,251,.9);
  font-family: "Playfair Display", Georgia, serif;
}

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

@media (max-width: 860px) {
  .service-body {
    grid-template-columns: 1fr;
  }

  .service-lead,
  .service-actions {
    margin-left: 0;
    justify-content: flex-start;
  }

  .service-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .service-nav {
    position: fixed;
    inset: 10px 10px auto;
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(3, 24, 23, .82);
    box-shadow: 0 12px 36px rgba(0,0,0,.25);
    backdrop-filter: blur(18px);
  }

  .service-brand {
    min-width: 0;
    gap: 8px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .service-brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .service-nav a:not(.service-brand) {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    flex: 0 0 auto;
  }

  .service-hero {
    min-width: 0;
    min-height: 100svh;
    padding: 116px 18px 48px;
  }

  .service-hero > div,
  .service-kicker,
  .service-lead,
  .service-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.5vw, 3.1rem);
    line-height: 0.88;
    overflow-wrap: break-word;
  }

  .service-lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .service-btn {
    min-height: 50px;
    padding-inline: 17px;
    font-size: 0.88rem;
  }

  .service-body,
  .faq-slice {
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-body h2,
  .faq-slice h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .detail-item,
  .service-faq-item summary {
    grid-template-columns: 1fr;
  }

  .service-faq-item summary {
    grid-template-columns: 1fr 34px;
    gap: 14px;
  }

  .service-faq-item summary span {
    display: none;
  }

  .service-faq-item p {
    margin-left: 0;
  }

  .service-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

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