* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2320;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  padding: 18px 0;
  background: #f1efe9;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 6px 10px;
  border: 1px solid #c3c1b9;
  border-radius: 999px;
  background: #fbfaf7;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  background-image: url("https://images.unsplash.com/photo-1497215842964-222b430dc094?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2d3a33;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 14, 0.45);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  color: #fefdfb;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-copy p {
  max-width: 520px;
}

.hero-card {
  flex: 0.9;
  align-self: flex-end;
  background: rgba(250, 248, 244, 0.92);
  padding: 24px;
  border-radius: 18px;
  color: #1c2320;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f3d2d;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-light {
  background: #f2ede3;
  color: #1f3d2d;
  border: 1px solid #1f3d2d;
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.media-frame {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9e2d7;
}

.content-block {
  flex: 1;
}

.content-block h2 {
  margin-top: 0;
  font-size: 2rem;
}

.note-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.note {
  flex: 1;
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2ded4;
}

.process-band {
  background-image: url("https://images.pexels.com/photos/7908647/pexels-photo-7908647.jpeg");
  background-size: cover;
  background-position: center;
  color: #f9f8f4;
  background-color: #2b352f;
}

.process-band .container {
  background: rgba(20, 27, 22, 0.6);
  padding: 48px;
  border-radius: 20px;
}

.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e1ddd2;
}

.service-card .card-media {
  height: 180px;
  background-color: #ccd9d1;
}

.service-card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #1f3d2d;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f3d2d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.testimonial {
  padding: 22px;
  background: #fbfaf7;
  border-left: 4px solid #1f3d2d;
  margin-bottom: 18px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e1ddd2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfcabf;
  font-size: 1rem;
  background: #fff;
}

button {
  cursor: pointer;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

footer {
  background: #1b221f;
  color: #f2ede3;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid > div {
  flex: 1;
  min-width: 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.accent-block {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf9;
  background-color: #27332d;
}

.accent-block .container {
  background: rgba(25, 36, 30, 0.65);
  padding: 40px;
  border-radius: 20px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.page-hero {
  padding: 70px 0;
  background-color: #ece7dc;
}

.page-hero.with-image {
  background-size: cover;
  background-position: center;
  color: #fefdfb;
  background-color: #2b352f;
}

.page-hero.with-image .container {
  background: rgba(18, 25, 22, 0.55);
  padding: 32px;
  border-radius: 18px;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1483794344563-d27a8d18014e?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.pexels.com/photos/35388120/pexels-photo-35388120.jpeg");
}

.list-panels {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.panel {
  flex: 1;
  min-width: 240px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2ded4;
}

.legal {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e2ded4;
}

.selected-wrap {
  margin-top: 14px;
  padding: 12px;
  background: #f2ede3;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    flex-direction: column;
  }

  .hero-card {
    align-self: stretch;
  }
}
