:root {
  --bg: #070707;
  --bg-2: #101010;
  --bg-3: #161616;
  --gold: #c9a44a;
  --gold-2: #e8d5a3;
  --gold-3: #8a7024;
  --ink: #f6f1e6;
  --muted: #b7ae9c;
  --line: rgba(201, 164, 74, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: var(--gold-2);
  text-decoration: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 99;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid var(--line);
}

.header__inner,
.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__inner {
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.brand strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav a {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-2);
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
}

.lang button.is-active {
  background: var(--gold);
  color: #111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #111;
  font-weight: 600;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--full {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 9px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.28) 0%, rgba(7, 7, 7, 0.55) 38%, rgba(7, 7, 7, 0.92) 74%, #070707 100%),
    radial-gradient(circle at 20% 20%, rgba(201, 164, 74, 0.18), transparent 40%);
}

.hero__content {
  position: relative;
  padding: 120px 0 64px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  max-width: 14ch;
  margin: 0 0 18px;
}

h1 span {
  display: block;
}

.gold-text {
  color: var(--gold-2);
  letter-spacing: 0.08em;
}

.lede {
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__cta,
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__pills {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__pills li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold-2);
  font-size: 0.85rem;
}

.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}

.trust-card {
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  gap: 3px;
  text-align: center;
  padding: 4px 3px 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(14, 14, 14, 0.95));
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card__icon {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 74, 0.45);
  border-radius: 5px;
  background: rgba(201, 164, 74, 0.06);
}

.trust-card svg {
  width: 11px;
  height: 11px;
}

.trust-card h3 {
  margin: 0;
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-2);
  line-height: 1.15;
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.trust p {
  display: none;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section__head h2,
.about h2,
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 0 0 12px;
}

.section__head p:last-child,
.about p,
.contact p {
  color: var(--muted);
}

.svc-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  background: #090909;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.svc-banner__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 20px 0 28px;
}

.svc-banner__copy .section__head {
  margin-bottom: 14px;
}

.svc-banner__copy .section__head h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  margin-bottom: 8px;
}

.svc-banner__copy .section__head p:last-child {
  font-size: 0.88rem;
}

.svc-banner .services {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  align-content: start;
}

.svc-banner .service {
  padding: 8px 6px 7px;
  border-radius: 12px;
}

.svc-banner .svc-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
}

.svc-banner .svc-icon svg {
  width: 14px;
  height: 14px;
}

.svc-banner .service h3 {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.svc-banner .service p {
  display: none;
}

.svc-banner__bar {
  margin: 16px -20px 0 -28px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #e8d5a3, var(--gold) 42%, #8a7024);
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.svc-banner__photo {
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
  padding: 28px 28px 28px 8px;
}

.svc-banner__photo img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 46% 18px 18px 46%;
  border: 2px solid var(--gold);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  text-align: center;
}

.service img,
.svc-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.svc-icon {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 164, 74, 0.08);
}

.svc-icon svg {
  width: 20px;
  height: 20px;
}

.service h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.shot-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.shot-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: #000;
}

.shot-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-strip figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold-2);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.checks {
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}

.checks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about__photo {
  margin: 0;
}

.about__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about__photo figcaption {
  margin-top: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0 22px;
  overflow: hidden;
}

.step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.step span {
  display: block;
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin: 0 22px 12px;
}

.step h3 {
  margin: 0 22px 8px;
  font-size: 1.15rem;
}

.step p {
  margin: 0 22px;
  color: var(--muted);
}

.included-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included li {
  position: relative;
  padding: 16px 16px 16px 42px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.included li::before {
  content: "✦";
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--gold);
}

.included__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.included__shots img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.included__shots img:first-child {
  grid-column: span 2;
  height: 280px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.review .stars {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review p:not(.stars) {
  margin: 0 0 16px;
  color: var(--ink);
}

.review strong {
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.faq details {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 500;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.gallery__item {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: #000;
  aspect-ratio: 1;
  min-height: 0;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.06);
}

.gallery__item span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold-2);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.gallery__item--wide,
.gallery__item--tall {
  grid-column: span 1;
  grid-row: span 1;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.areas li {
  min-width: 140px;
  text-align: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact__list {
  padding: 0;
  list-style: none;
}

.contact__list li {
  margin: 16px 0;
}

.contact__list strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__list a {
  font-size: 1.12rem;
}

.qr {
  width: 140px;
  margin-top: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: #0c0c0c;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 96px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social svg {
  width: 22px;
  height: 22px;
}

.social--wa {
  background: #25d366;
}

.social--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.socials--footer {
  margin: 0;
}

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.fab svg {
  width: 30px;
  height: 30px;
}

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  max-height: 86vh;
  border-radius: 16px;
}

.lightbox__close {
  position: absolute;
  right: 8px;
  top: -42px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(5, 5, 5, 0.96);
    border: 0;
    border-radius: 0;
    padding: 88px 28px 40px;
    z-index: 45;
    text-align: center;
  }

  .nav a {
    font-family: var(--display);
    font-size: 1.45rem;
    color: var(--gold-2);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: block;
    z-index: 50;
  }

  .header .btn--gold {
    display: none;
  }

  .svc-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .svc-banner__copy .section__head {
    max-width: none;
  }

  .svc-banner__photo {
    order: -1;
    min-height: 0;
    padding: 16px 16px 0;
  }

  .svc-banner__photo img {
    width: 100%;
    height: 240px;
    min-height: 0;
    max-height: 240px;
    margin: 0 auto;
    max-width: min(420px, 100%);
    border-radius: 28px 28px 80px 80px;
  }

  .services,
  .about,
  .contact,
  .gallery,
  .steps,
  .reviews {
    grid-template-columns: 1fr 1fr;
  }

  .included-block {
    grid-template-columns: 1fr;
  }

  .included__shots {
    order: -1;
  }

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

  .included__shots img:first-child {
    height: 220px;
  }

  .shot-strip {
    gap: 8px;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about__photo img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .header {
    padding-top: env(safe-area-inset-top);
  }

  .header__inner {
    min-height: 64px;
  }

  .about,
  .contact,
  .gallery,
  .steps,
  .reviews,
  .footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .svc-banner__copy {
    padding: 22px 16px 0;
  }

  .svc-banner .svc-icon {
    width: 28px;
    height: 28px;
  }

  .svc-banner__bar {
    margin: 18px -16px 0;
    padding: 14px 16px;
    font-size: 0.78rem;
    text-align: center;
  }

  .svc-banner__photo {
    min-height: 0;
    padding: 12px 12px 0;
  }

  .svc-banner__photo img {
    height: 200px;
    min-height: 0;
    max-height: 200px;
    margin: 0 auto;
    max-width: min(340px, 100%);
    border-radius: 22px 22px 56px 56px;
  }

  .shot-strip {
    gap: 6px;
    margin-top: 18px;
  }

  .shot-strip figcaption {
    display: none;
  }

  .included__shots {
    order: -1;
  }

  .included__shots img {
    height: 120px;
  }

  .included__shots img:first-child {
    height: 180px;
  }

  .step img {
    aspect-ratio: 16 / 9;
  }

  .services,
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service {
    padding: 12px 8px 10px;
  }

  .service p {
    display: none;
  }

  .trust__grid {
    gap: 6px;
    padding: 12px 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .header__inner,
  .header__actions {
    gap: 8px;
  }

  .menu-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(201, 164, 74, 0.12);
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: end;
  }

  .hero__content {
    padding: 108px 0 calc(36px + env(safe-area-inset-bottom));
    transform: none !important;
    transform-style: flat;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .lede {
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__pills {
    flex-direction: column;
  }

  .hero__pills li {
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .service img,
  .svc-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 6px;
  }

  .svc-icon svg {
    width: 30px;
    height: 30px;
  }

  .included {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .included li {
    padding: 14px 12px 14px 36px;
    font-size: 0.88rem;
  }

  .service h3 {
    font-size: 0.82rem;
    margin: 0;
  }

  .gallery {
    grid-auto-rows: auto;
    gap: 8px;
  }

  .areas li {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
  }

  .form {
    padding: 20px 16px;
  }

  .footer {
    padding: 24px 0 calc(110px + env(safe-area-inset-bottom));
  }

  .fab {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .intro img {
    width: min(210px, 58vw);
    height: min(210px, 58vw);
  }

  .cursor-glow {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    opacity: 0.55;
  }

  .reveal {
    filter: none;
    transform: translate3d(0, 36px, -28px) rotateX(6deg);
  }

  .tilt.is-in {
    animation: cardFloat 5.6s ease-in-out infinite;
  }

  .service.tilt.is-in:nth-child(2) { animation-delay: 0.4s; }
  .service.tilt.is-in:nth-child(3) { animation-delay: 0.8s; }
  .service.tilt.is-in:nth-child(4) { animation-delay: 1.2s; }
}

/* —— 5D motion layer —— */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body.nav-open,
body.is-intro {
  overflow: hidden;
}

body.is-intro .header,
body.is-intro .fab {
  visibility: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 164, 74, 0.18), transparent 42%),
    #050505;
  perspective: 900px;
  transition: opacity 0.7s ease, visibility 0.7s;
  animation: introFailsafe 3.4s 0.2s forwards;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__stage {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  transform-style: preserve-3d;
  animation: introSpin 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.intro img {
  width: min(176px, 46vw);
  height: min(176px, 46vw);
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 164, 74, 0.35);
  animation: introPulse 1.4s ease both;
}

.intro p {
  margin: 10px 0 0;
  font-family: var(--display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.intro small {
  color: var(--muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.intro__line {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: introLine 1.1s 0.35s ease forwards;
}

@keyframes introPulse {
  from { opacity: 0; transform: scale(0.72) rotateX(18deg) translateZ(-120px); }
  to { opacity: 1; transform: scale(1) rotateX(0) translateZ(0); }
}

@keyframes introSpin {
  from { opacity: 0; transform: rotateY(-18deg) translateZ(-80px); }
  to { opacity: 1; transform: rotateY(0) translateZ(0); }
}

@keyframes introLine {
  to { width: min(280px, 60vw); }
}

@keyframes introFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes cardFloat {
  0%, 100% { transform: translate3d(0, 0, 12px) rotateX(0deg); }
  50% { transform: translate3d(0, -8px, 22px) rotateX(3deg); }
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.16), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.is-ready .cursor-glow {
  opacity: 1;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  box-shadow: 0 0 12px rgba(232, 213, 163, 0.55);
}

.hero {
  perspective: 1400px;
}

.hero__media img {
  transform: scale(1.12);
  will-change: transform;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero__spark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  z-index: 2;
  transform-style: preserve-3d;
}

.gold-text {
  background: linear-gradient(110deg, #8a7024 0%, #e8d5a3 42%, #fff6d8 50%, #e8d5a3 58%, #c9a44a 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldFlow 6s linear infinite;
}

@keyframes goldFlow {
  to { background-position: 220% center; }
}

@keyframes kenburns {
  from { transform: scale(1.12) translate3d(0, 0, 0); }
  to { transform: scale(1.2) translate3d(-1.5%, -1.2%, 0); }
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 3.8s ease-in-out infinite;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 164, 74, 0.22);
}

.trust__grid,
.services,
.gallery,
.about,
.steps,
.reviews {
  perspective: 1600px;
}

.tilt {
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
}

.tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--lx, 50%) var(--ly, 20%), rgba(232, 213, 163, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

.tilt.is-hot {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 213, 163, 0.28);
}

.tilt.is-hot::after {
  opacity: 1;
}

.service,
.form,
.step,
.review {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(14, 14, 14, 0.95));
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 48px, -60px) rotateX(8deg);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
  filter: blur(0);
}

.gallery__item img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.1) translateZ(24px);
  filter: saturate(1.05) contrast(1.04);
}

.gallery__item span {
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery__item:hover span {
  transform: translateY(0);
  opacity: 1;
}

.fab {
  animation: fabFloat 3.4s ease-in-out infinite;
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.areas li {
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.areas li:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold);
  color: var(--gold-2);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img,
  .btn--gold::after,
  .gold-text,
  .fab,
  .tilt.is-in {
    animation: none !important;
  }

  .gold-text {
    background: none;
    color: var(--gold-2);
    -webkit-text-fill-color: var(--gold-2);
  }

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

  .cursor-glow {
    display: none;
  }
}
