* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0 12px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  background: #1c1c1c;
  color: #f5efe9;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-left: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 48px 0 64px;
}

.hero-text {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 18px 18px 0;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.12);
  transform: translateY(18px);
}

.hero-image {
  flex: 1 1 340px;
  background: #d9d2c8;
  border-radius: 26px;
  overflow: hidden;
  min-height: 380px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  font-weight: 600;
  background: #1c1c1c;
  color: #f7f4f1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1c1c1c;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe7dd;
}

.section.with-image {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.with-image .offset-box,
.section.with-image .testimonial {
  background: rgba(255, 255, 255, 0.92);
  color: #1c1c1c;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0 0 18px;
}

.asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asymmetric.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.1);
}

.offset-box.shift {
  margin-left: 42px;
}

.asymmetric-image {
  flex: 1 1 320px;
  background: #d8d0c7;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
}

.image-shell {
  background: #d8d0c7;
  border-radius: 18px;
  overflow: hidden;
}

.asymmetric-image img {
  width: 100%;
  height: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(18, 18, 18, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #d9d2c8;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: #1c1c1c;
  color: #f7f4f1;
  border-radius: 20px;
  padding: 20px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c0b5;
  font-size: 1rem;
}

.inline-cta {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 840px;
  width: calc(100% - 36px);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.footer {
  margin-top: auto;
  background: #171513;
  color: #f2ece6;
  padding: 48px 0 30px;
}

.footer a {
  color: #f2ece6;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.note {
  font-size: 0.92rem;
  color: #5a5248;
}

.page-hero {
  padding: 40px 0 24px;
}

.simple-section {
  padding: 32px 0;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

@media (max-width: 820px) {
  .offset-box.shift {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
