* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --soft-ink: #3b3b3b;
  --paper: #f7f4ef;
  --mist: #efe9e1;
  --clay: #d9c9b7;
  --sage: #c7d2c1;
  --sand: #efe3d1;
  --accent: #2b5f4a;
  --accent-dark: #1f4637;
  --gold: #b98b4a;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h2 {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.9rem;
  color: var(--soft-ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.ad-label {
  padding: 6px 12px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--soft-ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 48px;
  border-radius: 28px;
  background-color: #e7ded1;
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  justify-content: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.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 .visual {
  flex: 1 1 320px;
}

.img-frame {
  background-color: var(--mist);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-card::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 18px;
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-background {
  padding: 36px;
  border-radius: 24px;
  background-color: #e4d9c7;
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-background.alt {
  background-color: #d9d8d3;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 24px;
}

.section-background .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  padding: 18px;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.form-panel {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d1c9;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.list-plain {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-card {
  flex: 1 1 220px;
  padding: 18px;
  background: var(--mist);
  border-radius: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid #d9d1c8;
  font-size: 0.9rem;
  color: var(--soft-ink);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.sticky-cta .button {
  background: var(--gold);
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  max-width: 360px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero .visual {
  flex: 1 1 320px;
}

.notice {
  padding: 14px 16px;
  background: var(--sand);
  border-radius: 14px;
  font-size: 0.95rem;
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
}

.link-inline:hover {
  color: var(--accent-dark);
}

@media (max-width: 800px) {
  .hero {
    padding: 32px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
