:root {
  --color-bg-primary: #000000;
  --color-bg-secondary: #0d0d0d;
  --color-bg-light: #f9f9f9;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #a8a8a8;
  --gold-1: #edc664;
  --gold-2: #a97539;
  --gold-3: #f7f1b8;
  --gold-4: #936538;
  --gold-5: #e2b85e;
  --gold-gradient: linear-gradient(
    135deg,
    #edc664 0%,
    #a97539 23%,
    #f7f1b8 33%,
    #936538 58%,
    #e2b85e 100%
  );
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Jost", "Inter", sans-serif;
  --spacing-section: 80px 0;
  --border-radius: 8px;
  --gold-border: 1px solid #c8a360;
  --elevate: rgba(255, 255, 255, 0.06);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  font-family: var(--font-body);
  background: var(--color-bg-primary);
  color: var(--color-text-light);
}
body {
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: radial-gradient(
    circle at top,
    rgba(237, 198, 100, 0.5),
    rgba(169, 117, 57, 0.15)
  );
  display: grid;
  place-items: center;
}
.logo-mark svg {
  width: 18px;
  height: 18px;
  stroke: #e2b85e;
  stroke-width: 1.5;
}
.brand-title {
  display: grid;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline-sm {
  font-family: "Jost", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: #f2e9c7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a {
  color: #f2f2f2;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #edc664;
}
.nav-cta {
  border: 1px solid #e2b85e;
  color: #e2b85e;
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: 0.2s;
}
.nav-cta:hover {
  background: #e2b85e;
  color: #1a1a1a;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}

.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.83));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.2vw, 3.75rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-content p {
  max-width: 560px;
  margin-top: 0.8rem;
  color: #ededed;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  background: var(--gold-gradient);
  color: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(232, 165, 60, 0.28);
  transition: 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid #e2b85e;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: 0.2s;
}
.btn-outline:hover {
  background: rgba(226, 184, 94, 0.12);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  width: min(430px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.95);
}
.hero-card .hero-card-inner {
  padding: 1rem;
}
.hero-card small {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #e2c57e;
}
.hero-card h3 {
  margin-top: 0.55rem;
  font-size: 1.2rem;
  color: #fff;
}

section {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.section-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #d8c48d;
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.section-title-contrast {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  color: #6f4f13;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}
.section-head {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  color: #fff;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.footer-text {
  color: #d8d8d8;
  font-size: 0.88rem;
  line-height: 1.45;
}
.gold {
  color: #e2b85e;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  gap: 0.8rem;
  position: absolute;
  top: 72px;
  right: 12px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.9rem;
  width: min(220px, 85vw);
}

.services {
  padding: 4.5rem 0 2.5rem;
  background: #0b0b0b;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
  border-radius: 10px;
  padding: 1rem;
  transition: 0.25s;
}
.service-card:hover {
  border-color: #e2b85e;
  transform: translateY(-4px);
}
.service-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(237, 198, 100, 0.2),
    rgba(169, 117, 57, 0.2)
  );
  margin-bottom: 0.7rem;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: #e2b85e;
  stroke-width: 1.2;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.service-card p {
  color: #d8d8d8;
  font-size: 0.9rem;
}

.about {
  background: #f9f9f9;
  color: #1a1a1a;
  padding: 4.8rem 0;
  border-radius: 16px;
  margin-top: 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: center;
}
.about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about p {
  color: #2e2e2e;
  margin-bottom: 1rem;
}
.about small {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #996d2f;
  font-weight: 600;
  font-size: 0.7rem;
}

.testimonials {
  background: #000;
  padding: 4rem 0 2rem;
  margin-top: 1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}
.testimonial-card p {
  font-style: italic;
  color: #f2f2f2;
  margin-bottom: 0.7rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f7f7f7;
  font-weight: 600;
}
.stars {
  color: #e2b85e;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.cta-final {
  margin-top: 1.2rem;
  border-radius: 14px;
  overflow: hidden;
  padding: 1.6rem;
  background: var(--gold-gradient);
  color: #1a1a1a;
}
.cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-final h3 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: 0.2rem;
}
.cta-final p {
  color: #1a1a1a;
  font-size: 0.95rem;
}
.cta-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #101010;
  color: #e2b85e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer {
  margin-top: 2rem;
  background: #0a0a0a;
  padding: 1.6rem 0;
  border-top: 1px solid #2f2f2f;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.footer-left {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.footer-left h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.footer-links li {
  color: #ccc;
}
.footer-bottom {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.7rem;
  font-size: 0.8rem;
  color: #b5b5b5;
  width: min(1200px, 92%);
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 700px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    width: 92%;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 2.4rem 1rem;
  }
  .about-grid {
    gap: 0.8rem;
  }
  .footer-row {
    flex-direction: column;
    align-items: center;
  }
}
