* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1f22;
  background-color: #f5f3ef;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
  padding: 28px 24px 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  background: #f0e3d5;
  padding: 6px 10px;
  border-radius: 14px;
  max-width: 240px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  background: #fff4e5;
  border-radius: 16px;
}

.hero {
  margin-top: 28px;
  background: #e7e1d8;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero .hero-bg {
  min-height: 360px;
  background-color: #d8d2c9;
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(245,243,239,0) 0%, rgba(245,243,239,0.95) 70%);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 40px;
}

.hero p {
  margin: 0;
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1e1f22;
  color: #f5f3ef;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-outline {
  background: transparent;
  color: #1e1f22;
  border: 1px solid #1e1f22;
}

.section {
  margin-top: 60px;
  position: relative;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split .col {
  flex: 1 1 320px;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
  transform: translateY(-18px);
}

.img-card {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d7d0c6;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-left {
  margin-left: -20px;
}

.offset-right {
  margin-right: -20px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.06);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: #19434e;
}

.service-card .img-card {
  height: 160px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  font-weight: 600;
}

.form-panel {
  background: #f0e3d5;
  border-radius: 26px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #c9c2b8;
  background: #fff;
  font-size: 14px;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #19434e;
  color: #f5f3ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 10;
}

.legal {
  font-size: 13px;
  color: #4b4d52;
  margin-top: 40px;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d2cbc1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.footer a {
  padding: 6px 10px;
  background: #fff;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1e1f22;
  color: #f5f3ef;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #f5f3ef;
  color: #1e1f22;
  border-radius: 16px;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.notice {
  background: #f7efe6;
  border-left: 4px solid #19434e;
  padding: 16px 20px;
  border-radius: 18px;
}

.meta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.meta-block span {
  background: #fff;
  padding: 6px 10px;
  border-radius: 12px;
}

.section-bg {
  background-color: #ded7cd;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 30px;
  color: #1e1f22;
}

.section-bg-alt {
  background-color: #e3ddd3;
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 30px;
  color: #1e1f22;
}

.section-bg-alt2 {
  background-color: #e6e0d7;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 30px;
  color: #1e1f22;
}

.section-bg .overlay {
  background: rgba(245, 243, 239, 0.92);
  border-radius: 22px;
  padding: 24px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.spacer {
  height: 18px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 32px;
  }

  .offset-card {
    transform: none;
  }

  .offset-left,
  .offset-right {
    margin: 0;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
