* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a1e;
  --sage: #5a6b4a;
  --leaf: #8aa17a;
  --clay: #b07c5f;
  --mist: #eef2ea;
  --soil: #3b3a2f;
  --sand: #f6f1e7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--sage);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 0 6vw 40px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0;
}

.hero-card {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 22px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(18px);
}

.hero-card .image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #d8e3d2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--soil);
  background: var(--soil);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--soil);
}

.btn:focus,
.btn:hover {
  filter: brightness(1.05);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.offset-section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 300px;
  padding: 28px;
  background: var(--mist);
  border-radius: 22px;
}

.offset-image {
  flex: 1 1 260px;
  transform: translateY(-18px);
}

.offset-image .image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #d3ddc8;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(31, 42, 30, 0.08);
}

.card .image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #d9e5d1;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .card {
  border-left: 6px solid var(--leaf);
}

.band {
  background: var(--mist);
  padding: 50px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.band .image-frame {
  flex: 1 1 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #e3eadc;
}

.band .band-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  padding: 60px 6vw 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 42, 30, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d2c2;
  font-size: 15px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-aside .image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #d2ddc7;
}

.footer {
  background: #1d261d;
  color: #f1f1f1;
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #f1f1f1;
  text-decoration: underline;
}

.footer-block {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer small {
  color: #d8dfd4;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--clay);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta:focus,
.sticky-cta:hover {
  filter: brightness(1.05);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  padding: 36px 6vw 10px;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0;
}

.content {
  padding: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content .image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #e2eadb;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--mist);
  padding: 18px;
  border-radius: 18px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dce5d3;
  font-size: 12px;
  font-weight: 600;
}

.notice {
  background: #f2efe6;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e2dbc9;
}

@media (max-width: 720px) {
  .hero-card {
    transform: none;
  }
  .offset-image {
    transform: none;
  }
  .sticky-cta {
    position: static;
    margin: 10px auto 30px;
    align-self: center;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
