* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #ded8cf;
  background-color: #fbf9f6;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5a5a;
  border: 1px solid #d5d0c5;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #f3eee6;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #7b8a63;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw 40px;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.5vw, 3.4rem);
  margin: 0 0 20px;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(520px, 100%);
  background-color: #efe8dd;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(18px);
}

.hero-card img {
  border-radius: 20px;
  width: 100%;
  height: 320px;
  background-color: #d9d2c7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background-color: #2f3e32;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #e7e0d5;
  color: #2f3e32;
  border: 1px solid #cfc7bb;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 60px 6vw;
}

.section-alt {
  background-color: #fff;
}

.offset-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.offset-card:nth-child(2) {
  margin-left: 8vw;
  background-color: #f2efe8;
}

.offset-card:nth-child(3) {
  margin-left: 2vw;
  background-color: #efe8dd;
}

.offset-card img {
  width: 240px;
  height: 180px;
  border-radius: 16px;
  background-color: #d9d2c7;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #f9f7f3;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2dccf;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background-color: #ded7cb;
}

.price {
  font-weight: 700;
  color: #2f3e32;
}

.process-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.process-panel {
  flex: 1 1 300px;
  background-color: #f2efe8;
  padding: 28px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.process-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.process-panel > * {
  position: relative;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.form-card {
  flex: 1 1 320px;
  background-color: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e1d9cf;
}

.form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #cfc7bb;
  background-color: #faf8f4;
}

.form-note {
  font-size: 0.9rem;
  color: #555;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background-color: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e4ddd2;
}

.about-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.about-split img {
  width: min(420px, 100%);
  height: 300px;
  border-radius: 20px;
  background-color: #d9d2c7;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background-color: #1f2a24;
  color: #f4f1ec;
}

.footer a {
  color: #f4f1ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 5;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fbf9f6;
  border-top: 1px solid #d9d2c7;
  padding: 16px 6vw;
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 60px 6vw 30px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(28, 36, 30, 0.55);
}

.page-hero > * {
  position: relative;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1501876725168-00c445821c9e?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1495433324511-bf8e92934d90?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
}

.hero-legal {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1502672260266-552b28bfe52e?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1475856034135-1179eecd7a65?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1464890100898-a385f744067f?w=1400&q=80");
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wide-card {
  background-color: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e4ddd2;
}

.wide-card img {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  background-color: #d9d2c7;
}

.image-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-panel img {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 18px;
  background-color: #ddd5ca;
}

.site-footer-disclaimer {
  font-size: 0.85rem;
  color: #d6cfc6;
  margin-top: 16px;
}

@media (max-width: 820px) {
  .offset-card:nth-child(2),
  .offset-card:nth-child(3) {
    margin-left: 0;
  }
  .sticky-cta {
    position: static;
    margin: 20px 6vw;
  }
}
