*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ad-notice {
  background-color: #2f2c29;
  color: #f2eee9;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  text-align: center;
}

.site-header {
  background-color: #f7f5f2;
  border-bottom: 1px solid #ded7cf;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4vw;
  gap: 1rem;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-cta {
  border: 1px solid #1c1b1a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover,
.btn:hover,
.inline-link:hover,
.form-button:hover,
.sticky-cta:hover,
.cookie-actions button:hover {
  background-color: #1c1b1a;
  color: #f7f5f2;
}

.main {
  flex: 1;
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-media {
  flex: 1;
}

.image-frame {
  background-color: #d8cfc3;
  border-radius: 20px;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #6a5d52;
}

.btn,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #1c1b1a;
  background-color: transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s ease;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.highlight-panel {
  background-color: #f0e9e1;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ece4da;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.service-card .card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-tag {
  font-weight: 600;
  color: #6a5d52;
}

.form-section {
  background-color: #1c1b1a;
  color: #f7f5f2;
  border-radius: 24px;
  padding: 2.5rem;
}

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.interest-form select,
.interest-form input {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.interest-form label {
  font-size: 0.9rem;
  color: #dad0c6;
}

.form-button {
  align-self: flex-start;
  border-color: #f7f5f2;
  color: #f7f5f2;
}

.callout {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #ece4da;
}

.footer {
  background-color: #2f2c29;
  color: #f2eee9;
  padding: 2.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #d8cdc2;
}

.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #1c1b1a;
  background-color: #f7f5f2;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  background-color: #ffffff;
  border: 1px solid #ded7cf;
  border-radius: 16px;
  padding: 1.2rem;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1c1b1a;
  padding: 0.5rem 0.8rem;
  background-color: transparent;
  cursor: pointer;
}

.legal-hero {
  background-color: #f0e9e1;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
