* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5f6368;
  --paper: #f6f3ef;
  --accent: #b3602a;
  --accent-dark: #7a3c16;
  --cream: #efe7dc;
  --stone: #d9d2c6;
  --charcoal: #262626;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.top-strip {
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-strip .ad-label {
  font-weight: 600;
}

header {
  padding: 28px 0 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--stone);
}

.hero {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.hero-text {
  flex: 1 1 360px;
  background: #fff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-panel {
  flex: 1 1 360px;
  min-height: 360px;
  background: var(--stone);
  border-radius: 28px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: -16px 16px 0 rgba(179, 96, 42, 0.2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--cream);
}

.section {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text-block {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.section .text-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.section .text-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.section .image-block {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}

.image-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(31, 31, 31, 0.72);
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 13px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card .card-image {
  height: 180px;
  background: var(--stone);
}

.card .card-body {
  padding: 18px;
}

.card .card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.offset-band {
  background: var(--cream);
  padding: 28px;
  border-radius: 20px;
  position: relative;
  top: -18px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 240px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 380px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b6;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 160px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-top: 40px;
  background: var(--charcoal);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.sticky-cta a {
  background: #fff;
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #d9d2c6;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  padding: 18px 20px;
  display: none;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  z-index: 99;
}

.cookie-banner p {
  color: var(--muted);
  max-width: 640px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  margin-top: 24px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.map-shell {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--stone);
}

.references {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
