@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #121212;
  --white: #f5f4f0;
  --gold: #c9a227;
  --gold-light: #e9cd7a;
  --gold-deep: #8a6d1f;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(201, 162, 39, 0.35);
  --muted: #96938c;
  --glass: rgba(255, 255, 255, 0.045);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) {
  body {
    cursor: auto;
  }
}
::selection {
  background: var(--gold);
  color: var(--black);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 22px;
  }
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.gold {
  color: var(--gold-light);
}
.gold-grad {
  background: linear-gradient(
    100deg,
    var(--gold-deep),
    var(--gold-light) 45%,
    var(--gold) 70%,
    var(--gold-light)
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 8s linear infinite;
}
@keyframes sheen {
  to {
    background-position: 220% 50%;
  }
}

/* ---------- loader ---------- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  background: var(--black);
  z-index: 10000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;

  overflow: hidden;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader img {
  width: 76px;
  height: 76px;
  opacity: 0;
  transform: scale(0.85);
  animation: loaderIn 1s var(--ease) forwards 0.15s;
}
@keyframes loaderIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  animation: loaderFill 1.6s var(--ease) forwards 0.3s;
}
@keyframes loaderFill {
  to {
    width: 100%;
  }
}
.loader-label {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- cursor ---------- */
.cur-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cur-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent 70%);
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}
.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    border-color 0.25s;
}
.cur-ring.hov {
  width: 64px;
  height: 64px;
  border-color: var(--gold-light);
}
@media (max-width: 900px) {
  .cur-dot,
  .cur-glow,
  .cur-ring {
    display: none;
  }
}

/* ---------- scroll progress ---------- */
#scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- promotional banner ---------- */

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;

  background: linear-gradient(
    100deg,
    var(--gold-deep),
    var(--gold-light),
    var(--gold)
  );

  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: clamp(9px, 2.8vw, 12px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.promo-banner[hidden] {
  display: none;
}

body.has-promo-banner header {
  top: 38px;
}

/* ---------- navbar ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  transition:
    background 0.4s,
    padding 0.4s,
    border-color 0.4s,
    backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  padding: 16px 48px;
  border-color: var(--line);
}

/* keep the mega menu from overflowing on small laptops / landscape tablets */
.mega {
  width: min(560px, calc(100vw - 48px));
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 34px;
  height: 34px;
}
.wordmark {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
}
.wordmark span {
  color: var(--gold);
  font-weight: 500;
}
nav.links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-item {
  position: relative;
}
nav.links a.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.links a.nav-link:hover,
nav.links a.nav-link.active {
  color: var(--white);
}
.caret {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-top: -3px;
}
.nav-item:hover .caret {
  transform: rotate(225deg);
  margin-top: 3px;
}
.mega {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 22px;
}
.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega a {
  display: block;
  padding: 11px 10px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.mega a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  padding-left: 16px;
}
.book-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light));
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(201, 162, 39, 0.55);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  header,
  header.scrolled {
    padding: 14px 22px;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: none;
    border-color: var(--line);
  }

  .brand {
    position: relative;
    z-index: 502;
  }

  nav.links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    padding: 90px 28px 40px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;

    background: var(--black-2);
    border-left: 1px solid var(--line);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 501;
  }

  nav.links.open {
    transform: translateX(0);
  }

  nav.links a.nav-link {
    width: 100%;
    padding: 6px 0;
    font-size: 15px;
    justify-content: space-between;
  }

  .nav-item {
    width: 100%;
  }

  .mega {
    position: static;
    width: 100%;
    padding: 10px 0 0 14px;

    display: none;
    grid-template-columns: 1fr;

    opacity: 1;
    visibility: visible;
    transform: none;

    background: none;
    border: none;
    backdrop-filter: none;
  }

  .nav-item.open .mega {
    display: grid;
    transform: none;
    left: auto;
  }

  .nav-item:hover .mega {
    transform: none;
  }

  .nav-item:hover .caret {
    transform: rotate(45deg);
    margin-top: -3px;
  }

  .nav-item.open .caret {
    transform: rotate(225deg);
    margin-top: 3px;
  }

  .book-btn {
    width: 100%;
    margin-top: 8px;
    padding: 15px 24px;
  }

  .burger {
    position: relative;
    z-index: 503;

    display: flex !important;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 24px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.has-promo-banner nav.links {
    top: 38px;
    height: calc(100vh - 38px);
    height: calc(100dvh - 38px);
  }
}

@media (max-width: 420px) {
  header,
  header.scrolled {
    padding: 12px 16px;
  }

  .brand {
    gap: 8px;
  }

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

  .wordmark {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  nav.links {
    width: 88vw;
    padding: 82px 22px 32px;
  }
}

/* magnetic wrap */
.magnetic {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.05);
  transform: scale(1.08);
  animation: kb 24s ease-in-out infinite alternate;
}
@keyframes kb {
  to {
    transform: scale(1.16) translate(-1.5%, -1%);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.5) 0%,
    rgba(5, 5, 5, 0.35) 45%,
    rgba(5, 5, 5, 0.96) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.hero .eyebrow {
  display: block;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  max-width: 960px;
}
.hero .sub-services {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 640px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--muted);
}
.hero .sub-services span {
  opacity: 0;
  animation: wordIn 0.6s var(--ease) forwards;
}
@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light));
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 17px 32px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(201, 162, 39, 0.6);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 17px 32px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
}
.float-cards {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}
.f-card {
  width: 190px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 18px;
  transition: transform 0.4s var(--ease);
}
.f-card .n {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--gold-light);
}
.f-card .l {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .float-cards {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-inner {
    padding-top: 92px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .hero .sub-services {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-ctas {
    gap: 12px;
    margin-top: 32px;
  }

  .btn-gold,
  .btn-outline {
    padding: 14px 18px;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll .stick {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero-scroll {
    left: 22px;
    bottom: 18px;
  }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.mask {
  overflow: hidden;
}
.mask span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s var(--ease);
}
.mask.in span {
  transform: translateY(0);
}

/* ---------- trust bar ---------- */
.trust {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
}
.trust-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

/* ---------- section shared ---------- */
section {
  padding: 150px 0;
  position: relative;
}
@media (max-width: 640px) {
  section {
    padding: 90px 0;
  }
}
.section-head {
  max-width: 640px;
  margin-bottom: 70px;
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
}
.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 520px;
}

/* ---------- why cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--black);
  padding: 42px 32px;
  position: relative;
  transition: background 0.4s;
}
.why-card:hover {
  background: var(--black-3);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 162, 39, 0.1),
    transparent 60%
  );
  transition: opacity 0.4s;
  pointer-events: none;
}
.why-card:hover::before {
  opacity: 1;
}
.why-ic {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 26px;
}
.why-ic svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}
.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.svc-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
  filter: brightness(0.55) saturate(1.05);
}
.svc-card:hover .bg {
  transform: scale(1.1);
  filter: brightness(0.38) saturate(1.15);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(5, 5, 5, 0.94) 100%
  );
}
.svc-card .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
}
.svc-card .idx {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.svc-card h3 {
  font-size: 21px;
  transition: transform 0.35s var(--ease);
}
.svc-card .desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.4s,
    margin-top 0.4s;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.svc-card:hover .desc {
  max-height: 60px;
  opacity: 1;
  margin-top: 8px;
}
.svc-card .lm {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.svc-card:hover .lm {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- before/after ---------- */
.ba-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  user-select: none;
}
.ba-wrap .layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after {
  z-index: 1;
}
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-tag {
  position: absolute;
  top: 22px;
  z-index: 3;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(6px);
}
.ba-tag.left {
  left: 22px;
}
.ba-tag.right {
  right: 22px;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  z-index: 4;
  transform: translateX(-1px);
}
.ba-handle .line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--gold-light);
  height: 100%;
}
.ba-handle .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold-light);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
  cursor: ew-resize;
}

/* ---------- stats ---------- */
.stats {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 100px 0;
}
.stat .num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--gold-light);
}
.stat .label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 800px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
}

/* ---------- process timeline ---------- */
.process-list {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--line);
}
.process-line-fill {
  position: absolute;
  left: 23px;
  top: 10px;
  width: 1px;
  background: linear-gradient(var(--gold-deep), var(--gold-light));
  height: 0;
  transition: height 1.4s var(--ease);
}
.p-step {
  position: relative;
  padding: 0 0 64px 74px;
}
.p-step:last-child {
  padding-bottom: 0;
}
.p-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--gold-light);
  background: var(--black);
  font-size: 15px;
  z-index: 2;
}
.p-step h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.p-step p {
  color: var(--muted);
  font-size: 14px;
  max-width: 440px;
  line-height: 1.6;
}

/* ---------- gallery ---------- */
.gal-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.gal-filters button {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.gal-filters button.active,
.gal-filters button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.gal-masonry {
  columns: 3 220px;
  column-gap: 14px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-item .bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.gal-item:hover .bg {
  transform: scale(1.06);
}
.gal-item .tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.9));
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover::after,
.gal-item:hover .tag {
  opacity: 1;
  transform: translateY(0);
}
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
#lightbox.open {
  display: flex;
}
#lightbox .lb-img {
  max-width: min(920px, 90vw);
  max-height: 80vh;
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
#lightbox .lb-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- testimonials ---------- */
.test-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.test-track::-webkit-scrollbar {
  display: none;
}
.t-card {
  flex: 0 0 380px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 34px;
}
.t-stars {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
}
.t-card p.quote {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--white);
}
.t-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--black);
}
.t-name {
  font-size: 13px;
  font-weight: 600;
}
.t-role {
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
}
.faq-q .plus {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.faq-q .plus::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item.open .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-banner .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at 50% 40%,
    rgba(201, 162, 39, 0.16),
    transparent 65%
  );
  animation: glowMove 8s ease-in-out infinite alternate;
}
@keyframes glowMove {
  from {
    background-position: 40% 40%;
  }
  to {
    background-position: 60% 55%;
  }
}
.cta-banner h2 {
  font-size: clamp(32px, 5.4vw, 60px);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-gold {
  margin-top: 38px;
  position: relative;
  z-index: 1;
}

/* ---------- footer ---------- */
footer {
  padding: 80px 0 34px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.foot-brand p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
}
.foot-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.foot-col a {
  display: block;
  font-size: 13.5px;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0.85;
  transition:
    opacity 0.25s,
    color 0.25s;
}
.foot-col a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  margin-top: 10px;
  transition: border-color 0.25s;
}

.newsletter:focus-within {
  border-bottom-color: var(--gold-light);
}

.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}

.newsletter input:focus {
  outline: none;
  box-shadow: none;
}

.newsletter button {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.foot-bottom p {
  font-size: 12px;
  color: var(--muted);
}
.foot-socials {
  display: flex;
  gap: 12px;
}
.foot-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  color: var(--gold-light);
  transition: border-color 0.25s;
}
.foot-socials a:hover {
  border-color: var(--gold);
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

::placeholder {
  color: var(--muted);
  opacity: 1;
}
option {
  background: var(--black-2);
  color: var(--white);
}

/* ========================================
   MOBILE / TABLET VIEWPORT FIX
======================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep loader locked to the visible viewport */
#loader {
  inset: 0;
  width: auto;
  max-width: 100%;
}

/* Prevent header from becoming wider than viewport */
header {
  width: 100%;
  max-width: 100%;
}

/* Contact section desktop layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

#quoteForm {
  width: 100%;
  min-width: 0;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 42px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  min-width: 0;
  max-width: 100%;
}

/* Tablet navigation */
@media (max-width: 1080px) {
  header,
  header.scrolled {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .burger {
    display: flex !important;
    margin-left: auto;
    flex-shrink: 0;
  }

  nav.links {
    right: 0;
    max-width: 100%;
    visibility: hidden;
    pointer-events: none;
  }

  nav.links.open {
    visibility: visible;
    pointer-events: auto;
  }
}

/* Mobile contact layout */
@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #quoteForm {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Stats responsiveness */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 28px 16px;
  }
}

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

  .stat {
    padding: 24px 12px;
  }
}

@media (max-width: 1080px) {
  .mega a {
    padding-left: 10px;
    transition:
      color 0.2s,
      background 0.2s;
    transform: none;
  }

  .mega a:hover,
  .mega a:focus,
  .mega a:active {
    padding-left: 10px;
    transform: none;
  }
}

/* ========================================
   FORM NOTIFICATIONS
======================================== */

.site-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 12000;

  width: min(390px, calc(100vw - 32px));
  padding: 18px 20px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);

  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
}

.site-notification.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-notification.is-success {
  border-left-color: #4caf70;
}

.site-notification.is-error {
  border-left-color: #d85c5c;
}

.site-notification__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

.site-notification.is-success .site-notification__icon {
  color: #65d58b;
  border-color: rgba(101, 213, 139, 0.35);
}

.site-notification.is-error .site-notification__icon {
  color: #f07878;
  border-color: rgba(240, 120, 120, 0.35);
}

.site-notification__content {
  min-width: 0;
  flex: 1;
}

.site-notification__title {
  margin-bottom: 5px;

  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.site-notification__message {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.site-notification__close {
  flex-shrink: 0;

  background: none;
  border: none;
  color: var(--muted);

  font-size: 20px;
  line-height: 1;
  cursor: pointer;

  transition: color 0.2s;
}

.site-notification__close:hover {
  color: var(--white);
}

@media (max-width: 600px) {
  .site-notification {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}
