* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

button {
  border: none;
  background: #1c1c1c;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #6b5f52;
  border: 1px solid #d2c7ba;
  padding: 6px 10px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 48px 8%;
  background: #ffffff;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-left: 4px solid #d1b48f;
}

.hero-media {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6ddd3;
  padding: 18px;
}

.hero-media img {
  width: 100%;
  height: 360px;
}

.section {
  padding: 44px 8%;
}

.section-light {
  background: #ffffff;
}

.section-tan {
  background: #efe7dc;
}

.section-graphite {
  background: #1c1c1c;
  color: #ffffff;
}

.section-graphite a {
  color: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  flex: 1 1 320px;
  background: #dcd3c7;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card img {
  width: 100%;
  height: 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2d8cc;
}

.card-image {
  background: #dcd3c7;
  padding: 10px;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: #6b5f52;
}

.quote {
  background: #f1e9df;
  padding: 18px;
  border-left: 4px solid #b79b7b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 22px;
  border: 1px solid #e2d8cc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
  color: #4b3f35;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c9bdb0;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: #6b5f52;
}

.footer {
  margin-top: auto;
  padding: 28px 8%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4b3f35;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #b79b7b;
  color: #1c1c1c;
  padding: 12px 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d2c7ba;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: #1c1c1c;
  color: #ffffff;
  flex: 1 1 auto;
}

.note-box {
  background: #ffffff;
  border: 1px dashed #c9bdb0;
  padding: 18px;
}

.list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-grid .note-box {
  flex: 1 1 240px;
}
