* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f2ed;
  --surface: #ffffff;
  --ink: #1d1b1a;
  --muted: #6b645f;
  --accent: #7a4f3d;
  --accent-dark: #5b3a2c;
  --soft: #e9e2da;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 6vw 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus {
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 0 6vw;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #d9d0c6;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.offset-panel {
  background: var(--soft);
  padding: 32px;
  margin-left: 6vw;
  margin-right: 2vw;
}

.offset-panel.alt {
  margin-left: 2vw;
  margin-right: 6vw;
  background: #efe7de;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd2c8;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.btn:hover,
.btn:focus {
  opacity: 0.9;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cfc6;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  background: #1f1c1a;
  color: #f4f0eb;
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f6e8da;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 20;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #f7efe6;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.contact-block {
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-section {
  background: #efe7de;
  padding: 36px 6vw;
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1481277542470-605612bd2d61?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
}

.bg-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
}

@media (max-width: 900px) {
  .offset-panel,
  .offset-panel.alt {
    margin: 0 6vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
