* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #161616;
  --cream: #f6f2ed;
  --sand: #e4d9cd;
  --clay: #b9896d;
  --olive: #4c5a4f;
  --paper: #ffffff;
  --accent: #cc5c3a;
  --muted: #6c6c6c;
}

body {
  font-family: "Inter", "Helvetica", sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
}

.hero {
  position: relative;
  padding: 110px 0 140px;
  background: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin-top: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-outline {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}

.btn-dark {
  background: var(--black);
  color: var(--paper);
}

.btn-light {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--paper);
}

.section.sand {
  background: var(--sand);
}

.section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
}

.section .section-lead {
  max-width: 680px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.timeline h4 {
  font-size: 1.05rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.stat {
  flex: 1 1 180px;
  padding: 18px;
  background: var(--paper);
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  padding: 26px;
  border-radius: 18px;
}

.quote span {
  font-weight: 600;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-strip img {
  flex: 1 1 200px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--paper);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.form-panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.banner {
  position: fixed;
  inset: auto 20px 20px 20px;
  background: var(--black);
  color: var(--paper);
  padding: 18px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 50px 0 70px;
  background: var(--black);
  color: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--paper);
}

.page-hero {
  padding: 80px 0;
  background: var(--sand);
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
}

.legal {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }
}
