:root {
  --bg: #050608;
  --bg-deep: #030407;
  --panel: rgba(11, 14, 18, 0.22);
  --line: rgba(255, 255, 255, 0.06);
  --line-soft: rgba(255, 255, 255, 0.04);
  --text: #f4f6f8;
  --text-muted: #b8c0ca;
  --text-soft: #9ca6b2;
  --accent: #baa487;
  --accent-soft: rgba(186, 164, 135, 0.18);
  --accent-strong: rgba(186, 164, 135, 0.34);
  --shadow: 0 40px 140px rgba(0, 0, 0, 0.58);
  --container: 1180px;
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --mx: 50%;
  --my: 30%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(186, 164, 135, 0.14), transparent 0 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.045), transparent 0 14%),
    radial-gradient(circle at 50% 100%, rgba(186, 164, 135, 0.08), transparent 0 24%),
    linear-gradient(180deg, #040507 0%, #07090c 40%, #040507 100%);
}

body,
a,
button,
input,
textarea,
select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

#dust,
.noise,
.bg-orb,
.pointer-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#dust {
  z-index: 0;
  opacity: 0.56;
}

.noise {
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px, 20px 20px;
}

.bg-orb {
  z-index: 0;
  border-radius: 999px;
  filter: blur(140px);
  opacity: 0.48;
}

.orb-1 {
  width: 34rem;
  height: 34rem;
  top: -12rem;
  left: -12rem;
  background: rgba(186, 164, 135, 0.13);
}

.orb-2 {
  width: 28rem;
  height: 28rem;
  top: 8rem;
  right: -8rem;
  background: rgba(255, 255, 255, 0.045);
}

.orb-3 {
  width: 30rem;
  height: 30rem;
  bottom: -14rem;
  left: 20%;
  background: rgba(186, 164, 135, 0.08);
}

.pointer-glow {
  z-index: 1;
  background: radial-gradient(440px circle at var(--mx) var(--my), rgba(186, 164, 135, 0.08), transparent 65%);
}

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 42px 0;
}

.hero-shell {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 26%, transparent 74%, rgba(186, 164, 135, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(186, 164, 135, 0.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.04), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(186, 164, 135, 0.8);
}

.brand-name {
  margin: 26px 0 12px;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #e1e6ec 38%, #9ba4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 24px 0 0;
  max-width: 780px;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 650;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 350px);
  padding: 15px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-value {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 650;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

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

.button-primary {
  color: #fff;
  border-color: rgba(186, 164, 135, 0.32);
  background: linear-gradient(180deg, rgba(186, 164, 135, 0.25), rgba(123, 106, 84, 0.16));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 6px rgba(186, 164, 135, 0.08);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.button-icon {
  font-size: 18px;
}


@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 28px 0 88px;
  }

  .hero-shell {
    padding: 24px;
    border-radius: 30px;
  }
}

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

  .hero-title {
    font-size: clamp(42px, 16vw, 66px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text {
    font-size: 15px;
  }

  .contact-chip {
    min-width: 100%;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }
}

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

  .button,
  .contact-chip,
}
