* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: #1c1c1c;
  color: #fefefe;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 24px 6vw 56px;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #5d5d5d;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1c1c1c;
}

.btn.ghost {
  background: #f1e8df;
  border-color: #f1e8df;
  color: #1c1c1c;
}

.btn-link {
  color: #1c1c1c;
  font-weight: 600;
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 2px;
}

.image-wrap {
  background: #d8d3cc;
  border-radius: 24px;
  overflow: hidden;
  padding: 6px;
}

.image-box {
  background: #d8d3cc;
  border-radius: 14px;
  overflow: hidden;
}

.section {
  padding: 56px 6vw;
}

.section-bg {
  background-image: linear-gradient(rgba(20, 20, 20, 0.55), rgba(20, 20, 20, 0.55)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.section-bg a {
  color: #fefefe;
  border-color: #fefefe;
}

.section.alt {
  background: #f1e8df;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card img {
  border-radius: 14px;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-box {
  background: #1c1c1c;
  color: #fefefe;
  padding: 24px;
  border-radius: 20px;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: #5b5b5b;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-card img {
  border-radius: 50%;
  height: 72px;
  width: 72px;
}

.footer {
  padding: 40px 6vw;
  background: #191919;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d2cfc8;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-page {
  padding: 40px 6vw 70px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 14px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-grid .panel {
  flex: 1 1 260px;
}

.small-note {
  font-size: 0.85rem;
  color: #5f5f5f;
}
