* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #161616;
  --muted: #5d5d5d;
  --paper: #f7f3ef;
  --accent: #1f5f8b;
  --accent-soft: #e3edf6;
  --warm: #d7c4b0;
  --deep: #1b2631;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 32px 10px;
  background: #fff;
  border-bottom: 1px solid #e2ded9;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 16px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 32px;
  background: #fff;
}

.hero-media,
.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  background: var(--warm);
  border-radius: 16px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: var(--deep);
}

.section {
  padding: 36px 32px;
}

.section.alt {
  background: #fff;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e7e1db;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  background: #d9d2c8;
}

.media-slab {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.media-slab img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  background: #c8d2df;
}

.slab-text {
  flex: 1 1 320px;
}

.slab-media {
  flex: 1 1 280px;
}

.quote {
  font-style: italic;
  color: var(--muted);
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 10px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e7e1db;
}

.form-shell {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #e7e1db;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d7d1cb;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer {
  padding: 30px 32px;
  background: #111;
  color: #f1f1f1;
}

.footer a {
  color: #f1f1f1;
}

.footer .columns {
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #d7d1cb;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e7e1db;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notice {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e7e1db;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-bg {
  background: var(--deep);
  color: #fff;
  padding: 20px 32px;
}

.banner-bg a {
  color: #fff;
  text-decoration: underline;
}

.bg-warm {
  background-color: #cdb9a6;
}

.bg-slate {
  background-color: #bcc7d1;
}

.bg-mist {
  background-color: #cbd3d6;
}

.bg-soft {
  background-color: #c8cfd2;
}

.bg-clay {
  background-color: #d3c2b4;
}

.bg-steel {
  background-color: #d0d3d8;
}

.bg-sand {
  background-color: #c5c1b8;
}

.bg-city {
  background-color: #cfd6da;
}

.bg-quiet {
  background-color: #cfd0cc;
}

.bg-field {
  background-color: #c9c7bf;
}

.bg-note {
  background-color: #cfd4c6;
}

.bg-paper {
  background-color: #cbd1d7;
}

.bg-softline {
  background-color: #c8c4bc;
}

.cta-row.spaced {
  margin-top: 18px;
}
