:root {
  --bg: #050307;
  --bg-2: #0d0712;
  --panel: rgba(18, 12, 24, 0.78);
  --panel-strong: rgba(23, 15, 31, 0.92);
  --text: #f8eddc;
  --muted: #cdbda8;
  --soft: #9f8ea7;
  --gold: #d8b46d;
  --gold-2: #f3d58d;
  --gold-dark: #7b5b27;
  --violet: #6c3ca0;
  --plum: #301337;
  --indigo: #211946;
  --line: rgba(216, 180, 109, 0.28);
  --shadow: 0 26px 82px rgba(0, 0, 0, 0.52);
  --inner-glow: inset 0 1px 0 rgba(255, 239, 190, 0.09), inset 0 -1px 0 rgba(116, 72, 159, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse at 16% 8%, rgba(80, 35, 114, 0.42), transparent 36%),
    radial-gradient(ellipse at 88% 14%, rgba(34, 28, 86, 0.4), transparent 34%),
    linear-gradient(120deg, rgba(27, 11, 36, 0.78), transparent 32%),
    linear-gradient(255deg, rgba(36, 28, 81, 0.42), transparent 38%),
    var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(12deg, rgba(216, 180, 109, 0.018) 0 1px, transparent 1px 118px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  min-height: 44px;
  padding: 10px 16px;
  color: #0b070d;
  background: var(--gold-2);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  contain: strict;
  opacity: 0.64;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cursor-dust-layer {
  position: fixed;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.cursor-dust {
  position: absolute;
  width: var(--dust-size, 4px);
  height: var(--dust-size, 4px);
  background: rgba(255, 229, 166, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 229, 166, 0.42);
  opacity: 0;
  transform: translate3d(var(--dust-x), var(--dust-y), 0) scale(0.7);
  animation: cursorDust 860ms ease-out forwards;
}

.cursor-dust--violet {
  background: rgba(190, 144, 255, 0.56);
  box-shadow: 0 0 8px rgba(190, 144, 255, 0.34);
}

@keyframes cursorDust {
  0% {
    opacity: 0;
    transform: translate3d(var(--dust-x), var(--dust-y), 0) scale(0.45);
  }

  18% {
    opacity: var(--dust-alpha, 0.58);
  }

  100% {
    opacity: 0;
    transform: translate3d(
      calc(var(--dust-x) + var(--dust-dx)),
      calc(var(--dust-y) + var(--dust-dy)),
      0
    ) scale(1);
  }
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

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

.section {
  position: relative;
  padding: 76px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section.is-visible,
.section.hero {
  opacity: 1;
  transform: none;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  font-weight: 500;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.14rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 36px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading--left .eyebrow::before {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--header-height);
  color: var(--text);
  background: rgba(5, 3, 7, 0.72);
  border-bottom: 1px solid rgba(216, 180, 109, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 3, 7, 0.92);
  border-color: rgba(216, 180, 109, 0.32);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 44px;
  align-items: center;
  height: var(--header-height);
  min-height: var(--header-height);
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  text-decoration: none;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 15px rgba(216, 180, 109, 0.38));
}

.brand__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.8vw, 1.32rem);
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 19px;
  height: 1px;
  margin: 2px 0;
  background: var(--gold-2);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: var(--header-height);
  right: 16px;
  left: 16px;
  display: grid;
  padding: 12px;
  background: rgba(13, 7, 18, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a {
  min-height: 44px;
  padding: 11px 14px;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(216, 180, 109, 0.08);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 20px;
  overflow: hidden;
  color: var(--text);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #130d12;
  background:
    linear-gradient(135deg, rgba(255, 250, 219, 0.72), transparent 38%),
    linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: rgba(255, 232, 167, 0.48);
  box-shadow: 0 16px 36px rgba(216, 180, 109, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.btn--ghost {
  min-height: 44px;
  padding-inline: 4px;
  color: var(--gold-2);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 5px;
  box-shadow: none;
}

.btn--outline:hover {
  border-color: rgba(243, 213, 141, 0.62);
  box-shadow: 0 12px 30px rgba(108, 60, 160, 0.2);
}

.btn--ghost:hover {
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.btn--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.94rem;
}

.btn.header__cta {
  display: none;
}

.btn__spark {
  width: 17px;
  height: 17px;
  margin-right: 9px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
  opacity: 0.72;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 48px) 0 112px;
  overflow: clip;
}

.hero::before {
  position: absolute;
  inset: 8% -10% auto;
  height: 48%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(100deg, transparent 10%, rgba(216, 180, 109, 0.13) 49%, transparent 84%),
    linear-gradient(12deg, transparent 24%, rgba(112, 74, 162, 0.2), transparent 72%);
  opacity: 0.65;
  transform: rotate(-4deg);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.58rem, 10vw, 6.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.hero__subtitle {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.8vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero__actions .btn {
  width: auto;
}

.hero__actions .btn--primary {
  width: 100%;
}

.hero__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 660px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero__benefits li {
  min-height: 44px;
  padding: 10px 14px 10px 38px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(216, 180, 109, 0.18);
  border-radius: var(--radius);
  position: relative;
}

.hero__benefits li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--gold-2);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  transform: translateY(-50%);
}

.hero__visual {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-inline: auto;
}

.hero__visual::before {
  position: absolute;
  inset: 12% -10% -4%;
  z-index: -1;
  content: "";
  background: linear-gradient(140deg, rgba(108, 60, 160, 0.38), rgba(216, 180, 109, 0.12), transparent 72%);
  filter: blur(18px);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(243, 213, 141, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: clamp(66px, 17vw, 118px);
  aspect-ratio: 7 / 11;
  pointer-events: none;
  background:
    linear-gradient(150deg, rgba(216, 180, 109, 0.32), transparent 24%),
    linear-gradient(180deg, rgba(14, 8, 20, 0.96), rgba(36, 18, 54, 0.96));
  border: 1px solid rgba(243, 213, 141, 0.72);
  border-radius: 7px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42), 0 0 24px rgba(108, 60, 160, 0.28);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotate(var(--rotate));
  animation: cardFloat 7s ease-in-out infinite;
}

.floating-card::before,
.floating-card::after {
  position: absolute;
  inset: 9px;
  content: "";
  border: 1px solid rgba(243, 213, 141, 0.36);
  border-radius: 5px;
}

.floating-card::after {
  inset: 50% auto auto 50%;
  width: 30%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(243, 213, 141, 0.92), rgba(243, 213, 141, 0.12) 55%, transparent 58%);
  border: 0;
  transform: translate(-50%, -50%);
}

.floating-card--one {
  --rotate: -11deg;
  right: -2%;
  bottom: 10%;
}

.floating-card--two {
  --rotate: 12deg;
  top: 8%;
  left: -5%;
  width: clamp(58px, 14vw, 96px);
  animation-delay: -2.4s;
}

.services {
  background: linear-gradient(180deg, transparent, rgba(21, 12, 28, 0.68), transparent);
}

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

.service-card,
.review-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card.is-visible,
.review-card.is-visible,
.process-step.is-visible {
  opacity: 1;
  transform: none;
}

.service-card {
  min-height: 226px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(216, 180, 109, 0.018) 44%, rgba(108, 60, 160, 0.045)),
    rgba(14, 8, 20, 0.82);
  border: 1px solid rgba(216, 180, 109, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--inner-glow), 0 16px 46px rgba(0, 0, 0, 0.22);
}

.service-card:hover {
  background:
    linear-gradient(145deg, rgba(216, 180, 109, 0.09), rgba(108, 60, 160, 0.07)),
    rgba(14, 8, 20, 0.9);
  border-color: rgba(243, 213, 141, 0.44);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--gold-2);
  background: rgba(216, 180, 109, 0.08);
  border: 1px solid rgba(216, 180, 109, 0.25);
  border-radius: var(--radius);
}

.card-icon__svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3,
.process-step h3 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.16;
}

.service-card p,
.process-step p,
.about__text p,
.review-card p,
.faq-item p {
  color: var(--muted);
}

.service-card p {
  margin: 12px 0 0;
}

.process__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.process__media {
  position: relative;
}

.process__media::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(243, 213, 141, 0.34);
  border-radius: var(--radius);
}

.process__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 180, 109, 0.24);
  box-shadow: var(--shadow);
}

.process__steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(216, 180, 109, 0.16);
  counter-increment: process;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.process-step__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-2);
  border: 1px solid rgba(216, 180, 109, 0.48);
  border-radius: 50%;
}

.process-step__number::before {
  content: counter(process, decimal-leading-zero);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
}

.process-step p {
  margin: 8px 0 0;
}

.about {
  background:
    linear-gradient(90deg, rgba(216, 180, 109, 0.08), transparent 34%),
    linear-gradient(260deg, rgba(108, 60, 160, 0.18), transparent 48%);
  border-block: 1px solid rgba(216, 180, 109, 0.12);
}

.about__grid {
  display: grid;
  gap: 22px;
}

.about__text {
  max-width: 760px;
  padding-left: 20px;
  border-left: 1px solid rgba(216, 180, 109, 0.34);
}

.about__text p {
  margin: 0 0 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.reviews__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(282px, 84vw);
  gap: 14px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(216, 180, 109, 0.52) rgba(255, 255, 255, 0.08);
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 270px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(216, 180, 109, 0.018) 48%, rgba(108, 60, 160, 0.045)),
    rgba(13, 8, 17, 0.82);
  border: 1px solid rgba(216, 180, 109, 0.19);
  border-radius: var(--radius);
  box-shadow: var(--inner-glow);
  scroll-snap-align: start;
}

.review-card p {
  position: relative;
  margin: 0;
}

.review-card p::before {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 0.8;
  content: "“";
}

.review-card__person {
  display: grid;
  gap: 2px;
  margin-top: 20px;
}

.review-card__person span {
  color: var(--text);
  font-weight: 700;
}

.review-card__person small {
  color: var(--soft);
  font-size: 0.9rem;
}

.faq__grid {
  display: grid;
  gap: 24px;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faq-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(108, 60, 160, 0.035)),
    rgba(9, 5, 13, 0.74);
  border: 1px solid rgba(216, 180, 109, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--inner-glow);
}

.faq-item summary {
  position: relative;
  min-height: 56px;
  padding: 16px 54px 16px 18px;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  content: "";
  background:
    linear-gradient(var(--gold-2), var(--gold-2)) center / 100% 1px no-repeat,
    linear-gradient(var(--gold-2), var(--gold-2)) center / 1px 100% no-repeat;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  padding-bottom: 96px;
}

.final-cta__inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}

.final-cta__inner::before,
.final-cta__inner::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(243, 213, 141, 0.54), transparent);
}

.final-cta__inner::before {
  top: -34px;
}

.final-cta__inner::after {
  bottom: -34px;
}

.final-cta .btn {
  margin-top: 26px;
}

.site-footer {
  padding: 48px 0 92px;
  color: var(--muted);
  background: rgba(3, 2, 5, 0.86);
  border-top: 1px solid rgba(216, 180, 109, 0.16);
}

.footer__grid {
  display: grid;
  gap: 28px;
}

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

.footer__note,
.footer__disclaimer,
.footer__age {
  max-width: 560px;
  margin: 0;
}

.footer__title {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.footer__disclaimer {
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer__age {
  margin-top: 10px;
  color: var(--gold-2);
  font-weight: 800;
}

.mobile-contact {
  position: fixed;
  right: 16px;
  bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  color: #130d12;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 232, 167, 0.56);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
  cursor: pointer;
  font-weight: 800;
}

.mobile-contact__icon {
  width: 23px;
  height: 23px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
}

.mobile-contact span:not(.mobile-contact__icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-open .mobile-contact {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
  padding: 12px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(82svh, 720px);
  padding: 28px 18px 18px;
  margin-inline: auto;
  overflow-y: auto;
  background:
    linear-gradient(150deg, rgba(216, 180, 109, 0.08), transparent 34%),
    linear-gradient(230deg, rgba(108, 60, 160, 0.18), transparent 46%),
    rgba(10, 6, 14, 0.98);
  border: 1px solid rgba(243, 213, 141, 0.38);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -18px 80px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-modal.is-open .contact-modal__backdrop {
  opacity: 1;
}

.contact-modal.is-open .contact-modal__panel {
  opacity: 1;
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 109, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.contact-modal__close::before,
.contact-modal__close::after {
  position: absolute;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--gold-2);
  border-radius: 999px;
  transform-origin: center;
}

.contact-modal__close::before {
  transform: rotate(45deg);
}

.contact-modal__close::after {
  transform: rotate(-45deg);
}

.contact-modal__close span {
  display: none;
}

.contact-modal h2 {
  max-width: calc(100% - 54px);
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 7vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-modal p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 109, 0.22);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(216, 180, 109, 0.1);
  border-color: rgba(243, 213, 141, 0.68);
  box-shadow: 0 18px 38px rgba(108, 60, 160, 0.2);
  transform: translateY(-1px);
}

.contact-card img {
  width: 34px;
  height: 34px;
}

.contact-card span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-card strong {
  font-size: 1.04rem;
}

.contact-card small {
  color: var(--soft);
  font-size: 0.9rem;
}

@keyframes cardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@media (min-width: 540px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero__actions .btn {
    width: auto;
  }

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

  .contact-modal {
    align-items: center;
    padding: 24px;
  }

  .contact-modal__panel {
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 84px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.76fr);
  }

  .hero__visual {
    justify-self: end;
  }

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

  .process__grid,
  .about__grid,
  .faq__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .about__text {
    padding-left: 30px;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
  }

  .mobile-contact {
    display: none;
  }

  .site-footer {
    padding-bottom: 58px;
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .hero__visual {
    position: absolute;
    top: -8px;
    right: -12px;
    width: min(44vw, 170px);
    opacity: 0.58;
  }

  .hero__visual img {
    filter: saturate(0.96) contrast(1.03);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.32) 22%, #000 60%);
  }

  .floating-card {
    display: none;
  }

  .final-cta {
    padding-bottom: 128px;
  }

  .site-footer {
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 980px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding-inline: 12px;
    font-size: 0.95rem;
  }

  .btn.header__cta {
    display: inline-flex;
  }

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

  .service-card:nth-child(7) {
    grid-column: 2 / 3;
  }

  .reviews__rail {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand__text {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.34rem;
  }

  .btn {
    padding-inline: 14px;
  }

  .service-card,
  .review-card {
    padding: 18px;
  }

  .process-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .process-step__number {
    width: 40px;
    height: 40px;
  }

  .mobile-contact {
    right: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ambient-canvas {
    display: none;
  }

  .cursor-dust-layer {
    display: none;
  }

  .section,
  .service-card,
  .review-card,
  .process-step {
    opacity: 1;
    transform: none;
  }
}
