:root {
  --mint: #7BDCB5;
  --mint-soft: #e7f8f1;
  --mint-dark: #14372d;
  --mint-deep: #0f2d25;
  --ink: #163128;
  --muted: rgba(22, 49, 40, 0.72);
  --line: rgba(22, 49, 40, 0.12);
  --panel: rgba(255, 255, 255, 0.97);
  --panel-soft: rgba(255, 255, 255, 0.68);
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  background:
    linear-gradient(to bottom, rgba(14, 34, 26, 0.45) 0%, rgba(14, 34, 26, 0.72) 100%),
    url("images/housery_hero_paar.jpg") center center / cover no-repeat;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 28px 18px 44px;
}

.shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 0%, rgba(123, 220, 181, 0.34), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(231, 248, 241, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px 0;
}

.back-link,
.site-nav a,
.footer a {
  color: rgba(20, 55, 45, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.back-link::before {
  content: "<-";
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.back-link:hover,
.site-nav a:hover,
.footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.hero {
  padding: 42px 30px 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(22, 49, 40, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 14.5ch;
  font-size: clamp(2rem, 7.2vw, 4.16rem);
  line-height: 0.96;
}

.brand-heading {
  max-width: 16.5ch;
}

.brand-heading-logo-text {
  display: inline-block;
  margin: 0 0.035em;
  color: #74d9ad;
  font-family: 'Albert Sans Black', 'Albert Sans', 'Arial Black', Manrope, sans-serif;
  font-size: 0.82em;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  vertical-align: 0.01em;
}

.lead {
  max-width: 68ch;
  margin: 26px 0 0;
  color: rgba(22, 49, 40, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.72;
}

.content {
  display: grid;
  gap: 18px;
  padding: 0 30px 30px;
}

.section {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
}

.section-highlight {
  background: linear-gradient(180deg, rgba(231, 248, 241, 0.9), rgba(255, 255, 255, 0.72));
}

.section h2 {
  max-width: 28ch;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  line-height: 1.06;
}

.section h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.section p {
  max-width: 76ch;
  margin: 0;
  color: rgba(22, 49, 40, 0.84);
  font-size: 1rem;
}

.section p + p,
.section .text-block + .text-block {
  margin-top: 14px;
}

.grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid + .note {
  margin-top: 18px;
}

.grid + .quote {
  margin-top: 18px;
}

.card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(22, 49, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.card-number {
  margin: 0 0 10px;
  color: rgba(22, 49, 40, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.note {
  padding: 18px 20px;
  border: 2px solid rgba(20, 55, 45, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(22, 49, 40, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.quote {
  padding: 18px 20px;
  border: 2px solid rgba(20, 55, 45, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(22, 49, 40, 0.84);
  font-weight: 700;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid rgba(22, 49, 40, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.faq-item h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.faq-item p + p {
  margin-top: 10px;
}

.cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.cta h2 {
  max-width: none;
}

.cta p {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid rgba(11, 29, 24, 0.16);
  border-radius: 16px;
  background: #173830;
  color: #fff;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button:hover {
  background: #14322b;
  box-shadow: 0 14px 26px rgba(64, 64, 64, 0.16);
  transform: translateY(-1px);
  text-decoration: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 30px 30px;
  color: rgba(22, 49, 40, 0.72);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  body {
    background-attachment: fixed;
  }
}

@media (max-width: 860px) {
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 12px 12px 28px;
  }

  .shell {
    border-radius: 24px;
  }

  .site-top,
  .hero,
  .content,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-top {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
  }

  .site-nav {
    order: 1;
    justify-content: flex-start;
    gap: 13px;
  }

  .back-link {
    order: 2;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: 13ch;
  }

  .brand-heading {
    max-width: 11.5ch;
  }

  .brand-heading-logo-text {
    display: block;
    margin: 0.08em 0 0.02em;
  }

  .section {
    padding: 20px 18px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
