* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f2ee;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #2f5f6f;
  --accent-soft: #dfe9ec;
  --sand: #efe7dc;
  --leaf: #3d6c5a;
  --gold: #b48a4f;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 12px;
  background: #fff;
  border-bottom: 1px solid #e1dad1;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw;
  background: var(--sand);
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: var(--leaf);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 48px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media-frame {
  background: #d9d4cb;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 240px;
  border: 1px solid #e6ded4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.testimonial {
  background: #fff7ec;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 12px 0;
}

form {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e6ded4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cdc3;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f1f1f;
  color: #fff;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

footer {
  padding: 36px 6vw 48px;
  background: #fff;
  border-top: 1px solid #e6ded4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #e6ded4;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.note-box {
  background: #f0f7f9;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #d8e8ee;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.page-hero {
  padding: 36px 6vw;
  background: #f7f4f0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .content,
.page-hero .media {
  flex: 1 1 320px;
}

.legal-text {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e6ded4;
}

.no-link {
  color: var(--ink);
}
