* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1e21;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 8px;
  background: #f6f5f2;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b5d4e;
  background: #efe7dd;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(120deg, rgba(246, 245, 242, 0.92), rgba(246, 245, 242, 0.68)), url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  max-width: 720px;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1c1e21;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: #2f3237;
  transform: translateY(-2px);
}

.button.alt {
  background: #d9cbbf;
  color: #1c1e21;
}

.button.alt:hover {
  background: #c5b3a2;
}

.split-section {
  padding: 70px 0;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background: #e6e0d6;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.media-fallback {
  background-color: #e6e0d6;
  width: 100%;
  height: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #6b5d4e;
}

.list {
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid #e3ddd4;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(26, 24, 20, 0.08);
}

.service-card .card-media {
  height: 160px;
  background: #e2dacf;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #6a4c2e;
}

.pricing-note {
  font-size: 0.9rem;
  color: #5c5f63;
}

.cta-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c1e21;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.28);
  z-index: 10;
}

.cta-bar .button {
  background: #f6f5f2;
  color: #1c1e21;
}

.form-section {
  background: #efe7dd;
  padding: 60px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bb;
  font-size: 1rem;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.footer {
  background: #1c1e21;
  color: #f2f2f2;
  padding: 40px 0;
  margin-top: 60px;
}

.footer .footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer a {
  color: #f2f2f2;
}

.legal {
  font-size: 0.85rem;
  color: #c9c9c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.2);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  flex: 1;
}

.simple-header {
  padding: 70px 0 40px;
  background: #efe7dd;
}

.simple-header h1 {
  margin: 0;
}

.content-block {
  padding: 50px 0;
}

.content-block .split {
  align-items: flex-start;
}

.notice {
  background: #f6f1e8;
  border-left: 4px solid #6a4c2e;
  padding: 16px;
}

.address-block {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(26, 24, 20, 0.08);
}

.section-bg {
  background: linear-gradient(120deg, rgba(246, 245, 242, 0.95), rgba(246, 245, 242, 0.75)), url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .cta-bar {
    left: 16px;
    right: 16px;
    flex-direction: column;
  }
}
