* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f1d;
  background: #f6f4ef;
  line-height: 1.6;
}

a {
  color: #1c1f1d;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 24px;
  background: #f6f4ef;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1c1f1d;
  color: #f6f4ef;
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 80px;
}

.hero-top {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 26px;
  background-color: #c6d3c1;
  overflow: hidden;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1c1f1d;
  color: #f6f4ef;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-light {
  background: transparent;
  border: 1px solid #1c1f1d;
  color: #1c1f1d;
}

.section {
  padding: 60px 6%;
}

.section.alt {
  background: #ede9e1;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-color: #2d3a33;
  background-size: cover;
  background-position: center;
  color: #f6f4ef;
}

.section-bg .panel {
  background: rgba(28, 31, 29, 0.72);
  color: #f6f4ef;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.panel-image {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #c7d2cb;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.services {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card-media {
  background-color: #c6d3c1;
}

.media-olive {
  background-color: #c6d3c1;
}

.media-mist {
  background-color: #c7d2cb;
}

.media-sand {
  background-color: #d3d0c6;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
}

.highlight {
  background: #1c1f1d;
  color: #f6f4ef;
  padding: 30px;
  border-radius: 22px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c6bf;
  background: #fdfcf9;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #d4822f;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1c1f1d;
  color: #f6f4ef;
  padding: 40px 6%;
  margin-top: auto;
}

.footer a {
  color: #f6f4ef;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-block {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6%;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  display: flex;
  gap: 24px;
  padding: 40px 6%;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .hero-text {
  flex: 1 1 320px;
}

.page-hero .hero-media {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cbd4cf;
}

.page-hero .hero-media img {
  width: 100%;
  height: 280px;
}

.inline-link {
  text-decoration: underline;
}

.note {
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
  }
}
