* {
  box-sizing: border-box;
}

:root {
  --black: #111214;
  --charcoal: #1d2024;
  --gold: #cda85b;
  --cream: #f7f3ea;
  --white: #ffffff;
  --muted: #6c7077;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(rgba(10, 11, 13, 0.82), rgba(10, 11, 13, 0.82)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
  overflow: hidden;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  border: 1px solid var(--gold);
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
}

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

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 12px;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.98;
  margin: 18px 0 28px;
  max-width: 900px;
}

h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  margin: 10px 0 24px;
}

.gold-line {
  width: 72px;
  height: 5px;
  background: var(--gold);
  margin-bottom: 28px;
}

.subtitle {
  font-size: clamp(15px, 2vw, 21px);
  max-width: 760px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.65);
}

.section {
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro > p {
  font-size: 18px;
  color: var(--muted);
}

.services {
  background: var(--cream);
}

.center {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  padding: 34px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.icon {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}

.card h3 {
  font-size: 20px;
  margin: 8px 0 12px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.why {
  background: var(--charcoal);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-list p {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.why-list span {
  color: var(--gold);
  margin-right: 12px;
  font-weight: 700;
}

.contact {
  background: var(--white);
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  border: 1px solid #e5e1d8;
  padding: 56px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contact-details a,
.contact-details span {
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 28px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .intro,
  .why-grid,
  .contact-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 34px 26px;
  }
}
