* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #161617;
  --mute: #6b6b6e;
  --sand: #f4f1ed;
  --clay: #d9c7b2;
  --accent: #2d6a4f;
  --accent-strong: #1e4b37;
  --sky: #e7eef7;
  --rose: #f5e4ea;
  --night: #0e0f12;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 12px;
  gap: 20px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s ease;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 24px;
  gap: 24px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  background: var(--sand);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.hero-meta {
  color: var(--mute);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}

.section {
  padding: 42px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asym {
  background: var(--sky);
}

.section.rose {
  background: var(--rose);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section.dark .offset-card {
  background: #1e2127;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--mute);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ececec;
}

.grid-card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: auto;
  background: var(--night);
  color: #ffffff;
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.section-wide {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mini-blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px dashed #c7c7c7;
}

.contact-panel {
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .hero-grid,
  .section-split,
  .two-col {
    flex-direction: row;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .section-split > * {
    flex: 1;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-card {
    flex: 1 1 calc(50% - 18px);
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 calc(50% - 16px);
  }

  .mini-blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mini-block {
    flex: 1 1 calc(33% - 12px);
  }
}

@media (min-width: 1024px) {
  .grid-card {
    flex: 1 1 calc(33% - 18px);
  }

  .price-card {
    flex: 1 1 calc(33% - 16px);
  }
}
