* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #f7f4ef;
  padding: 24px 6vw 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand span {
  font-size: 12px;
  opacity: 0.7;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #9e7f5b;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1e1e1e;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.cta-btn.light {
  background: #f7f4ef;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
}

.hero {
  padding: 56px 6vw 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  position: relative;
}

.split-media img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layer-card {
  position: absolute;
  bottom: -24px;
  left: 16px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.accent {
  background: #efe7dd;
}

.section.dark {
  background: #1e1e1e;
  color: #f7f4ef;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9e7f5b;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 18px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.price span {
  font-size: 12px;
  opacity: 0.6;
}

.inline-cta {
  color: #9e7f5b;
  font-weight: 600;
}

.quote {
  font-style: italic;
  font-size: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cec4;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw 64px;
  background: #f0ebe4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #9e7f5b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e1e1e;
  color: #f7f4ef;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.cookie-actions .accept {
  background: #9e7f5b;
  color: #fff;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid #f7f4ef;
  color: #f7f4ef;
}

.legal-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-wrap h2 {
  margin: 0;
  font-size: 20px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-placeholder {
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, #cfc2b3, #f0ebe4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6f5b47;
}

@media (min-width: 900px) {
  .split,
  .split.reverse,
  .two-col {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .hero {
    padding-top: 72px;
  }
}
