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

:root {
  --burgundy: #5c1724;
  --burgundy-dark: #3d0e17;
  --burgundy-light: #762334;

  --beige: #f7eedf;
  --beige-dark: #eadcc7;

  --gold: #e5ad28;
  --gold-hover: #f0bd42;

  --text-dark: #281b18;
  --text-light: #fff9ef;
  --muted-dark: #74645d;
  --muted-light: #e4d4c5;

  --border-light: #dfcfba;
  --border-dark: #7a3340;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--beige);
  color: var(--text-dark);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
}


/* ---------------- NAVIGATION ---------------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(61, 14, 23, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-content {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;

  color: var(--gold);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--muted-light);
  font-size: 0.93rem;
  font-weight: 600;

  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--gold);
}


/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  overflow: hidden;

  padding: 125px 0 120px;

  color: var(--text-light);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(229, 173, 40, 0.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--burgundy-dark),
      var(--burgundy)
    );
}

.hero::after {
  content: "";

  position: absolute;
  width: 380px;
  height: 380px;

  right: -140px;
  bottom: -180px;

  border: 80px solid rgba(229, 173, 40, 0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 75px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--gold);

  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.17em;

  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;

  max-width: 850px;
}

.hero-description {
  color: var(--muted-light);

  font-size: 1.18rem;
  max-width: 680px;

  margin-top: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 40px;
}


/* ---------------- BUTTONS ---------------- */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-height: 52px;
  padding: 0 26px;

  border-radius: 8px;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.primary {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.primary:hover {
  background: var(--gold-hover);
}

.secondary {
  color: var(--text-light);

  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ---------------- HERO PROCESS CARD ---------------- */

.hero-card {
  background: rgba(255, 248, 236, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;

  padding: 34px;

  box-shadow: 0 25px 60px rgba(25, 3, 8, 0.22);

  backdrop-filter: blur(8px);
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.metric-label {
  color: var(--muted-light);
  font-weight: 600;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 900;

  color: var(--gold);
}

.divider {
  height: 1px;

  background: rgba(255, 255, 255, 0.13);

  margin: 27px 0;
}


/* ---------------- SECTIONS ---------------- */

.section {
  padding: 105px 0;
}

.section h2 {
  color: var(--burgundy-dark);

  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;

  max-width: 800px;
}

.alternate {
  background: var(--burgundy);
  color: var(--text-light);
}

.alternate .section-label {
  color: var(--gold);
}

.alternate h2 {
  color: var(--text-light);
}


/* ---------------- HOW IT WORKS ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-top: 58px;
}

.card {
  min-height: 260px;

  background: #fffaf1;

  border: 1px solid var(--border-light);
  border-radius: 14px;

  padding: 30px;

  box-shadow: 0 10px 30px rgba(69, 35, 24, 0.05);
}

.card > span {
  color: var(--burgundy);

  font-size: 0.82rem;
  font-weight: 900;
}

.card h3,
.feature h3 {
  font-size: 1.3rem;

  margin: 24px 0 12px;
}

.card p {
  color: var(--muted-dark);
}


/* ---------------- FEATURES ---------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  margin-top: 58px;
}

.feature {
  padding: 25px;

  border-left: 4px solid var(--gold);

  background: rgba(255, 255, 255, 0.045);
  border-radius: 0 10px 10px 0;
}

.feature h3 {
  color: var(--gold);

  margin-top: 0;
}

.feature p {
  color: var(--muted-light);
}


/* ---------------- ABOUT ---------------- */

.large-text {
  margin-top: 30px;

  color: var(--muted-dark);

  font-size: 1.18rem;
}


/* ---------------- CONTACT ---------------- */

.contact-section {
  background: var(--beige-dark);

  border-top: 1px solid var(--border-light);
}

.contact-section p {
  color: var(--muted-dark);

  margin: 25px 0;
}


/* ---------------- FOOTER ---------------- */

footer {
  background: var(--burgundy-dark);
  color: var(--text-light);

  padding: 48px 0;

  border-top: 4px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;

  gap: 30px;

  align-items: end;
}

.footer-content strong {
  color: var(--gold);

  font-size: 1.3rem;
}

.footer-content p {
  color: var(--muted-light);
}

.footer-links {
  display: flex;
  gap: 24px;

  color: var(--muted-light);
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #bca99e;

  font-size: 0.82rem;
}


/* ---------------- MOBILE ---------------- */

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .hero {
    padding: 85px 0;
  }

  .hero-content,
  .cards,
  .feature-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 50px;
  }

  .section {
    padding: 75px 0;
  }

  .cards {
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}