* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 8vw 12px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #ded8cc;
  padding-bottom: 18px;
}

.nav-brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-disclosure {
  font-size: 0.75rem;
  color: #6a5c4f;
  max-width: 180px;
  text-align: right;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 8vw 100px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div,
.split > article {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding: 32px 0 10px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1c1c1c;
  color: #f9f5ef;
  font-weight: 600;
}

.button.secondary {
  background: #f9f5ef;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.image-frame {
  background-color: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe7d7;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.callout {
  background: #efe7d7;
  padding: 28px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c2c2c;
}

.section-heading {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfc6b8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
}

.split-block {
  background: #f2eee7;
  padding: 32px;
  border-radius: 20px;
}

.testimonial {
  font-style: italic;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: #1c1c1c;
  color: #f9f5ef;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 999;
}

.sticky-cta a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 18px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1c1c1c;
  color: #ffffff;
}

.cookie-reject {
  background: #efe7d7;
  color: #1c1c1c;
}

footer {
  padding: 40px 8vw 80px;
  background: #1c1c1c;
  color: #f9f5ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.8rem;
  color: #d6cdbd;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-grid > div {
  flex: 1 1 240px;
}

@media (max-width: 720px) {
  .nav-disclosure {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
