* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5a6a70;
  --accent: #d66b4a;
  --accent-dark: #b8573b;
  --sand: #f6f0e8;
  --moss: #e2ece6;
  --sky: #e9f2f8;
  --paper: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 7%;
  border-bottom: 1px solid #e2d8cd;
  background: #fff7ef;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 7%;
}

.section.tight {
  gap: 12px;
}

.section-bg {
  padding: 48px 7%;
}

.section-bg.moss {
  background: var(--moss);
}

.section-bg.sand {
  background: var(--sand);
}

.section-bg.sky {
  background: var(--sky);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 7% 48px;
  position: relative;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffffd9;
  padding: 28px;
  border-radius: 18px;
  max-width: 520px;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.hero-image {
  position: relative;
  margin-top: 12px;
}

.hero-image img {
  border-radius: 24px;
}

.hero-overlay {
  position: absolute;
  bottom: -20px;
  right: 6%;
  background: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 42, 46, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid #e2d8cd;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(31, 42, 46, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.offset {
  align-self: flex-start;
  margin-left: 6%;
  max-width: 520px;
}

.offset.right {
  align-self: flex-end;
  margin-right: 6%;
}

.stacked-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-images img:nth-child(2) {
  margin-left: 18%;
}

.stacked-images img:nth-child(3) {
  margin-left: 6%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(31, 42, 46, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7cdc2;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 48px 7% 64px;
  background: #1f2a2e;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.18);
  max-width: 320px;
  display: none;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff7ef;
  padding: 24px;
  border-radius: 16px;
}

.meta-item strong {
  display: block;
}

.section-title {
  font-size: 2rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .stacked-images {
    flex-direction: row;
  }

  .stacked-images img:nth-child(2),
  .stacked-images img:nth-child(3) {
    margin-left: 0;
  }
}
