* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #4d5866;
  --accent: #2f6f6b;
  --accent-dark: #244e4b;
  --surface: #f6f4f1;
  --paper: #ffffff;
  --sand: #e7e1d9;
  --sun: #f0d7a6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 6vw 18px;
  gap: 18px;
  border-bottom: 1px solid var(--sand);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--accent-dark);
  max-width: 260px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
}

.cta-inline {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--sand);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  background: var(--sun);
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.headline {
  font-size: 2.6rem;
  line-height: 1.15;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-card {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(31, 35, 40, 0.1);
}

.asym-image {
  flex: 1 1 320px;
  background: #dbe2dd;
  border-radius: 20px;
  overflow: hidden;
}

.asym-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-image {
  background: #c7d3cf;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 220px;
  background: var(--paper);
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--sand);
}

.form-wrap {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--sand);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--sand);
  font-size: 1rem;
}

.footer {
  padding: 36px 6vw;
  background: var(--ink);
  color: #fff;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 18px;
  border-radius: 14px;
  max-width: 360px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--sand);
  color: var(--ink);
}

.notice {
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.page-hero {
  padding: 60px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--sand);
}

.content-block {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
}

.highlight-panel div {
  flex: 1 1 200px;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .headline {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
