:root {
  color-scheme: dark;
  --black: #050506;
  --ink: #111113;
  --charcoal: #18191c;
  --graphite: #25272c;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f6f3ec;
  --muted: #b9b7b1;
  --soft: #ded8cd;
  --gold: #d2aa52;
  --gold-2: #f0d187;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --wrap: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -4;
  background:
    radial-gradient(circle at 16% 24%, rgba(210, 170, 82, 0.16), transparent 20rem),
    radial-gradient(circle at 84% 34%, rgba(240, 209, 135, 0.075), transparent 24rem),
    radial-gradient(circle at 50% 84%, rgba(210, 170, 82, 0.08), transparent 26rem),
    linear-gradient(180deg, #070708, #050506 48%, #0b0b0d);
  animation: goldGlowDrift 20s ease-in-out infinite alternate;
}

body::after {
  z-index: -3;
  background:
    linear-gradient(118deg, transparent 0 17%, rgba(210, 170, 82, 0.04) 17% 17.4%, transparent 17.4% 42%, rgba(210, 170, 82, 0.115) 42% 42.35%, transparent 42.35% 100%),
    linear-gradient(58deg, transparent 0 55%, rgba(240, 209, 135, 0.045) 55% 55.35%, transparent 55.35% 100%),
    linear-gradient(132deg, transparent 0 68%, rgba(210, 170, 82, 0.055) 68% 68.3%, transparent 68.3% 100%);
  background-size: 780px 780px, 620px 620px, 920px 920px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.22));
  opacity: 0.84;
  animation: royaltyLineDrift 30s linear infinite;
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
}

.ambient-line,
.ambient-diamond {
  position: absolute;
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}

.ambient-line {
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 170, 82, 0.58), rgba(240, 209, 135, 0.28), transparent);
  box-shadow: 0 0 14px rgba(210, 170, 82, 0.16);
  transform-origin: center;
  animation: goldFlowLine 24s ease-in-out infinite;
}

.line-a {
  left: -8vw;
  top: 28vh;
  transform: rotate(-22deg);
}

.line-b {
  right: -12vw;
  top: 52vh;
  animation-delay: 6s;
  transform: rotate(17deg);
}

.line-c {
  left: 10vw;
  bottom: 13vh;
  animation-delay: 12s;
  transform: rotate(7deg);
}

.line-d {
  right: 18vw;
  top: 76vh;
  animation-delay: 16s;
  transform: rotate(-12deg);
}

.ambient-diamond {
  --sparkle-peak: 0.42;
  --sparkle-glow: 0.24;
  --sparkle-fill: 0.84;
  width: 18px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 45% 43%, rgba(255, 245, 203, 0.95) 0 16%, rgba(240, 209, 135, 0.56) 35%, rgba(210, 170, 82, 0.18) 64%, transparent 72%),
    linear-gradient(135deg, rgba(255, 236, 166, var(--sparkle-fill)), rgba(210, 170, 82, 0.2));
  box-shadow:
    0 0 15px rgba(210, 170, 82, var(--sparkle-glow)),
    inset 0 0 8px rgba(255, 244, 196, 0.24);
  clip-path: path("M 9 0 C 10.9 8.1 12.1 10.4 18 15 C 12.1 19.6 10.9 21.9 9 30 C 7.1 21.9 5.9 19.6 0 15 C 5.9 10.4 7.1 8.1 9 0 Z");
  transform: none;
  animation: cardDiamondFloat 18s ease-in-out infinite;
}

.ambient-diamond::before,
.ambient-diamond::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 88%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 202, 0.78), transparent);
  transform: translate(-50%, -50%) rotate(-28deg);
}

.ambient-diamond::after {
  width: 1px;
  height: 78%;
  background: linear-gradient(180deg, transparent, rgba(255, 245, 202, 0.7), transparent);
  transform: translate(-50%, -50%);
}

.diamond-a {
  --sparkle-peak: 0.34;
  --sparkle-glow: 0.18;
  --sparkle-fill: 0.62;
  left: 7vw;
  top: 58vh;
}

.diamond-b {
  --sparkle-peak: 0.58;
  --sparkle-glow: 0.34;
  --sparkle-fill: 0.9;
  right: 12vw;
  top: 20vh;
  animation-delay: 5s;
}

.diamond-c {
  --sparkle-peak: 0.22;
  --sparkle-glow: 0.12;
  --sparkle-fill: 0.48;
  right: 32vw;
  bottom: 13vh;
  animation-delay: 9s;
}

.diamond-d {
  --sparkle-peak: 0.42;
  --sparkle-glow: 0.22;
  --sparkle-fill: 0.72;
  left: 28vw;
  top: 18vh;
  animation-delay: 3s;
  scale: 0.72;
}

.diamond-e {
  --sparkle-peak: 0.68;
  --sparkle-glow: 0.38;
  --sparkle-fill: 0.95;
  left: 54vw;
  top: 68vh;
  animation-delay: 12s;
  scale: 0.84;
}

.diamond-f {
  --sparkle-peak: 0.18;
  --sparkle-glow: 0.1;
  --sparkle-fill: 0.42;
  right: 6vw;
  bottom: 28vh;
  animation-delay: 15s;
  scale: 0.68;
}

@keyframes goldGlowDrift {
  from {
    transform: translate3d(-1.2rem, -0.8rem, 0) scale(1);
  }

  to {
    transform: translate3d(1.2rem, 0.8rem, 0) scale(1.035);
  }
}

@keyframes royaltyLineDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 170px 220px, -150px 180px, 120px -210px;
  }
}

@keyframes goldFlowLine {
  0%,
  100% {
    opacity: 0;
    translate: -22px 22px;
  }
  28%,
  74% {
    opacity: 0.62;
  }
  50% {
    translate: 34px -26px;
  }
}

@keyframes cardDiamondFloat {
  0%,
  100% {
    opacity: 0;
    translate: -10px 20px;
  }
  28%,
  76% {
    opacity: var(--sparkle-peak);
  }
  52% {
    translate: 16px -18px;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 5, 6, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.94);
  border-color: var(--line);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(210, 170, 82, 0.45);
}

.nav-menu {
  position: fixed;
  inset: 118px 16px auto;
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(17, 17, 19, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a,
.nav-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-call:hover,
.nav-call:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-ctas {
  order: 3;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}

.nav-book,
.nav-quote,
.nav-call {
  min-height: 44px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.nav-book {
  background: var(--white);
  color: var(--black);
}

.nav-quote,
.nav-call {
  border: 1px solid rgba(210, 170, 82, 0.5);
  color: var(--gold-2);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  overflow: visible;
  isolation: isolate;
  background: var(--black);
}

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

.hero-media {
  display: flex;
  inset: 0 0 auto;
  height: min(760px, 100svh);
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  background: var(--black);
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0), var(--black) 78%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.98) contrast(1.08) brightness(0.66);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.22) 28%, rgba(5, 5, 6, 0.94) 62%, var(--black)),
    linear-gradient(90deg, rgba(5, 5, 6, 0.72), rgba(5, 5, 6, 0.16) 48%, rgba(5, 5, 6, 0.58));
}

.hero-inner {
  display: grid;
  gap: 34px;
  align-items: start;
  padding: 136px 0 52px;
}

.hero-content {
  order: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 14vw, 6.6rem);
}

.hero h1.reveal {
  opacity: 0;
  transform: translate3d(-58px, 18px, 0) scale(0.985);
  filter: blur(8px);
  transition: none;
}

.hero h1.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  animation: hero-title-enter 1550ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

@keyframes hero-title-enter {
  0% {
    opacity: 0;
    transform: translate3d(-64px, 20px, 0) scale(0.982);
    filter: blur(9px);
  }

  62% {
    opacity: 1;
    transform: translate3d(4px, -2px, 0) scale(1.004);
    filter: blur(0.8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 9vw, 4.8rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 650px;
  color: var(--soft);
  font-size: clamp(1.05rem, 3.8vw, 1.3rem);
}

.slogan {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  font-weight: 850;
}

.choice-helper {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 750;
}

.hero-actions,
.quote-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--white);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-2);
}

.button-secondary,
.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(210, 170, 82, 0.7);
  background: rgba(210, 170, 82, 0.13);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-phone {
  order: 2;
  width: min(100%, 350px);
  justify-self: center;
}

.hero-mobile-image {
  display: none;
  order: 3;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 170, 82, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.hero-mobile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  width: min(82vw, 320px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(240, 209, 135, 0.36);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    #080809;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(210, 170, 82, 0.16);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 70px;
  height: 18px;
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.88);
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tiktok-embed-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #111113;
}

.hero-video,
.tiktok-frame,
.tiktok-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.hero-video {
  display: none;
  object-fit: cover;
  object-position: center;
  background: #050506;
}

.tiktok-frame:not([src]) {
  display: none;
}

.tiktok-fallback {
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.tiktok-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.7));
}

.tiktok-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.06);
}

.tiktok-fallback span {
  position: relative;
  z-index: 1;
  margin: 0 18px 82px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.62);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.tiktok-embed-card.has-embed .tiktok-fallback {
  display: none;
}

.tiktok-embed-card.has-embed .tiktok-frame {
  display: block;
}

.tiktok-embed-card.has-local-video .hero-video {
  display: block;
}

.tiktok-embed-card.has-local-video .tiktok-frame,
.tiktok-embed-card.has-local-video .tiktok-fallback {
  display: none;
}

.phone-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.phone-overlay span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-overlay strong {
  color: var(--white);
  max-width: 17ch;
  font-size: 1.02rem;
  line-height: 1.12;
}

.phone-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 14px;
  color: var(--soft);
  font-weight: 900;
}

.phone-caption a {
  color: var(--gold-2);
}

.trust {
  border-block: 1px solid var(--line);
  background: #0b0b0d;
}

.trust-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.trust-grid div {
  display: grid;
  gap: 4px;
  padding: 22px 0;
  background: #0b0b0d;
}

.trust-grid strong {
  color: var(--white);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.step-grid,
.service-grid,
.review-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.step,
.service-card,
.review,
.quote-form,
.result-notes,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.step,
.review,
.faq details {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.step::before,
.review::before,
.faq details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(240, 209, 135, 0.2) 48%, transparent 58% 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.step:hover,
.step:focus-within,
.review:hover,
.review:focus-within,
.faq details:hover,
.faq details:focus-within {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 82, 0.54);
  background: linear-gradient(180deg, rgba(210, 170, 82, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.step:hover::before,
.step:focus-within::before,
.review:hover::before,
.review:focus-within::before,
.faq details:hover::before,
.faq details:focus-within::before {
  animation: cardSheen 780ms ease both;
}

@keyframes cardSheen {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }

  28% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

.step {
  padding: 24px;
}

.step span {
  color: var(--gold-2);
  font-weight: 900;
}

.step p,
.service-card p,
.result-notes p,
.review blockquote,
.footer p,
.faq p,
.quote-copy p {
  color: var(--muted);
}

.services,
.faq {
  position: relative;
  background: transparent;
}

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

.service-card {
  color: inherit;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0 18px 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 82, 0.54);
  background: linear-gradient(180deg, rgba(210, 170, 82, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  outline: none;
}

.service-card.feature {
  background: linear-gradient(135deg, rgba(210, 170, 82, 0.22), rgba(255, 255, 255, 0.05));
}

.service-image {
  width: 100%;
  height: 168px;
  margin: 18px 0 2px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(0.95) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.08;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-card .best-for {
  color: var(--soft);
}

.service-points {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card:hover .service-image {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}

.service-card a,
.service-card span {
  color: var(--gold-2);
  font-weight: 900;
}

.card-cta {
  width: fit-content;
  margin-top: auto;
  padding: 9px 11px;
  border: 1px solid rgba(210, 170, 82, 0.45);
  border-radius: var(--radius);
  background: rgba(210, 170, 82, 0.1);
  color: var(--white);
  font-size: 0.82rem;
}

.service-card-actions {
  display: contents;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 9px;
  border: 1px solid rgba(210, 170, 82, 0.5);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.results-grid {
  display: grid;
  gap: 18px;
}

.result-main {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.result-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.result-main figcaption {
  padding: 14px 16px;
  color: var(--soft);
  font-size: 0.95rem;
}

.result-notes {
  padding: 24px;
  align-self: stretch;
}

.result-notes ul {
  padding-left: 20px;
  color: var(--soft);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(1.04);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.06);
}

.project-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

.area-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.area-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  font-weight: 900;
}

.review {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 24px;
}

.review::after {
  content: "★★★★★";
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: var(--gold-2);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-7deg);
}

.review > * {
  position: relative;
  z-index: 1;
}

.review blockquote {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.review blockquote::before {
  content: open-quote;
}

.review blockquote::after {
  content: close-quote;
}

.review figcaption {
  font-weight: 900;
}

.review figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 0.9rem;
}

.review-cta {
  max-width: 820px;
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid rgba(210, 170, 82, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 170, 82, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 11, 0.72);
  text-align: center;
}

.review-cta h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.review-cta p:not(.eyebrow) {
  max-width: 580px;
  margin-inline: auto;
  color: var(--muted);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    linear-gradient(180deg, rgba(210, 170, 82, 0.08), rgba(5, 5, 6, 0)),
    rgba(14, 14, 16, 0.9);
  border-block: 1px solid var(--line);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(210, 170, 82, 0.08) 44% 45%, transparent 45% 100%),
    linear-gradient(24deg, transparent 0 64%, rgba(255, 255, 255, 0.055) 64% 65%, transparent 65% 100%);
  opacity: 0.8;
}

.quote-layout {
  position: relative;
  display: grid;
  gap: 28px;
}

.quote-copy h2 {
  font-size: clamp(2.15rem, 8vw, 4rem);
}

.quote-contact a {
  color: var(--gold-2);
  font-weight: 900;
}

.quote-form {
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  outline: none;
}

input[type="file"] {
  min-height: auto;
  padding: 11px;
  color: var(--soft);
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.file-field span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 170, 82, 0.16);
}

.quote-form button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
}

.footer {
  padding: 54px 0 36px;
  background: #050506;
  border-top: 1px solid var(--line);
}

.footer-grid {
  gap: 28px;
}

.footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer a:not(.button):not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: var(--soft);
}

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

.footer-brand {
  margin-bottom: 14px;
}

.service-footer {
  padding: 26px 0;
}

.footer-credit {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-footer .footer-credit {
  margin-top: 0;
}

.footer-credit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-credit a {
  color: var(--soft);
}

.service-page-main {
  padding-top: 96px;
}

.service-hero {
  padding: 76px 0 48px;
}

.service-hero-grid,
.service-detail-grid,
.package-grid,
.service-faq-grid,
.seo-link-grid {
  display: grid;
  gap: 18px;
}

.service-hero-copy {
  align-self: center;
}

.service-hero-copy h1 {
  font-size: clamp(2.8rem, 10vw, 5.6rem);
}

.price-line {
  color: var(--gold-2);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 950;
}

.service-hero-image,
.detail-panel,
.package-card,
.service-faq-card,
.seo-link-card,
.service-area-panel,
.page-cta {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.detail-panel,
.package-card,
.service-faq-card,
.seo-link-card,
.service-area-panel,
.page-cta {
  padding: 22px;
}

.detail-panel ul,
.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
}

.service-actions,
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.related-links a {
  color: var(--gold-2);
  font-weight: 900;
}

.seo-link-card {
  display: grid;
  gap: 8px;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(210, 170, 82, 0.5);
  background: linear-gradient(180deg, rgba(210, 170, 82, 0.12), rgba(255, 255, 255, 0.035));
  outline: none;
}

.seo-link-card strong {
  color: var(--white);
  font-size: 1.08rem;
}

.seo-link-card span,
.service-area-panel p,
.page-cta p {
  color: var(--muted);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.service-area-list a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 850;
}

.service-area-list a:hover,
.service-area-list a:focus-visible {
  border-color: rgba(210, 170, 82, 0.58);
  color: var(--gold-2);
  outline: none;
}

.page-cta {
  display: grid;
  gap: 12px;
  text-align: center;
}

.page-cta .service-actions {
  justify-content: center;
  margin-top: 8px;
}

.package-card h3 {
  color: var(--white);
}

.package-card strong {
  color: var(--gold-2);
}

.service-faq-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.booking-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.booking-card:hover,
.booking-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 82, 0.55);
  background: linear-gradient(180deg, rgba(210, 170, 82, 0.13), rgba(255, 255, 255, 0.035));
}

.booking-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-card span,
.booking-card strong,
.booking-card a {
  color: var(--gold-2);
  font-weight: 900;
}

.booking-card .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero h1.reveal.is-visible {
    animation: none;
    filter: none;
  }

  .ambient-field {
    display: none;
  }
}

@media (min-width: 700px) {
  :root {
    --wrap: min(1120px, calc(100% - 48px));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .step-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.feature {
    grid-column: span 2;
  }

  .service-card.feature .service-image {
    height: 240px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-shell {
    width: min(52vw, 300px);
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .area-card,
  .area-card img {
    min-height: 210px;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.85fr 1fr 1fr 0.9fr;
  }

  .service-hero-grid,
  .service-detail-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .package-grid,
  .service-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .nav {
    min-height: 72px;
    flex-wrap: nowrap;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-ctas {
    display: inline-flex;
    order: initial;
    width: auto;
  }

  .nav-book,
  .nav-quote,
  .nav-call {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    overflow: hidden;
  }

  .hero-media {
    display: flex;
    inset: 0;
    height: 100%;
  }

  .hero-media::after {
    top: min(34vw, 360px);
    bottom: auto;
    height: 34vh;
  }

  .hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.98) contrast(1.08) brightness(0.82);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
    padding-top: 142px;
  }

  .hero-inner {
    padding-bottom: 86px;
  }

  .hero-phone {
    justify-self: end;
    transform: translateY(22px);
  }

  .hero-mobile-image {
    display: none;
  }

  .phone-shell {
    width: min(24vw, 315px);
  }

  .tiktok-fallback img {
    object-fit: cover;
    object-position: center;
  }

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

  .trust-grid div {
    padding: 26px 24px;
  }

  .section,
  .quote-section {
    padding: 108px 0;
  }

  .step-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-card.feature {
    grid-column: span 2;
  }

  .service-card {
    min-height: 0;
    padding-top: 0;
  }

  .service-image {
    position: static;
    width: 100%;
    height: 176px !important;
    margin: 18px 0 2px;
    opacity: 1;
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) - 2px);
    z-index: auto;
  }

  .service-card:hover .service-image,
  .service-card:focus-visible .service-image,
  .service-card:focus-within .service-image {
    opacity: 1;
    transform: scale(1.025);
  }

  .service-card.feature {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "image content"
      "image actions";
    align-items: start;
    column-gap: 18px;
    row-gap: 12px;
    padding: 18px;
    align-self: stretch;
  }

  .service-card.feature .service-image {
    grid-area: image;
    width: 100%;
    height: 100% !important;
    min-height: 260px;
    margin: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) - 2px);
  }

  .service-card.feature > div:not(.service-card-actions) {
    grid-area: content;
  }

  .service-card.feature .service-card-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    align-self: end;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: stretch;
  }

  .result-main img {
    height: 100%;
    min-height: 520px;
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: start;
  }

  .quote-form {
    padding: 26px;
  }

  .package-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 959px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
