@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f4f0;
  --bg-contrast: #141414;
  --ink: #1f1b16;
  --muted: #6e6258;
  --accent: #b8865b;
  --accent-strong: #8f5a34;
  --soft: #efe7df;
  --soft-2: #e4d9cf;
  --line: #d5c7bb;
  --cta: #1f1b16;
  --cta-light: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.cta:hover,
.ghost:hover,
.sticky-cta a:hover,
.cookie-actions button:hover {
  background: var(--soft-2);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--bg-contrast);
  color: #f2efe9;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0 0 12px;
}

.panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.panel.dark-text p {
  color: #f2efe9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-light);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-weight: 600;
}

.media-frame {
  background: #d8d0c6;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.media-frame.small img {
  min-height: 200px;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 160px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.highlight {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1605143185597-9fe1a8065fbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.background-panel p {
  color: #f7f4f0;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.sticky-cta a {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--bg-contrast);
  color: #efe7df;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.small {
  font-size: 0.9rem;
  color: #d7cfc6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--cta);
  color: #fff;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
