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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #08080c;
  color: #ffffff;
  overflow-x: hidden;
  padding-bottom: 90px;
}

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

.luxury-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(245, 230, 168, 0.12), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.10), transparent 35%),
    #08080c;
  z-index: -1;
}

.desktop-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 92%);
  padding: 16px 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  background: rgba(15, 15, 20, 0.65);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.logo span {
  color: #d4af37;
}

.desktop-header nav {
  display: flex;
  gap: 28px;
}

.desktop-header nav a {
  color: #cfcfcf;
  font-size: 14px;
  transition: 0.3s;
}

.desktop-header nav a:hover {
  color: #d4af37;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  text-align: center;
}

.hero-content {
  max-width: 880px;
}

.eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(58px, 12vw, 140px);
  line-height: 0.85;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: #d4af37;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

.hero-subtitle {
  margin-top: 28px;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  margin: 22px auto 0;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #d4af37, #f5e6a8);
  color: #08080c;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
}

.glass-btn {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

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

section {
  padding: 80px 20px;
}

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

.section-heading h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

.story-card,
.contact-card {
  max-width: 900px;
  margin: auto;
  padding: 42px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.story-card p,
.contact-card p {
  color: #c7c7c7;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.brand-grid,
.why-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.brand-card,
.why-card {
  padding: 30px;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.brand-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 45%);
  opacity: 0;
  transition: 0.35s;
}

.brand-card:hover,
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.12);
}

.brand-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.14);
  display: grid;
  place-items: center;
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 24px;
}

.brand-card h3,
.why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.brand-card p,
.why-card p {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 28px;
}

.brand-card span {
  color: #d4af37;
  font-size: 14px;
  font-weight: 700;
}

.contact-card {
  text-align: center;
}

.contact-card h2 {
  font-size: clamp(38px, 7vw, 72px);
  margin-bottom: 18px;
}

.bottom-nav {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .desktop-header {
    display: none;
  }

  body {
    padding-bottom: 95px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .brand-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .story-card,
  .contact-card {
    padding: 28px;
    border-radius: 24px;
  }

  .brand-card,
  .why-card {
    min-height: auto;
  }

  .bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 520px;
    height: 72px;
    padding: 8px;
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(15, 15, 20, 0.78);
    backdrop-filter: blur(24px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    z-index: 100;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  }

  .bottom-nav a,
  .bottom-nav button {
    border: none;
    background: transparent;
    color: #a9a9a9;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-family: inherit;
  }

  .bottom-nav i {
    font-size: 18px;
  }

  .bottom-nav a.active,
  .bottom-nav button.active {
    background: linear-gradient(135deg, #d4af37, #f5e6a8);
    color: #08080c;
  }

  .mobile-menu {
    position: fixed;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 34px);
    max-width: 500px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(15, 15, 20, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.24);
    backdrop-filter: blur(24px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .mobile-menu.show {
    display: grid;
    gap: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-menu a {
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 480px) {
  section {
    padding: 64px 16px;
  }

  .hero {
    min-height: 92vh;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    width: 100%;
  }
}