* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --paper: #f7f4f0;
  --accent: #b46b45;
  --accent-dark: #7a452c;
  --surface: #ffffff;
  --soft: #efe9e1;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  background: var(--surface);
  border-bottom: 1px solid #e2ddd6;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #e2ddd6;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fbfaf8;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.hero {
  margin-top: 28px;
  background: var(--surface);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 14px;
}

.kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.section {
  margin: 64px 0;
}

.section.alt {
  background: var(--soft);
  padding: 40px 0;
}

.section.bg-image {
  background-color: #2a2420;
  background-image: linear-gradient(
      rgba(20, 18, 16, 0.65),
      rgba(20, 18, 16, 0.65)
    ),
    url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4f0;
}

.section.bg-image .pill {
  background: rgba(247, 244, 240, 0.12);
  border-color: rgba(247, 244, 240, 0.4);
  color: #f7f4f0;
}

.section.bg-image .section-note {
  color: #f1e9dd;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #fdf6ef;
  border: 1px solid #e8d8c7;
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-dark);
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e8e0d6;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.media {
  background-color: #e3d7cc;
  border-radius: 14px;
  overflow: hidden;
}

.media.tall img {
  height: 100%;
}

.media img {
  object-fit: cover;
}

.testimonial {
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e6ddd2;
}

.testimonial + .testimonial {
  margin-top: 14px;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e6ddd2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d7cfc6;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.footer {
  margin-top: 80px;
  padding: 32px 24px;
  background: #1f1b17;
  color: #efe7dc;
}

.footer a {
  color: #efe7dc;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.notice {
  font-size: 13px;
  color: #d8cdbf;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  border: 1px solid #e7ddd2;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.hidden {
  display: none;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list span {
  font-weight: 600;
}

.section-note {
  font-size: 14px;
  color: var(--muted);
}
