* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1c;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 24px 0 10px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  background: #f0e6df;
  padding: 6px 10px;
  border-radius: 999px;
  color: #4c3f36;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: #1f1d1c;
}

.hero {
  padding: 40px 0 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero p {
  font-size: 17px;
  margin: 0;
}

.hero-media {
  flex: 1 1 360px;
  padding: 16px;
  border-radius: 24px;
  background-color: #e8ddd4;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 420px;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f1d1c;
  color: #f7f4f1;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #f0e6df;
  color: #1f1d1c;
}

.btn:hover {
  transform: translateY(-1px);
}

.asym-section {
  padding: 70px 0;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text,
.asym-media {
  flex: 1 1 320px;
}

.asym-text h2 {
  margin-top: 0;
  font-size: 28px;
}

.asym-media {
  background-color: #e1d8d0;
  padding: 12px;
  border-radius: 22px;
}

.asym-media img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.layered {
  background: #efe7df;
  padding: 60px 0;
}

.card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.card .image-frame img {
  height: 180px;
}

.card .pill {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #74665a;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  border-radius: 20px;
  padding: 20px;
  background: #fdfaf7;
  border: 1px solid #e7dbd0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: #1f1d1c;
}

.quote-wall {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid #1f1d1c;
  padding: 16px 18px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: #1f1d1c;
  color: #f7f4f1;
  padding: 36px;
  border-radius: 26px;
}

.split-band a {
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: #51463d;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #dccfc4;
  font-size: 14px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-card {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e7dbd0;
}

.footer {
  margin-top: 70px;
  padding: 40px 0 80px;
  background: #1f1d1c;
  color: #f7f4f1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer a {
  color: #f7f4f1;
  text-decoration: underline;
}

.disclaimer {
  font-size: 13px;
  color: #d4c7bc;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  background: #f0e6df;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 20px auto 0;
  width: min(900px, 92%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e7dbd0;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.stacked-section {
  padding: 60px 0;
}

.image-frame {
  background-color: #e1d8d0;
  border-radius: 18px;
  padding: 10px;
}

.image-frame img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.micro-cta {
  text-decoration: underline;
  font-weight: 600;
}

.accordion {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e7dbd0;
}

.accordion-details {
  display: none;
  margin-top: 12px;
  color: #51463d;
}

.accordion-details.is-open {
  display: block;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-block {
  font-style: normal;
  background: #fdfaf7;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e7dbd0;
}

@media (max-width: 900px) {
  .hero-media img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .nav-row {
    flex-direction: column;
  }
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
