* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1b16;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #efe8de;
  padding: 18px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f4e6d2;
  padding: 6px 10px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 56px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .copy,
.split-section .visual {
  flex: 1 1 320px;
}

.headline {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2f2a25;
  color: #fff;
  font-weight: 600;
}

.button-outline {
  border: 1px solid #2f2a25;
  background: transparent;
  color: #2f2a25;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.image-frame {
  background-color: #e6ddd4;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(30, 27, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-image {
  height: 140px;
  background-color: #efe8de;
  border-radius: 14px;
  overflow: hidden;
}

.card .price {
  font-weight: 700;
  color: #6a4a2c;
}

.section-bg {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 56px 0;
  color: #1f1a15;
}

.bg-hallway {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.section-bg .copy {
  background: rgba(247, 244, 240, 0.88);
  padding: 28px;
  border-radius: 18px;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(30, 27, 22, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  border: 1px solid #c8bfb4;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #d97735;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(30, 27, 22, 0.18);
  z-index: 5;
}

.footer {
  background: #efe8de;
  padding: 32px 0 40px;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.88rem;
  color: #4f463c;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(30, 27, 22, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-grid .copy {
  flex: 1 1 320px;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
