* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1b1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5%;
  background: #f1e9df;
  position: relative;
}

.topbar .brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #1c1b1a;
  color: #f6f3ef;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 5% 60px;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: #fdfbf8;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 38px;
  line-height: 1.2;
}

.hero-copy p {
  margin: 16px 0;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.img-wrap {
  background: #e8dfd5;
  border-radius: 20px;
  overflow: hidden;
}

.img-wrap.tall {
  height: 340px;
}

.img-wrap.medium {
  height: 240px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #1c1b1a;
  color: #f6f3ef;
}

.btn.secondary {
  background: transparent;
  color: #1c1b1a;
  border: 1px solid #1c1b1a;
}

.btn:focus,
.btn:hover,
.link-action:hover,
.nav-link:hover,
.sticky-cta:hover {
  opacity: 0.85;
}

.section {
  padding: 60px 5%;
  position: relative;
}

.section.alt {
  background: #efe7dc;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.split > * {
  flex: 1 1 280px;
}

.floating-note {
  position: absolute;
  right: 7%;
  top: -18px;
  background: #1c1b1a;
  color: #f6f3ef;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1c1b1a;
  background: #fdfbf8;
  cursor: pointer;
}

.service-pill.active {
  background: #1c1b1a;
  color: #f6f3ef;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7bfb5;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1c1b1a;
  color: #f6f3ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
}

.footer {
  margin-top: auto;
  padding: 40px 5%;
  background: #1c1b1a;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer a {
  color: #f6f3ef;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.nav-link {
  padding: 6px 8px;
}

.link-action {
  color: #1c1b1a;
  text-decoration: underline;
}

.page-hero {
  padding: 40px 5% 30px;
}

.page-hero h1 {
  margin-top: 0;
  font-size: 34px;
}

.content-block {
  padding: 20px 5% 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }

  .floating-note {
    position: static;
    margin-bottom: 12px;
  }
}
