:root {
  --dark: #1f2933;
  --text: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --cream: #f3efe7;
  --accent: #c47f45;
  --accent-dark: #9a5d2d;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(31, 41, 51, 0.68), rgba(31, 41, 51, 0.72)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 28px 7%;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.nav-button,
.primary-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-button:hover,
.primary-button:hover,
button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-content {
  max-width: 720px;
  margin-top: auto;
  margin-bottom: auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 0 0 22px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.section,
.photo-section,
.quote-section {
  padding: 80px 7%;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.services,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.steps div,
.quote-form {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3,
.steps h3 {
  color: var(--dark);
  margin-top: 0;
}

.photo-section {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 12px;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  background: var(--dark);
  color: var(--white);
}

.quote-section h2 {
  color: var(--white);
}

.quote-copy {
  position: sticky;
  top: 30px;
  align-self: start;
}

.quote-form {
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d8dee8;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  resize: vertical;
}

small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 6px;
}

button {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
}

footer {
  text-align: center;
  padding: 28px;
  background: #111827;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .intro,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .services,
  .gallery,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .gallery img {
    height: 240px;
  }

  nav {
    align-items: flex-start;
  }
}
