/* Font and Colors */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@400;500&display=swap');

:root {
  --cream: #f5efe6;
  --gold: #e6c47a;
  --brown: #4a2b13;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--brown);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

a {
  color: var(--brown);
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.85;
}

section {
  padding: 4rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 5rem 1rem 6rem;
  background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 43, 19, 0.55);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.grid-two {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

.steps li {
  margin-bottom: 0.8rem;
}

.testimonial {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.author {
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.highlight {
  background: var(--gold);
  color: var(--brown);
  text-align: center;
  padding: 4rem 1rem;
}

.cta {
  text-align: center;
  background: var(--cream);
  padding: 4rem 1rem;
}

.footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 2rem 1rem;
  color: #876c4b;
  background: transparent;
}
