* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #121417;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: #f6f4f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #121417;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #fff5e6;
}

.section {
  padding: 72px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background: #ece7e1;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d4cec7;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #121417;
  color: #f6f4f1;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #121417;
  background: #121417;
  color: #f6f4f1;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: #121417;
}

.highlight {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e2ded8;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e1dc;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d9d3cb;
}

.price {
  font-weight: 700;
  color: #2b2f36;
}

.aside-sticky {
  position: sticky;
  top: 24px;
  align-self: flex-start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c3bb;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #121417;
  color: #f6f4f1;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  max-width: 920px;
  width: calc(100% - 32px);
  z-index: 5;
}

.banner button {
  background: #f6f4f1;
  color: #121417;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #121417;
  color: #f6f4f1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f6f4f1;
  text-decoration: underline;
}

.legal {
  font-size: 0.85rem;
  max-width: 520px;
}

.reference-list {
  font-size: 0.85rem;
}

.notice {
  padding: 16px;
  border-left: 3px solid #121417;
  background: #f0ece7;
}

.inline-link {
  text-decoration: underline;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.two-column > div {
  flex: 1 1 280px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e2ded8;
  padding-bottom: 12px;
}

.row strong {
  flex: 1 1 260px;
}

.muted {
  color: #555c66;
}

.background-image {
  border-radius: 22px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-color: #cfc7be;
}

.bg-architecture {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-color: #d5cdc4;
}

.tagline {
  font-size: 1.2rem;
  max-width: 520px;
}

.small-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #4a515c;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
