* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1e1e;
  --muted: #5a5a5a;
  --sand: #f6f2ed;
  --mist: #eef1f4;
  --forest: #2f4a3a;
  --accent: #c48d5a;
  --card: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: none;
}

header {
  border-bottom: 1px solid #e3e3e3;
  background: #ffffff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d2cc;
  color: #ffffff;
}

.hero-overlay {
  background: rgba(24, 24, 24, 0.55);
  padding: 90px 0;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--forest);
  border: 1px solid #ffffff;
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid #e4e4e4;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.image-frame {
  width: 100%;
  background: #e3e0db;
  border-radius: 6px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-tall {
  height: 320px;
}

.image-wide {
  height: 240px;
}

.image-square {
  height: 200px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-box {
  flex: 1 1 260px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e6e6e6;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cfcfcf;
  font-size: 14px;
}

.inline-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--forest);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 20;
}

footer {
  background: #111111;
  color: #e8e8e8;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
}

.footer-links a {
  color: #e8e8e8;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
  color: #b8b8b8;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  padding: 16px;
  width: min(340px, 90vw);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 64px 0 40px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.legal-block {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  margin-top: 20px;
}

.muted {
  color: var(--muted);
}
