* {
  box-sizing: border-box;
}

:root {
  --sand: #f5f1ea;
  --sage: #7c8b6f;
  --earth: #4b3d2a;
  --clay: #c78f6a;
  --olive: #586044;
  --sky: #dce7e5;
  --ink: #1f1f1f;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw;
  background: var(--white);
  border-bottom: 1px solid #e5e0d7;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  background: var(--sky);
  border-radius: 999px;
  align-self: flex-start;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus {
  background: var(--sky);
}

.nav-toggle {
  display: none;
  background: var(--olive);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 8vw 60px;
  background-image: url("https://images.unsplash.com/photo-1468327768560-75b778cbb551?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  gap: 16px;
}

.hero h1 {
  font-size: 2.7rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--earth);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--white);
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1 1 280px;
  min-width: 260px;
}

.offset-card {
  background: var(--sky);
  padding: 32px;
  border-radius: 20px;
  transform: translateY(24px);
}

.image-frame {
  background: var(--sage);
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 12px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 16px;
  flex-wrap: wrap;
}

.service-row img {
  max-width: 180px;
  border-radius: 12px;
}

.service-meta {
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  color: var(--earth);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.quote {
  background: var(--earth);
  color: var(--white);
  padding: 28px;
  border-radius: 22px;
}

.form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(30, 30, 30, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d0c7;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  z-index: 10;
}

.footer {
  padding: 50px 8vw;
  background: var(--earth);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 0.9rem;
  color: #f0e7da;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(25, 25, 25, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.banner-btn {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.banner-accept {
  background: var(--clay);
  color: var(--white);
}

.banner-reject {
  background: #ded6c9;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.muted {
  color: #5c564e;
}

.background-panel {
  padding: 40px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1446071103084-c257b5f70672?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 34, 24, 0.55);
  border-radius: 28px;
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(40, 40, 40, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.simple-hero {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.page-hero {
  padding: 60px 8vw;
  background: var(--sky);
}

.page-hero h1 {
  margin-top: 0;
}

.content-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.content-block .panel {
  flex: 1 1 260px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .topbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .offset-card {
    transform: none;
  }
}
