* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #f2ede6;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background-color: #efe2d6;
  font-size: 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 48px 40px;
  color: #ffffff;
  background-color: #6e5a4a;
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .hero-inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-end;
}

.hero-copy {
  max-width: 520px;
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  background-color: #f4e0cf;
  color: #2b211a;
}

.btn-secondary {
  background-color: #fff6ef;
}

.section {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #fbf7f2;
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d8cfc4;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.offset-card.pull-right {
  align-self: flex-end;
  max-width: 420px;
}

.offset-card.pull-left {
  align-self: flex-start;
  max-width: 440px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.service-item .image-frame {
  width: 140px;
  height: 110px;
  flex: 0 0 auto;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #6a4d3a;
}

.quote-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1;
  min-width: 220px;
  background-color: #f2ede6;
  border-radius: 14px;
  padding: 16px;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d2c7bb;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background-color: #2c241d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.sticky-cta button {
  background-color: #f4e0cf;
  color: #2b211a;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  margin-top: auto;
  padding: 40px 48px;
  background-color: #f2ede6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}

.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.banner-background {
  background-color: #a8988b;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.mood-background {
  background-color: #d3c6b7;
  background-image: url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.side-image-large {
  width: 100%;
  height: 320px;
}

.image-small {
  width: 100%;
  height: 220px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero .hero-inner,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
