* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1c1a;
  --muted: #5c564f;
  --sand: #f5efe7;
  --clay: #d9c9b8;
  --linen: #faf7f3;
  --accent: #c26c3d;
  --deep: #3c2f2a;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 5vw 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  background-color: #e7ddd4;
  background-image: url("https://images.unsplash.com/photo-1715870342598-7b54d6832204?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 96px 6vw 120px;
}

.hero-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(250, 247, 243, 0.9);
  padding: 32px;
  border-radius: 24px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.container {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  background-color: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

.storyline {
  background: var(--sand);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.texture-section {
  background-color: #efe7df;
  background-image: url("https://images.unsplash.com/photo-1648005539099-709d5be525fb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 6vw;
}

.texture-inner {
  background: rgba(245, 239, 231, 0.9);
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background-color: var(--clay);
  overflow: hidden;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  color: var(--deep);
  width: fit-content;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-section {
  background: var(--sand);
  border-radius: 26px;
  padding: 36px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9beb2;
  font-size: 1rem;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2d7cc;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

footer {
  padding: 40px 6vw 60px;
  background: var(--deep);
  color: #f6f1eb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: #d9cec3;
}

.simple-hero {
  padding: 70px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-image {
  border-radius: 22px;
  background-color: var(--clay);
  overflow: hidden;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}

.table-row span {
  color: var(--muted);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 48px 6vw;
  max-width: 880px;
}

.notice {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
  color: var(--muted);
}
