* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2326;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4%;
  background: #f7f4f0;
  border-bottom: 1px solid #e3ddd5;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5a5d60;
  max-width: 240px;
  text-align: right;
}

.hero {
  padding: 64px 0 40px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 360px;
}

.split-media {
  flex: 1 1 360px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #7b6f64;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
  color: #747474;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2326;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  cursor: pointer;
  background: #1f2326;
  color: #f7f4f0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1f2326;
}

.btn:hover {
  transform: translateY(-2px);
}

.text-link {
  font-weight: 600;
  color: #6a4d3b;
  text-decoration: underline;
}

.section {
  padding: 56px 0;
}

.section.tinted {
  background: #efe7dd;
}

.section.dark {
  background: #1f2326;
  color: #f7f4f0;
}

.section.dark p,
.section.dark h2,
.section.dark h3 {
  color: #f7f4f0;
}

.section.bg-funnel {
  background-color: #2a2c2f;
  background-image: linear-gradient(rgba(31, 35, 38, 0.7), rgba(31, 35, 38, 0.7)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4f0;
}

.image-frame {
  background-color: #d8d1c8;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
}

.image-frame.tight {
  padding: 6px;
}

.story-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.story-card {
  flex: 1 1 260px;
  background: #fff9f2;
  border: 1px solid #e6ddd3;
  border-radius: 16px;
  padding: 20px;
}

.quote-line {
  font-style: italic;
  color: #5b4d42;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e3ddd5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #6a4d3b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-card {
  background: #ffffff;
  border: 1px solid #e3ddd5;
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7be;
  font-size: 14px;
  background: #fff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 40px 4% 80px;
  background: #f0e8dd;
  color: #4c4a47;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.footer small {
  display: block;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2326;
  color: #f7f4f0;
  padding: 16px 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #f7f4f0;
  padding: 8px 16px;
  background: transparent;
  color: #f7f4f0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-actions button:hover {
  transform: translateY(-2px);
}

.cookie-actions .accept {
  background: #f7f4f0;
  color: #1f2326;
}

.page-hero {
  padding: 50px 0 32px;
}

.info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.info-block {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e3ddd5;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff9f2;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e3ddd5;
}

.note {
  font-size: 13px;
  color: #6b625a;
}

.references {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.references a {
  text-decoration: underline;
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  h1 {
    font-size: 32px;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
