:root {
  --bg: #f7f4ef;
  --ink: #1d1b19;
  --muted: #5d5955;
  --accent: #b3683c;
  --accent-soft: #e8d3c2;
  --deep: #2d2a27;
  --paper: #fff9f2;
  --sage: #dfe5dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--ink);
  text-decoration: underline;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 28px 0 8px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--deep);
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1 1 340px;
  padding: 20px 0;
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 360px;
  background: #d6c9bc;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/7031732/pexels-photo-7031732.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 249, 242, 0.92);
  padding: 18px;
  border-radius: 14px;
  width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card button {
  margin-top: 12px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--paper);
}

.section-photo {
  background-image: url("https://images.pexels.com/photos/35147280/pexels-photo-35147280.jpeg");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
  position: relative;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 25, 0.55);
}

.section-photo .page,
.section-photo .content {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.offset-left {
  margin-left: -24px;
}

.offset-right {
  margin-right: -24px;
}

.media {
  flex: 1 1 320px;
  background: #d9d3cc;
  border-radius: 18px;
  overflow: hidden;
}

.content {
  flex: 1 1 320px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  position: relative;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.card:nth-child(2) {
  margin-top: 26px;
}

.card:nth-child(4) {
  margin-top: -12px;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.banner {
  background: var(--deep);
  color: #f3efe9;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.banner button {
  background: #f3efe9;
  color: var(--deep);
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea,
button {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d0c7;
  background: #ffffff;
}

button {
  background: var(--accent);
  color: #fffaf4;
  border: none;
  cursor: pointer;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--deep);
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
  border: none;
}

.footer {
  background: var(--deep);
  color: #f3efe9;
  padding: 40px 0 60px;
}

.footer a {
  color: #f3efe9;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
}

.legal-box {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
}
