* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1f1e;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  background: #e6d9c9;
  color: #2e3a35;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  padding: 28px 0 40px;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f4d3f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #d8c9b7;
  color: #1f4d3f;
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
}

.hero-media .media-frame {
  background: #d7e0dc;
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(12px);
}

.hero-media .badge {
  position: absolute;
  top: -18px;
  right: 12px;
  background: #1f4d3f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.section {
  padding: 42px 0;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 340px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-12px);
}

.offset-media {
  flex: 1 1 360px;
}

.offset-media .media-frame {
  background: #eadfd1;
  border-radius: 18px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.service-card .media-frame {
  background: #cdd9d4;
  height: 160px;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f4d3f;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.highlight-panel {
  flex: 1 1 320px;
  background: #1f4d3f;
  color: #fff;
  padding: 26px;
  border-radius: 20px;
}

.highlight-panel.light {
  background: #efe7dc;
  color: #1c1f1e;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 280px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
}

.form-section {
  background: #1f4d3f;
  color: #fff;
  border-radius: 24px;
  padding: 30px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d7d4;
  font-size: 15px;
}

.footer {
  padding: 40px 6vw;
  background: #ece4d9;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #1c1f1e;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner .button {
  padding: 10px 16px;
}

.page-hero {
  padding: 34px 0;
}

.page-hero h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}

.legal-content {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

.contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-background {
  background: #dbe5df;
  border-radius: 28px;
  padding: 26px;
}

.section-background {
  background: #efe7dc;
  border-radius: 24px;
  padding: 26px;
}

.bg-storage {
  background-image: url("https://images.unsplash.com/photo-1506812574058-fc75fa93fead?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft {
  background-color: #d6dfda;
}
