* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0A0B1C;
  color: #CCCCCC;
  font-family: Futura, 'Century Gothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

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

.section {
  padding: 80px 60px;
  background: #0A0B1C;
}

.section-alt {
  background: #0F1029;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

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

.centered {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero h1 {
  color: #D4B179;
  font-size: clamp(38px, 8vw, 76px);
  letter-spacing: 3px;
  line-height: 1.15;
}

.hero-subheading {
  margin-top: 14px;
  color: #FFFFFF;
  font-size: 18px;
  font-style: italic;
}

.gold-divider {
  width: 60px;
  height: 1px;
  margin: 24px auto 28px;
  background: #D4B179;
}

.hero-tagline {
  max-width: 840px;
  margin: 0 auto 36px;
  color: #CCCCCC;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 36px;
  border-radius: 6px;
  background: #D4B179;
  color: #0A0B1C;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #FFFFFF;
  color: #0A0B1C;
  outline: none;
}

.section-title {
  color: #D4B179;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 2.5px;
  line-height: 1.25;
  text-align: center;
}

.feature-icon {
  display: block;
  margin: 4px auto 26px;
  color: #D4B179;
  font-size: 54px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.service-card {
  padding: 30px;
  border: 1px solid rgba(212, 177, 121, 0.2);
  border-radius: 10px;
  background: #0F1029;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: #D4B179;
  box-shadow: 0 0 20px rgba(212, 177, 121, 0.15);
}

.card-icon {
  color: #D4B179;
  font-size: 42px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 14px;
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.35;
}

.service-card p {
  color: #CCCCCC;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 44px;
}

.why-item {
  text-align: center;
}

.why-icon {
  color: #D4B179;
  font-size: 42px;
  margin-bottom: 18px;
}

.why-item h3 {
  margin-bottom: 10px;
  color: #FFFFFF;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1.35;
}

.why-item p {
  color: #CCCCCC;
}

.cta-section p {
  margin: 0 auto 32px;
  color: #CCCCCC;
}

.footer {
  padding: 28px 20px;
  background: #06070F;
  text-align: center;
}

.footer p {
  color: #CCCCCC;
  font-size: 13px;
  line-height: 1.6;
}

.footer a {
  display: inline-block;
  margin-top: 6px;
  color: #D4B179;
  font-size: 12px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: #FFFFFF;
  outline: none;
}

@media (max-width: 767px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

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

  .service-card {
    padding: 28px 22px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
  }
}
