* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f2ec;
  line-height: 1.6;
}

a {
  color: #2b5d63;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2b5d63;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background-color: #f0e7db;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b4b3e;
  background-color: #f7d7b0;
  padding: 6px 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
  background-color: #ede3d6;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-content h1,
.split-content h2 {
  margin-top: 0;
}

.hero {
  padding: 60px 0 40px;
}

.hero-card {
  background-color: #fff2e1;
  padding: 28px;
  border-radius: 18px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d7c1ac;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background-color: #2b5d63;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #b8774c;
}

.section-banner {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
  background-color: #d8d1c4;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #2b5d63;
}

.highlight {
  background-color: #fdf7f1;
  border-left: 6px solid #b8774c;
  padding: 18px;
}

.quote {
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  margin: 12px 0;
}

.form-wrapper {
  background-color: #fef7ef;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbb8a2;
  font-size: 16px;
  background-color: #fff;
}

.two-col {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.footer {
  background-color: #efe5d8;
  padding: 30px 24px;
  margin-top: 40px;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  top: 45%;
  transform: translateY(-50%);
  background-color: #2b5d63;
  color: #fff;
  padding: 14px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.bg-art {
  background-color: #d8c4b0;
  border-radius: 18px;
  padding: 24px;
}

.bg-image {
  border-radius: 18px;
  background-color: #d8c4b0;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?w=1400&q=80");
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
}

.simple-list {
  padding-left: 18px;
  margin: 0;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    transform: none;
    width: 100%;
    margin: 16px 0;
  }
}
