* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1f24;
  background-color: #f6f4f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 20px;
  background: #ffffff;
  border-bottom: 1px solid #ece6e1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6f66;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f0eae4;
}

.nav a:focus,
.nav a:hover {
  background: #e6ded6;
}

.ad-label {
  font-size: 12px;
  font-weight: 600;
  color: #7a3d2c;
  padding: 6px 10px;
  border-radius: 14px;
  background: #fbe9e1;
}

.hero {
  position: relative;
  padding: 80px 28px;
  border-radius: 28px;
  overflow: hidden;
  color: #ffffff;
  background: #312e3b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f1c9b5;
  font-weight: 600;
}

.button.secondary {
  background: #fef4ee;
  color: #241f1b;
}

.section {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section h2 {
  font-size: 28px;
  margin: 0;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 24, 19, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.offset-left {
  margin-left: -32px;
}

.card.offset-right {
  margin-right: -32px;
}

.media-block {
  flex: 1 1 320px;
  background: #ddd3cc;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
}

.bg-sand {
  background-color: #d9d2c8;
}

.bg-clay {
  background-color: #d4c3b8;
}

.bg-mist {
  background-color: #c9d2d6;
}

.bg-linen {
  background-color: #d2cec8;
}

.bg-sage {
  background-color: #c7d3cc;
}

.bg-blush {
  background-color: #d1c2c7;
}

.bg-pearl {
  background-color: #d7cfc8;
}

.bg-fog {
  background-color: #c8d0cf;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3ece7;
  font-size: 13px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(22, 17, 13, 0.08);
}

.service-card .image {
  background: #d4c7bf;
  height: 150px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.service-card .content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #7a3d2c;
}

.band {
  background: #2a2f38;
  color: #ffffff;
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.band-content .card {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.testimonial .media-block {
  min-height: 200px;
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 16px 32px rgba(24, 19, 15, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7cfc8;
  font-size: 14px;
  width: 100%;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #f1c9b5;
  font-weight: 600;
  cursor: pointer;
}

button:hover,
button:focus {
  background: #eab79f;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  background: #1e1a17;
  color: #ffffff;
  padding: 32px 20px 60px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer small {
  color: #c8bdb5;
  display: block;
  margin-top: 12px;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1c1f24;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #333942;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 50;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-page .page {
  max-width: 900px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(24, 18, 14, 0.08);
}

@media (max-width: 900px) {
  .card.offset-left,
  .card.offset-right {
    margin: 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    position: static;
    margin: 24px 20px 0;
    display: inline-flex;
  }
}
