* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #1c1c1c;
  color: #f6f3ee;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  background-color: #d9d3cb;
  color: #1c1c1c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-end;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.05rem;
}

.hero-card {
  flex: 1 1 280px;
  background: #fff7ee;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #f6f3ee;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #f6f3ee;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.button:focus,
.button:hover,
.nav-links a:hover,
.inline-link:hover {
  opacity: 0.8;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #efe9e2;
}

.section.dark {
  background-color: #1c1c1c;
  color: #f6f3ee;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #d2cbc2;
  border-radius: 18px;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #f6f3ee;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.storyline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  background-color: #fff7ee;
}

.story-card img {
  border-radius: 12px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.section-tight {
  padding-top: 32px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.disclaimer {
  margin-top: 14px;
  font-size: 0.95rem;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  color: #1c1c1c;
  border-radius: 16px;
  padding: 22px;
  background-color: #fef8f0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.price-card .content {
  padding: 20px;
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 0.95rem;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  padding: 40px 0;
  background: #151515;
  color: #f6f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.references {
  font-size: 0.85rem;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 4;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffefe0;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  background-color: #fff7ee;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-item {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  background-color: #fef8f0;
}

.section-bg {
  background-color: #d8d0c7;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg .container {
  background: rgba(246, 243, 238, 0.92);
  padding: 32px;
  border-radius: 20px;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
