* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f1c;
  --muted: #4c5348;
  --sand: #f5f1ea;
  --stone: #e6ded2;
  --forest: #2f4a3a;
  --clay: #d7c4b3;
  --night: #101310;
  --accent: #d9894b;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--stone);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 72px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.section.dark {
  background: var(--night);
  color: #f3f3f3;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
}

p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.button:active {
  transform: scale(0.98);
}

.inline-link {
  font-weight: 600;
  color: var(--forest);
  border-bottom: 2px solid var(--forest);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: var(--sand);
}

.bg-1 {
  background: #d6d1c7;
}

.bg-2 {
  background: #e7ddd3;
}

.bg-3 {
  background: #d9d0c7;
}

.bg-4 {
  background: #e1d6cc;
}

.bg-5 {
  background: #ded1c5;
}

.bg-6 {
  background: #e8dfd5;
}

.bg-7 {
  background: #dcd4cb;
}

.bg-8 {
  background: #d8cec3;
}

.bg-9 {
  background: #e5ddd2;
}

.bg-10 {
  background: #e2d8cb;
}

.bg-11 {
  background: #dcd0c2;
}

.bg-12 {
  background: #e7ded6;
}

.bg-13 {
  background: #e6d8c8;
}

.card-content {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--stone);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
  background: #fff;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  background: var(--night);
  color: #e6e6e6;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #e6e6e6;
}

.footer small {
  color: #b7b7b7;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 12px;
}

.centered {
  text-align: center;
}

.notice {
  padding: 18px;
  border-radius: 16px;
  background: #f4efe6;
  color: var(--muted);
}
