:root {
  --black: #030303;
  --black-soft: #08080a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-soft: rgba(255, 255, 255, 0.45);
  --gold: #d8b76a;
  --gold-light: #f4d994;
  --gold-dark: #a77a36;
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 183, 106, 0.16), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(216, 183, 106, 0.08), transparent 34%),
    linear-gradient(135deg, #030303 0%, #08080a 42%, #121214 100%);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 45%, transparent 70%);
  opacity: 0.75;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, #ffffff 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, #ffffff 0 1px, transparent 1px);
  background-size: 90px 90px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 3, 0.66);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--white);
}

.logo::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(216, 183, 106, 0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 12px 20px;
  color: var(--white) !important;
  font-weight: 800;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 94px 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  z-index: -1;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  right: 6%;
  top: 12%;
  background: rgba(216, 183, 106, 0.17);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: -8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 30px;
  font-size: clamp(3.35rem, 7.6vw, 7.75rem);
  line-height: 0.88;
  letter-spacing: -0.095em;
}

.hero h1,
.intro h2,
.section-heading h2,
.process h2,
.contact h2,
.cta-section h2 {
  background: linear-gradient(135deg, #ffffff 0%, #dadada 38%, #8f8f8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 665px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 55px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

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

.btn-primary {
  color: #080808;
  background: linear-gradient(135deg, #fff0b7 0%, #d8b76a 44%, #9d6f31 100%);
  box-shadow:
    0 18px 52px rgba(216, 183, 106, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.btn-primary:hover {
  box-shadow:
    0 24px 70px rgba(216, 183, 106, 0.43),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-glass,
.btn-light {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 183, 106, 0.14), transparent 38%);
  pointer-events: none;
  opacity: 0.9;
}

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

.hero-card {
  padding: 38px;
}

.card-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 13px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(216, 183, 106, 0.25);
  border-radius: 999px;
  background: rgba(216, 183, 106, 0.12);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(216, 183, 106, 0.95);
}

.hero-card h2 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.hero-card li span {
  color: var(--gold-light);
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 98px 0;
}

.intro {
  max-width: 990px;
  text-align: center;
}

.intro h2,
.section-heading h2,
.process h2,
.contact h2,
.cta-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.35vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading p {
  color: var(--muted);
}

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

.service-card {
  min-height: 250px;
  padding: 30px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 183, 106, 0.38);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
}

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  align-items: center;
  justify-content: center;
  color: #080808;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0b7, #d8b76a);
  box-shadow: 0 13px 36px rgba(216, 183, 106, 0.22);
}

.service-card h3,
.process-step h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.38rem;
  letter-spacing: -0.045em;
}

.service-card p,
.process-step p,
.contact p,
.cta-section p {
  color: var(--muted);
}

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

.process-step {
  padding: 31px;
}

.process-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  align-items: center;
  justify-content: center;
  color: #080808;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0b7, #d8b76a);
  box-shadow: 0 13px 36px rgba(216, 183, 106, 0.22);
}

.luxury-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strip-item {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.strip-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.strip-item span {
  color: var(--muted);
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-section p {
  max-width: 640px;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-details {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.contact-details p {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 35px rgba(0, 0, 0, 0.2);
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-details a,
.contact-details span {
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.18);
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  margin-bottom: 18px;
  padding: 15px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 35px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(216, 183, 106, 0.7);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 0 4px rgba(216, 183, 106, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.32);
}

.select-wrap {
  position: relative;
  margin-bottom: 18px;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 0;
  padding-right: 54px;
  cursor: pointer;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 48%;
  width: 9px;
  height: 9px;
  pointer-events: none;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.95;
}

.contact-form select {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form option {
  background: #0c0c0d;
  color: #ffffff;
}

.form-btn {
  width: 100%;
  border: none;
  margin-top: 4px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--muted-soft);
  text-align: center;
  border-top: 1px solid var(--border);
}

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
      rgba(10, 10, 12, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 13px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .section-heading,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 66px 0;
    gap: 34px;
  }

  .service-grid,
  .process-grid,
  .luxury-strip {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 590px) {
  .navbar,
  .hero,
  .section,
  .luxury-strip,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    height: 78px;
  }

  .nav-links {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 58px 0;
  }

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

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card,
  .service-card,
  .process-step,
  .contact-form {
    padding: 24px;
  }

  .section {
    padding: 70px 0;
  }

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

  .cta-section {
    margin: 28px auto;
    padding: 30px;
  }

  .intro h2,
  .section-heading h2,
  .process h2,
  .contact h2,
  .cta-section h2 {
    font-size: 2.35rem;
  }
}