:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --sand: #f5f1ea;
  --mist: #eef1f4;
  --clay: #e7ddd1;
  --accent: #1f5f5b;
  --accent-soft: #e3f0ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--clay);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 2px;
}

.sidebar-cta {
  padding: 14px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content {
  flex: 1;
  padding: 34px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-center {
  text-align: center;
  align-items: flex-start;
  flex-direction: column;
}

.section h1,
.section h2,
.section h3 {
  margin: 0 0 10px;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  flex: 1 1 340px;
}

.hero-image {
  flex: 1 1 320px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d8d1c8;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-weight: 600;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.band {
  padding: 28px;
  border-radius: 22px;
  background-color: #d9e3ea;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.band .band-content {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 22px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.highlight {
  background: var(--mist);
  padding: 26px;
  border-radius: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 340px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  font-family: inherit;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #f0f0f0;
  color: var(--ink);
}

.notice-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.address-block {
  background: var(--mist);
  padding: 18px;
  border-radius: 16px;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}
