:root {
  --bg: #f7f4ef;
  --ink: #1b1b1b;
  --muted: #595959;
  --accent: #2f5d62;
  --accent-soft: #d7e2e3;
  --sand: #efe8dd;
  --highlight: #f4c95d;
  --line: #d6d0c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, 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;
}

header {
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container.wide {
  width: min(1240px, 94%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--highlight);
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 4px;
}

.hero {
  padding: 40px 0 24px;
}

.hero-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 420px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 36px 0;
  position: relative;
  background-color: var(--bg);
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #223435;
  color: #f4f4f4;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split .col {
  flex: 1 1 320px;
}

.narrow {
  max-width: 640px;
}

.magazine-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.magazine-columns .col-2 {
  flex: 2 1 360px;
}

.magazine-columns .col-1 {
  flex: 1 1 240px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
}

.pricing {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.section-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section .content {
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.footer {
  background: #151515;
  color: #e6e6e6;
  padding: 28px 0 44px;
}

.footer a {
  color: #e6e6e6;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfcfcf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 96px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 900;
}

.table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: none;
}

.muted {
  color: var(--muted);
}

.image-block {
  background: var(--accent-soft);
  border-radius: 16px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 260px;
}

.page-hero {
  padding: 34px 0;
  background: #fdf8f0;
  border-bottom: 1px solid var(--line);
}

.page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 12px;
    bottom: 100px;
  }
}
