:root {
  --green: #053d34;
  --green-2: #0a5c4d;
  --green-light: #117a66;
  --gold: #b8956a;
  --gold-light: #ede4d4;
  --sage: #e8efe9;
  --cream: #f9f6f0;
  --paper: #fffdf9;
  --text: #1a2e29;
  --muted: #5c6d68;
  --line: #dce5df;
  --shadow: 0 20px 60px rgba(5, 61, 52, 0.08);
  --shadow-sm: 0 8px 24px rgba(5, 61, 52, 0.06);
  --radius: 20px;
  --page-gutter: clamp(28px, 5vw, 100px);
  --header-mobile-h: 68px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 72px;
}

main {
  flex: 1 0 auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-gutter);
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 15px);
}

.main-nav a:not(.nav-cta) {
  position: relative;
  color: var(--muted);
  transition: color 0.2s;
}

.main-nav a:not(.nav-cta):hover { color: var(--green); }

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}

.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(5, 61, 52, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(5, 61, 52, 0.25);
}

.header-phone {
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--green);
  white-space: nowrap;
  margin-left: auto;
  margin-right: clamp(8px, 2vw, 20px);
}

.header-phone:hover { color: var(--green-2); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--green);
  cursor: pointer;
  padding: 4px;
}

/* ── Layout ── */
.section-pad,
.section {
  padding: clamp(56px, 8vw, 100px) var(--page-gutter);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 12px;
  color: var(--green-2);
  margin: 0 0 10px;
}

.section-label-light { color: rgba(255, 255, 255, 0.7); }

.section-heading {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.section-heading-left { text-align: left; }

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 3px;
}

.section-heading-left h2::after,
.about-intro h2::after {
  margin-left: 0;
}

.section-sub {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading-left .section-sub { margin-left: 0; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(48px, 7vw, 80px);
  max-width: none;
}

.hero-copy, .hero-image { min-width: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--green-2);
  font-size: 12px;
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: #3a504a;
  margin: 0 0 24px;
  line-height: 1.55;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.hero-bullets svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-light);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-trust {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.hero-phone {
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-phone:hover { color: var(--green-2); }

/* ── Hero price box ── */
.hero-price-wrap {
  padding: 0 var(--page-gutter) clamp(32px, 5vw, 48px);
  margin-top: -12px;
}

.hero-price-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.hero-price-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-price-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-price-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.hero-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hero-price-list li:last-child { border-bottom: 0; }

.hero-price-label {
  color: var(--text);
  font-weight: 500;
}

.hero-price-value {
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  text-align: right;
}

.hero-price-value small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.hero-price-highlight {
  background: var(--sage);
}

.hero-price-highlight .hero-price-value {
  font-size: 17px;
}

.hero-price-note {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--gold-light);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.hero-price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-image {
  position: relative;
  border-radius: 4px 4px 4px 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: 580px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 22%;
  transform: scale(1.08);
  transform-origin: 82% 22%;
}

.signature-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #075145, #053530);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.signature-card strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
}

.signature-card span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(5, 61, 52, 0.22);
}

.btn-primary:hover { box-shadow: 0 14px 32px rgba(5, 61, 52, 0.28); }

.btn-secondary {
  border-color: var(--green);
  color: var(--green);
  background: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg { width: 20px; height: 20px; }

.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.btn-full { width: 100%; }

/* ── Trust strip ── */
.trust-strip {
  margin: 0 var(--page-gutter);
  width: auto;
  max-width: none;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px 28px;
  gap: 16px;
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
}

.trust-strip article + article {
  border-left: 1px solid rgba(5, 61, 52, 0.12);
}

.trust-strip h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.trust-strip p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.icon, .card-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
}

.icon svg, .card-icon svg { width: 22px; height: 22px; }

/* ── Services ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  border-radius: 12px;
  background: var(--sage);
  color: var(--green);
  width: 44px;
  height: 44px;
}

.service-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}

.service-card p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.service-fit {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
  font-style: italic;
  color: var(--green-2) !important;
}

.service-card-primary {
  border-color: rgba(5, 61, 52, 0.18);
}

.service-card-primary .card-icon {
  background: var(--green);
  color: #fff;
}

.service-grid-supplementary {
  max-width: 960px;
  margin: 0 auto;
}

.service-card-supplementary {
  background: var(--cream);
  border-style: dashed;
  border-color: rgba(5, 61, 52, 0.2);
  box-shadow: none;
}

.service-card-supplementary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-card-supplementary .card-icon {
  background: #fff;
  border: 1px solid var(--line);
}

.section.supplementary {
  background: var(--cream);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

/* ── Boundaries ── */
.section.boundaries {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.boundaries-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.boundaries-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.boundaries-lead {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.boundaries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.boundaries-list li {
  padding: 12px 16px 12px 40px;
  position: relative;
  background: var(--cream);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
}

.boundaries-list li::before {
  content: "×";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a6b2e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* ── Region ── */
.region-section {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 56px);
}

.region-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 44px);
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.region-card h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
  line-height: 1.15;
}

.region-places {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

.region-note {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
}

/* ── Extra packages on homepage ── */
.extra-packages {
  background: var(--cream);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.extra-packages-note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.extra-packages-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.extra-packages-note a:hover { color: var(--green-2); }

/* ── Compact homepage ── */
.page-home-compact .section-compact {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.page-home-compact .hero-compact {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 40px);
  gap: clamp(28px, 4vw, 48px);
}

.page-home-compact .hero-compact .lead {
  margin-bottom: 18px;
}

.page-home-compact .hero-bullets {
  margin-bottom: 22px;
}

.page-home-compact .section-heading {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.page-home-compact .section-heading h2,
.page-home-compact .heading-small {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-home-compact .section-sub-tight {
  margin-top: 8px;
  font-size: 14px;
}

.hero-price-box--simple {
  border-width: 1px;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: clamp(20px, 3vw, 28px);
}

.hero-price-box--simple h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 16px;
}

.service-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.page-home-compact .service-card-primary {
  padding: 20px 18px;
  gap: 0;
}

.page-home-compact .service-card-primary h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.page-home-compact .service-card-primary p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.leistungen-note {
  text-align: center;
  margin: 20px auto 0;
  max-width: 520px;
  font-size: 13px;
  color: var(--muted);
}

.leistungen-note a {
  color: var(--green);
  font-weight: 600;
}

.about-compact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-compact-inner p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.about-region-inline {
  font-size: 14px !important;
  color: var(--text) !important;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.supplementary-compact {
  background: var(--cream);
}

.supplementary-compact .section-heading h2 {
  font-size: clamp(18px, 2.5vw, 22px);
}

.extras-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 16px;
  max-width: 480px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.extras-list li {
  padding: 12px 14px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.extras-link {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.extras-link a { color: var(--green); }

.contact-compact {
  display: block;
}

.contact-compact .contact-cta {
  position: static;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4vw, 44px);
}

.contact-compact .contact-cta h2 {
  font-size: clamp(24px, 3vw, 30px);
}

.contact-compact .contact-cta > p {
  margin-bottom: 24px;
}

.contact-buttons-row {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-list-compact {
  max-width: 600px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 8px;
}

.site-footer-compact {
  grid-template-columns: 1fr 1fr;
  padding-top: 32px;
  padding-bottom: 28px;
}

.site-footer-compact p {
  margin-top: 4px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .service-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-home-compact .hero-image {
    max-height: 320px;
  }

  .service-grid-4 {
    grid-template-columns: 1fr;
  }

  .extras-list {
    grid-template-columns: 1fr;
  }

  .site-footer-compact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-buttons-row {
    flex-direction: column;
  }

  .contact-buttons-row .btn {
    width: 100%;
  }
}

/* ── About ── */
.about-intro {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-intro h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0 0;
  border-radius: 3px;
}

.about-content {
  margin: 28px 0 32px;
}

@media (min-width: 900px) {
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 48px;
  }
}

.about-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-content p:last-child { margin-bottom: 0; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.about-values article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.about-value-icon svg { width: 22px; height: 22px; }

.about-values h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.about-values p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.about-region {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: fit-content;
}

.about-region strong { color: var(--green); }

/* ── Process steps ── */
.section.process {
  max-width: none;
  width: 100%;
  background: var(--cream);
}

.section.process .section-heading,
.section.process .steps {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(12.5% + 21px);
  right: calc(12.5% + 21px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--green-2), var(--gold-light));
  z-index: 0;
}

.steps article {
  position: relative;
  z-index: 1;
  padding: 0 16px 8px;
  text-align: center;
}

.steps span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px var(--cream);
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.steps p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Testimonials slider ── */
.testimonial-slider {
  width: 100%;
  max-width: none;
  margin: 0;
}

.testimonial-viewport {
  position: relative;
  min-height: 260px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
}

.testimonial-slide {
  grid-area: 1 / 1;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.testimonial-slide p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 20px);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.testimonial-slide footer strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  font-style: normal;
  font-family: var(--font-body);
}

.testimonial-slide footer span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-body);
  margin-top: 3px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.testimonial-arrow:hover {
  background: var(--sage);
  border-color: var(--green-2);
  transform: translateY(-1px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

.testimonial-dot:hover { background: var(--green-2); }

/* ── FAQ ── */
.faq-list {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: var(--cream); }

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact ── */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-cta {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(145deg, #075b4e 0%, #053530 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.contact-cta h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-cta > p {
  margin: 0 0 20px;
  opacity: 0.88;
  font-size: 15px;
  line-height: 1.6;
}

.contact-promises {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-promises li {
  font-size: 14px;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
  opacity: 0.9;
}

.contact-promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-wrap { position: relative; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  font-weight: 700;
}

.contact-form label:not(.contact-option) {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, outline 0.2s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label { margin-bottom: 0; }

.form-fieldset {
  border: 0;
  margin: 0 0 18px;
  padding: 0;
}

.form-fieldset legend {
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 10px;
  padding: 0;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-option {
  cursor: pointer;
  margin: 0;
}

.contact-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-option input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.contact-option input:focus-visible + span {
  outline: 3px solid rgba(10, 92, 77, 0.2);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(10, 92, 77, 0.12);
  border-color: var(--green-2);
  background: #fff;
}

.form-error {
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 14px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.5;
}

.form-note a { color: var(--green-2); text-decoration: underline; }

.form-success {
  background: linear-gradient(160deg, var(--sage) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 56px) 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--green);
  margin: 0 0 12px;
  line-height: 1.2;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
  margin-inline: auto;
}

.hidden { display: none !important; }

/* ── Footer ── */
.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  margin-top: auto;
  padding: 0;
  background: var(--green);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  width: 100%;
  padding: 44px var(--page-gutter) 40px;
}

.site-footer strong {
  font-family: var(--font-display);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover { color: var(--gold-light); }

/* ── Mobile sticky CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 10px 12px;
  gap: 8px;
  grid-template-columns: 1fr 1.4fr auto;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
}

.mobile-cta-btn svg { width: 16px; height: 16px; }

.mobile-cta-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.mobile-cta-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: 12px 14px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.15s; }

.reveal-delay-2 { transition-delay: 0.25s; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Legal pages ── */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.legal h1 {
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}

.legal-card h2 {
  font-size: 18px;
  color: var(--green);
  margin: 0 0 12px;
}

.legal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
}

.back-link:hover { color: var(--green-2); }

/* ── Responsive ── */
@media (max-width: 1020px) {
  body {
    padding-top: var(--header-mobile-h);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    height: var(--header-mobile-h);
    min-height: var(--header-mobile-h);
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 4px 24px rgba(5, 61, 52, 0.08);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .nav-toggle:active { background: var(--sage); }

  .main-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    max-height: calc(100vh - var(--header-mobile-h) - 24px);
    overflow-y: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 101;
  }

  .main-nav.open { display: flex; }

  .main-nav a:not(.nav-cta) {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .main-nav a:not(.nav-cta):hover { background: var(--cream); }
  .main-nav a:not(.nav-cta)::after { display: none; }

  .nav-cta { text-align: center; margin-top: 6px; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image {
    border-radius: var(--radius);
    max-height: 440px;
    aspect-ratio: 4 / 5;
  }

  .hero-image img {
    object-position: 80% 20%;
    transform: scale(1.05);
    transform-origin: 80% 20%;
  }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .steps article { text-align: left; padding: 0; }
  .steps span { margin: 0 0 16px; }
  .contact { grid-template-columns: 1fr; }
  .contact-cta { position: static; }
  .about-values { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(5, 61, 52, 0.12);
  }
  .site-footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }

  .mobile-cta { display: grid; }

  .service-grid,
  .steps { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(30px, 8vw, 38px); }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .hero-price-actions { flex-direction: column; }
  .hero-price-actions .btn { width: 100%; }

  .hero-price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-price-value { text-align: left; }

  .boundaries-inner { grid-template-columns: 1fr; }

  .signature-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .section-pad,
  .section { padding-left: 20px; padding-right: 20px; }

  .trust-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .form-row { grid-template-columns: 1fr; }

  .faq-list { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }
}

/* ── Pricing page ── */
.pricing-page {
  width: 100%;
  overflow-x: clip;
}

.pricing-hero {
  position: relative;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(20px, 3vw, 32px);
}

.pricing-hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: radial-gradient(circle, rgba(184, 149, 106, 0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: pricingGlow 8s ease-in-out infinite alternate;
}

@keyframes pricingGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(-20px, 16px) scale(1.08); opacity: 1; }
}

.pricing-hero-inner {
  position: relative;
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 12px 0 14px;
}

/* Shared price chip — small, never overwhelming */
.price-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--sage);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.price-chip-light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.price-chip-muted {
  background: var(--cream);
  color: var(--muted);
  font-weight: 600;
}

.price-free-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 32px);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.price-free-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.price-free-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-light);
}

.price-free-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.price-free-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  margin: 0 0 6px;
  font-weight: 700;
}

.price-free-copy p {
  margin: 0;
  opacity: 0.88;
  font-size: 14px;
  line-height: 1.5;
  max-width: 420px;
}

.price-free-btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.price-free-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.price-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.price-badge-free {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.price-featured-scroll {
  margin-bottom: 28px;
  margin-left: calc(-1 * var(--page-gutter));
  margin-right: calc(-1 * var(--page-gutter));
  padding: 4px var(--page-gutter) 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.price-featured-scroll::-webkit-scrollbar {
  height: 6px;
}

.price-featured-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.price-featured-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
}

.price-featured-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(5, 61, 52, 0.15);
}

.price-featured-card-accent {
  border-color: var(--gold);
  background: linear-gradient(165deg, #fff 55%, var(--gold-light) 100%);
}

.price-featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.price-featured-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-light);
  background: var(--sage);
  padding: 4px 9px;
  border-radius: 999px;
}

.price-featured-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green);
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.25;
}

.price-featured-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.pricing-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(184, 149, 106, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.pricing-notice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--green);
  display: grid;
  place-items: center;
}

.pricing-notice-icon svg {
  width: 20px;
  height: 20px;
}

.pricing-notice strong {
  display: block;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 4px;
}

.pricing-notice p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-featured-cta {
  text-align: center;
}

.pricing-details {
  background: var(--cream);
  padding-top: clamp(44px, 6vw, 68px);
  padding-bottom: clamp(44px, 6vw, 68px);
}

.price-tables {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-table-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.price-table-block:hover {
  box-shadow: var(--shadow);
}

.price-table-header {
  padding: 16px 20px;
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}

.price-table-header h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}

.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table thead {
  background: var(--cream);
}

.price-table th {
  padding: 11px 18px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.price-table th:last-child {
  text-align: right;
  width: 120px;
}

.price-table td {
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
  transition: background 0.2s ease;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:hover td {
  background: rgba(232, 239, 233, 0.45);
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 28%;
  min-width: 130px;
}

.price-table td:nth-child(2) {
  color: var(--muted);
  font-size: 13px;
}

.price-cell {
  text-align: right;
  white-space: nowrap;
  vertical-align: middle;
}

.price-cell .price-chip {
  float: right;
}

.price-table-notice-row td {
  background: #fffdf8;
}

.price-table-notice-row:hover td {
  background: #faf6ee !important;
}

.price-table-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #9a6b2e;
}

.pricing-note {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-note strong {
  color: var(--green);
  font-weight: 600;
}

.pricing-bottom-cta {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.pricing-bottom-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-bottom-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-bottom-card h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--green);
  margin: 0 0 10px;
}

.pricing-bottom-card p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.main-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

/* ── Airy multi-page layout ── */
.content-narrow {
  max-width: 560px;
  margin: 0 auto;
}

.text-link {
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover { color: var(--green-2); }

/* Homepage */
.page-home .home-main > section:not(.hero-banner) {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Full-width hero banner */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 61, 52, 0.82) 0%, rgba(5, 61, 52, 0.45) 42%, rgba(5, 61, 52, 0.08) 72%),
    linear-gradient(to top, rgba(5, 61, 52, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  padding: clamp(36px, 5vw, 56px) var(--page-gutter);
  padding-bottom: clamp(40px, 6vw, 64px);
  color: #fff;
}

.hero-banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  color: #fff;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75) !important;
}

.lead-light {
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 20px;
}

.home-facts-light li {
  color: rgba(255, 255, 255, 0.9);
}

.home-facts-light li::before {
  background: var(--gold-light);
}

.home-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-facts li {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.home-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-prices {
  padding-top: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.home-prices-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}

.price-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
  text-align: center;
}

.price-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.price-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.price-stat-link {
  color: inherit;
  transition: transform 0.2s;
}

.price-stat-link:hover {
  transform: translateY(-2px);
}

.price-stat-link .price-stat-value { color: var(--green-2); }

.home-services {
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: clamp(56px, 9vw, 96px);
}

.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: -0.02em;
}

.home-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-service-list li {
  border-bottom: 1px solid var(--line);
}

.home-service-list li:first-child {
  border-top: 1px solid var(--line);
}

.home-service-list a {
  display: block;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}

.home-service-list a:hover {
  color: var(--green);
  padding-left: 8px;
}

.home-more {
  text-align: center;
  margin: 28px 0 0;
  font-size: 15px;
}

.home-contact {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(64px, 10vw, 100px);
  text-align: center;
}

.home-contact h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 12px;
}

.home-contact p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.site-footer-minimal {
  grid-template-columns: 1fr !important;
  text-align: center;
  gap: 8px !important;
  padding-top: 32px !important;
  padding-bottom: 28px !important;
}

.site-footer-minimal p {
  margin: 0 !important;
  font-size: 13px;
}

.back-link-inline {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.back-link-inline:hover { color: var(--gold-light); }

/* Sub pages */
.page-sub .sub-main {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.sub-hero {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) var(--page-gutter) clamp(40px, 6vw, 56px);
  text-align: center;
}

.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sub-hero .lead {
  margin: 0;
}

.sub-section {
  padding: clamp(40px, 6vw, 64px) var(--page-gutter);
}

.sub-section-muted {
  background: var(--cream);
}

.sub-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 16px;
  text-align: center;
}

.sub-section-title-small {
  font-size: clamp(18px, 2.5vw, 22px);
}

.sub-section-intro {
  text-align: center;
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.service-list-airy {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.service-item-airy h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 10px;
  line-height: 1.25;
}

.service-item-airy p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.region-text {
  margin-top: 20px !important;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px !important;
  color: var(--text) !important;
}

.extras-simple {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.extras-simple li {
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.sub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: clamp(32px, 5vw, 48px) var(--page-gutter) clamp(48px, 6vw, 72px);
}

.faq-list-single {
  max-width: 600px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-list-single .faq-item summary {
  padding: 20px 22px;
}

/* Über mich page */
.about-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  padding: clamp(40px, 6vw, 72px) var(--page-gutter);
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .about-page {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(40px, 5vw, 64px);
  }
}

.about-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 82% 22%;
  display: block;
}

.about-portrait figcaption {
  padding: 18px 20px;
  background: linear-gradient(135deg, #075145, #053530);
  color: #fff;
}

.about-portrait figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
}

.about-portrait figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
}

.about-page-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-page-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .home-actions,
  .home-contact-actions {
    flex-direction: column;
  }

  .home-actions .btn,
  .home-contact-actions .btn {
    width: 100%;
  }

  .home-prices-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero-banner {
    min-height: clamp(520px, 78vh, 680px);
  }

  .hero-banner-scrim {
    background:
      linear-gradient(to top, rgba(5, 61, 52, 0.92) 0%, rgba(5, 61, 52, 0.6) 50%, rgba(5, 61, 52, 0.25) 100%);
  }

  .hero-banner-content {
    max-width: none;
  }
}

@media (min-width: 900px) {
  .price-featured-scroll {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }

  .price-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 18px;
  }

  .price-featured-card {
    flex: unset;
  }
}

@media (max-width: 768px) {
  .price-free-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .price-free-icon {
    display: none;
  }

  .price-free-btn {
    width: 100%;
    justify-content: center;
  }

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .price-table tr:last-child {
    border-bottom: 0;
  }

  .price-table td {
    padding: 3px 0;
    border: 0;
  }

  .price-table td:first-child {
    font-size: 14px;
    margin-bottom: 4px;
    width: 100%;
  }

  .price-table td:nth-child(2) {
    margin-bottom: 8px;
  }

  .price-cell {
    text-align: left;
  }

  .price-cell .price-chip {
    float: none;
  }
}

@media (max-width: 640px) {
  .price-featured-card:hover,
  .pricing-bottom-card:hover {
    transform: none;
  }

  .pricing-hero-glow {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero-glow { animation: none; }
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .service-card:hover { transform: none; }
  .testimonial-slide { transition: none; }
}

/* ── Premium rebuild 2026 ── */
.premium-site {
  --premium-max: 1120px;
  --premium-narrow: 720px;
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 149, 106, 0.08), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #fbf8f1 100%);
  color: var(--text);
}

.premium-site .premium-header {
  height: 78px;
  background: rgba(255, 253, 249, 0.9);
  border-bottom-color: rgba(5, 61, 52, 0.08);
}

.premium-site .main-nav {
  gap: clamp(12px, 1.8vw, 24px);
}

.premium-site .main-nav a:not(.nav-cta) {
  color: #51645f;
}

.premium-site .nav-cta {
  background: var(--green);
  border-radius: 999px;
  padding: 12px 18px;
}

.premium-eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-2);
}

.premium-lead {
  margin: 0 0 26px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: #435853;
  font-weight: 500;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: center;
  max-width: var(--premium-max);
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) var(--page-gutter) clamp(48px, 8vw, 86px);
}

.premium-hero-copy h1,
.premium-section-head h2,
.premium-subhero h1,
.premium-cta h2,
.premium-about-copy h1 {
  font-family: var(--font-display);
  color: var(--green);
  letter-spacing: -0.035em;
}

.premium-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
}

.premium-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 11px;
}

.premium-checks li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: var(--text);
}

.premium-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.premium-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-actions-center {
  justify-content: center;
}

.premium-text-link {
  font-weight: 800;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.premium-text-link:hover { color: var(--green-2); }

.premium-hero-media {
  position: relative;
  border-radius: 30px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 26px 80px rgba(5, 61, 52, 0.11);
}

.premium-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 82% 22%;
  border-radius: 24px;
}

.premium-mini-card {
  position: absolute;
  left: clamp(18px, 4vw, 34px);
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--green);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.premium-section {
  padding: clamp(64px, 9vw, 112px) var(--page-gutter);
}

.premium-section-head {
  max-width: var(--premium-narrow);
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.premium-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
}

.premium-section-head p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.premium-soft {
  background: rgba(232, 239, 233, 0.42);
}

.premium-price-section {
  background: #fff;
  border-top: 1px solid rgba(5, 61, 52, 0.08);
  border-bottom: 1px solid rgba(5, 61, 52, 0.08);
}

.premium-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--premium-max);
  margin: 0 auto;
}

.premium-price-grid article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  box-shadow: var(--shadow-sm);
}

.premium-price-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.premium-price-grid strong {
  display: block;
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.premium-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--premium-max);
  margin: 0 auto;
}

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

.premium-card {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(5, 61, 52, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.premium-card h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.3vw, 23px);
  color: var(--green);
}

.premium-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 15px;
}

.premium-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.premium-list li {
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.premium-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 1.85em;
}

.premium-secondary-offer {
  padding-top: clamp(54px, 7vw, 84px);
  padding-bottom: clamp(54px, 7vw, 84px);
}

.premium-secondary-offer .premium-section-head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

.premium-small-grid {
  max-width: 860px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.premium-small-grid article {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(5, 61, 52, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.premium-center { text-align: center; }

.premium-steps {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-steps article {
  padding: 28px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.premium-steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.premium-steps h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 18px;
}

.premium-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.premium-boundary {
  background: #fffaf0;
}

.premium-quote {
  padding-top: clamp(46px, 7vw, 72px);
  padding-bottom: clamp(46px, 7vw, 72px);
}

.premium-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.premium-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.45;
  color: var(--green);
}

.premium-quote footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.premium-faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.premium-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.premium-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--green);
}

.premium-faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.premium-cta {
  margin: 0 var(--page-gutter) clamp(62px, 8vw, 96px);
  padding: clamp(38px, 6vw, 64px) clamp(24px, 5vw, 64px);
  border-radius: 32px;
  background: linear-gradient(135deg, #06463c 0%, #082f2a 100%);
  color: #fff;
  text-align: center;
}

.premium-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.premium-cta p {
  margin: 0 auto 26px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.premium-footer {
  padding: 34px var(--page-gutter) 96px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.premium-footer p {
  margin: 4px 0;
  font-size: 13px;
}

.premium-footer strong,
.premium-footer a {
  color: #fff;
}

.premium-subhero {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) var(--page-gutter) clamp(40px, 7vw, 72px);
  text-align: center;
}

.premium-subhero-muted {
  background: rgba(232, 239, 233, 0.42);
  max-width: none;
}

.premium-subhero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.02;
}

.premium-subhero p:not(.premium-eyebrow) {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.premium-two-col {
  max-width: var(--premium-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.premium-two-col h2 {
  font-family: var(--font-display);
  color: var(--green);
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.premium-two-col p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.premium-about {
  max-width: var(--premium-max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.premium-about-media {
  margin: 0;
  padding: 12px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.premium-about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 82% 22%;
  border-radius: 24px;
}

.premium-about-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.premium-about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.premium-note-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--text) !important;
  font-weight: 600;
}

.premium-contact-layout {
  max-width: var(--premium-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter) clamp(72px, 9vw, 110px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.premium-contact-card,
.premium-contact-form {
  border-radius: 28px;
}

.premium-contact-card {
  background: var(--green);
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
  position: sticky;
  top: 98px;
}

.premium-contact-card h2 {
  font-family: var(--font-display);
  margin: 0 0 22px;
  font-size: 30px;
  color: #fff;
}

.premium-contact-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.premium-contact-card a,
.premium-contact-card strong {
  color: #fff;
}

@media (max-width: 1020px) {
  .premium-site .premium-header {
    height: var(--header-mobile-h);
  }
}

@media (max-width: 900px) {
  .premium-hero,
  .premium-two-col,
  .premium-about,
  .premium-contact-layout {
    grid-template-columns: 1fr;
  }

  .premium-hero-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .premium-card-grid,
  .premium-card-grid-3,
  .premium-price-grid,
  .premium-small-grid,
  .premium-steps {
    grid-template-columns: 1fr;
  }

  .premium-contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .premium-hero {
    padding-top: 36px;
  }

  .premium-hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .premium-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-actions .btn,
  .premium-actions .premium-text-link {
    width: 100%;
    text-align: center;
  }

  .premium-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .premium-cta {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 26px;
  }

  .premium-footer {
    padding-bottom: 88px;
  }

  .premium-mobile-cta {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Reference-inspired homepage ── */
.reference-home {
  background: #fbf8f1;
}

.reference-home .ref-header {
  height: 70px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 35px rgba(5, 61, 52, 0.06);
}

.reference-home .brand {
  align-items: flex-start;
  gap: 10px;
}

.reference-home .brand span::after {
  content: "Orientierung. Unterstützung. Entlastung.";
  display: block;
  margin-top: -2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
}

.reference-home .main-nav {
  font-size: 13px;
  gap: clamp(16px, 2vw, 28px);
}

.reference-home .nav-cta {
  border-radius: 8px;
  padding: 12px 18px;
  background: #073f35;
}

.ref-hero {
  min-height: clamp(500px, 66vh, 660px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.92) 37%, rgba(255, 253, 249, 0.08) 58%),
    url("/assets/hero-banner.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(5, 61, 52, 0.08);
  overflow: hidden;
}

.ref-hero-copy {
  padding: clamp(52px, 8vw, 92px) var(--page-gutter);
  align-self: center;
  max-width: 610px;
}

.ref-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ref-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--green);
}

.ref-hero p:not(.ref-kicker):not(.ref-trust) {
  margin: 0 0 26px;
  max-width: 480px;
  color: #37504a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.ref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.ref-actions .btn {
  border-radius: 8px;
  padding: 13px 20px;
}

.ref-trust {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding-left: 24px;
  position: relative;
}

.ref-trust::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
}

.ref-hero-photo {
  align-self: end;
  justify-self: center;
  width: min(480px, 45vw);
  margin-right: clamp(28px, 6vw, 90px);
  filter: drop-shadow(0 28px 55px rgba(5, 61, 52, 0.16));
}

.ref-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 78% 18%;
  border-radius: 24px 24px 0 0;
}

.ref-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  padding: 0 var(--page-gutter);
}

.ref-service-card {
  min-height: 210px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 61, 52, 0.08);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(5, 61, 52, 0.055);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ref-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(5, 61, 52, 0.09);
}

.ref-service-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 30px;
}

.ref-service-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: var(--green);
  font-size: 24px;
  line-height: 1.08;
}

.ref-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.ref-service-card::after {
  content: "→";
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold);
  font-weight: 800;
}

.ref-service-card-muted {
  opacity: 0.82;
}

.ref-process {
  padding: clamp(46px, 7vw, 78px) var(--page-gutter) clamp(30px, 5vw, 54px);
}

.ref-section-title {
  text-align: center;
  margin-bottom: 28px;
}

.ref-section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.ref-process-panel {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fffdf9;
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 18px 50px rgba(5, 61, 52, 0.055);
}

.ref-process-panel article {
  padding: 28px 28px 30px;
  border-right: 1px solid var(--line);
}

.ref-process-panel article:last-child {
  border-right: 0;
}

.ref-process-panel span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
}

.ref-process-panel h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 15px;
}

.ref-process-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.ref-values {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px) var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.ref-values article {
  padding: 24px 22px;
  background: #fbf4ea;
  border-right: 1px solid rgba(5, 61, 52, 0.08);
}

.ref-values article:first-child {
  border-radius: 10px 0 0 10px;
}

.ref-values article:last-child {
  border-right: 0;
  border-radius: 0 10px 10px 0;
}

.ref-values h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 15px;
}

.ref-values p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.ref-offers {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) var(--page-gutter);
  align-items: start;
}

.ref-offer-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.ref-offer-intro p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.ref-offer-intro ul,
.ref-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ref-offer-intro li,
.ref-price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.ref-offer-intro li::before,
.ref-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-2);
  font-weight: 800;
}

.ref-price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ref-price-card {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid rgba(5, 61, 52, 0.09);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(5, 61, 52, 0.055);
  text-align: center;
}

.ref-price-card h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}

.ref-price-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1;
  font-weight: 700;
}

.ref-price-card span {
  display: block;
  min-height: 36px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ref-price-card ul {
  margin-bottom: 24px;
  text-align: left;
}

.ref-price-card a {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.ref-price-card-featured {
  border: 1.5px solid var(--gold);
  transform: translateY(-18px);
}

.ref-badge {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -32px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 6px 6px 0 0;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ref-testimonial {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--page-gutter) clamp(54px, 8vw, 90px);
}

.ref-testimonial blockquote {
  margin: 0;
  padding: 28px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 18px 50px rgba(5, 61, 52, 0.055);
}

.ref-testimonial blockquote::before {
  content: "“";
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.8;
}

.ref-testimonial p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.ref-testimonial footer {
  grid-column: 2;
  margin-top: -10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ref-final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(34px, 6vw, 58px) var(--page-gutter);
  background: linear-gradient(135deg, #073f35 0%, #052e28 100%);
  color: #fff;
}

.ref-compass {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--gold-light);
}

.ref-compass svg {
  width: 44px;
  height: 44px;
}

.ref-final-cta h2 {
  margin: 0 0 8px;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  color: #fff;
}

.ref-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.ref-final-contact {
  display: grid;
  gap: 12px;
  justify-items: end;
  white-space: nowrap;
}

.ref-final-contact > a:first-child {
  color: #fff;
  font-weight: 800;
}

.ref-footer {
  padding-top: 24px;
  padding-bottom: 88px;
}

@media (max-width: 1020px) {
  .reference-home .brand span::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .ref-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.9) 58%, rgba(255, 253, 249, 0.54) 100%),
      url("/assets/hero-banner.png") center / cover no-repeat;
  }

  .ref-hero-photo {
    display: none;
  }

  .ref-service-strip,
  .ref-process-panel,
  .ref-values,
  .ref-offers,
  .ref-price-cards,
  .ref-final-cta {
    grid-template-columns: 1fr;
  }

  .ref-process-panel article,
  .ref-values article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ref-process-panel article:last-child,
  .ref-values article:last-child {
    border-bottom: 0;
  }

  .ref-values article,
  .ref-values article:first-child,
  .ref-values article:last-child {
    border-radius: 0;
  }

  .ref-values article:first-child {
    border-radius: 10px 10px 0 0;
  }

  .ref-values article:last-child {
    border-radius: 0 0 10px 10px;
  }

  .ref-price-card-featured {
    transform: none;
    margin-top: 30px;
  }

  .ref-final-contact {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .ref-hero-copy {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .ref-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .ref-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ref-actions .btn {
    width: 100%;
  }

  .ref-service-card {
    min-height: 0;
  }

  .ref-testimonial blockquote {
    grid-template-columns: 1fr;
  }

  .ref-testimonial footer {
    grid-column: auto;
    margin-top: 0;
  }
}

/* Responsive cleanup for reference homepage */
.reference-home .site-header {
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
}

.ref-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  max-width: 1280px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.94) 42%, rgba(255, 253, 249, 0.22) 70%),
    url("/assets/hero-banner.png") center / cover no-repeat;
}

.ref-hero-copy {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.ref-hero h1 {
  max-width: 12ch;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.06;
  overflow-wrap: normal;
  hyphens: manual;
}

.ref-hero p:not(.ref-kicker):not(.ref-trust) {
  max-width: 46ch;
  font-size: 15px;
}

.ref-hero-photo {
  width: min(420px, 36vw);
  align-self: center;
  margin-right: clamp(24px, 4vw, 58px);
}

.ref-hero-photo img {
  border-radius: 22px;
}

.ref-service-strip {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 5vw, 58px);
}

.ref-service-card {
  min-height: 180px;
  padding: clamp(22px, 2.8vw, 30px);
}

.ref-service-card span {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.ref-service-card h2 {
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.ref-service-card p {
  max-width: 28ch;
}

.ref-case-note {
  max-width: 1120px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
}

.ref-case-note > * {
  min-width: 0;
}

.ref-case-note div {
  padding: 22px 24px;
  border-radius: 14px 0 0 14px;
  background: rgba(251, 244, 234, 0.85);
  border: 1px solid rgba(5, 61, 52, 0.08);
  border-right: 0;
}

.ref-case-note h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}

.ref-case-note p:not(.ref-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.ref-case-note a {
  justify-self: end;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ref-process {
  padding-top: clamp(42px, 6vw, 70px);
}

.ref-section-title h2 {
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.2;
}

.ref-process-panel {
  max-width: 1000px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ref-process-panel article {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.ref-offers {
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(48px, 7vw, 78px);
}

.ref-offer-intro h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.08;
}

.ref-price-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.ref-price-card {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 28px) clamp(18px, 2vw, 24px);
}

.ref-price-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.18;
}

.ref-price-card strong {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
}

.ref-price-card span {
  min-height: 0;
  line-height: 1.4;
}

.ref-price-card-featured {
  transform: translateY(-12px);
}

.ref-final-cta h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}

@media (max-width: 1180px) {
  .reference-home .main-nav {
    gap: 14px;
    font-size: 12px;
  }

  .reference-home .nav-cta {
    padding: 10px 14px;
  }

  .ref-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  }

  .ref-hero h1 {
    font-size: clamp(40px, 5vw, 54px);
  }

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

  .ref-price-card-featured {
    order: -1;
    grid-column: 1 / -1;
    transform: none;
    margin-top: 30px;
  }
}

@media (max-width: 980px) {
  .ref-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.94) 56%, rgba(255, 253, 249, 0.72) 100%),
      url("/assets/hero-banner.png") center / cover no-repeat;
  }

  .ref-hero h1 {
    max-width: 13ch;
  }

  .ref-hero-photo {
    display: none;
  }

  .ref-service-strip,
  .ref-process-panel,
  .ref-offers,
  .ref-final-cta {
    grid-template-columns: 1fr;
  }

  .ref-case-note {
    grid-template-columns: 1fr;
  }

  .ref-case-note div {
    border-radius: 14px;
    border-right: 1px solid rgba(5, 61, 52, 0.08);
  }

  .ref-case-note a {
    justify-self: start;
  }

  .ref-process-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ref-process-panel article:last-child {
    border-bottom: 0;
  }

  .ref-final-contact {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .ref-service-strip,
  .ref-price-cards {
    grid-template-columns: 1fr;
  }

  .ref-price-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .reference-home .ref-header {
    height: var(--header-mobile-h);
  }

  .ref-hero-copy {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .ref-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  .ref-hero p:not(.ref-kicker):not(.ref-trust) {
    font-size: 14px;
  }

  .ref-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ref-actions .btn {
    width: 100%;
  }

  .ref-service-card {
    min-height: 0;
  }

  .ref-final-cta {
    gap: 18px;
  }

  .ref-compass {
    width: 56px;
    height: 56px;
  }
}

/* ── Ergomobil-inspired CaseKompass homepage ── */
.ergo-home {
  background:
    radial-gradient(circle at 86% 8%, rgba(184, 149, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #faf5ec 100%);
}

.ergo-home .ergo-header {
  height: 72px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 34px rgba(5, 61, 52, 0.07);
}

.ergo-home .brand span::after {
  content: "Orientierung. Entlastung. Vertrauen.";
  display: block;
  margin-top: -2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
}

.ergo-home .main-nav {
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 13px;
}

.ergo-home .nav-cta {
  border-radius: 10px;
  padding: 12px 18px;
}

.ergo-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) var(--page-gutter) clamp(42px, 7vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.ergo-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ergo-hero h1,
.ergo-section-head h2,
.ergo-case-copy h2,
.ergo-price-intro h2,
.ergo-contact-cta h2 {
  font-family: var(--font-display);
  color: var(--green);
  letter-spacing: -0.035em;
}

.ergo-hero h1 {
  margin: 0 0 20px;
  max-width: 12.5ch;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 1.02;
}

.ergo-hero-copy > p:not(.ergo-eyebrow) {
  margin: 0 0 24px;
  max-width: 56ch;
  color: #405953;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7;
  font-weight: 500;
}

.ergo-place-chips,
.ergo-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ergo-place-chips span,
.ergo-area-chips span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(232, 239, 233, 0.9);
  border: 1px solid rgba(5, 61, 52, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.ergo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ergo-actions .btn {
  border-radius: 10px;
}

.ergo-hero-card {
  position: relative;
  border-radius: 30px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 28px 80px rgba(5, 61, 52, 0.12);
}

.ergo-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 82% 22%;
  border-radius: 24px;
}

.ergo-hero-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 14px 30px rgba(5, 61, 52, 0.12);
}

.ergo-hero-note strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 20px;
}

.ergo-hero-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.ergo-expertise,
.ergo-services,
.ergo-process,
.ergo-area,
.ergo-pricing {
  padding: clamp(58px, 8vw, 94px) var(--page-gutter);
}

.ergo-section-head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.ergo-section-head h2,
.ergo-price-intro h2,
.ergo-contact-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.08;
}

.ergo-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.ergo-text-panel {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 20px 58px rgba(5, 61, 52, 0.055);
}

.ergo-text-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ergo-services {
  background: rgba(232, 239, 233, 0.42);
}

.ergo-service-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.ergo-service-card {
  min-width: 0;
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 18px 52px rgba(5, 61, 52, 0.06);
}

.ergo-service-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.ergo-service-card h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.12;
}

.ergo-service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.ergo-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.ergo-service-card li {
  position: relative;
  padding-left: 21px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.ergo-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-2);
  font-weight: 800;
}

.ergo-case-add {
  max-width: 1120px;
  margin: clamp(42px, 7vw, 74px) auto;
  padding: clamp(28px, 4vw, 42px) var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(5, 61, 52, 0.1);
  border-bottom: 1px solid rgba(5, 61, 52, 0.1);
}

.ergo-case-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.ergo-case-copy p:not(.ergo-eyebrow) {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.ergo-process-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 18px 52px rgba(5, 61, 52, 0.055);
}

.ergo-process-grid article {
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.ergo-process-grid article:last-child {
  border-right: 0;
}

.ergo-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ergo-process-grid h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 17px;
}

.ergo-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ergo-area {
  background: rgba(232, 239, 233, 0.38);
}

.ergo-area-chips {
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.ergo-pricing {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(34px, 5vw, 62px);
  max-width: 1120px;
  margin: 0 auto;
}

.ergo-price-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ergo-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ergo-price-grid article {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(5, 61, 52, 0.08);
  box-shadow: 0 18px 52px rgba(5, 61, 52, 0.055);
  text-align: center;
}

.ergo-price-grid small {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  padding: 8px;
  border-radius: 12px 12px 0 0;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ergo-price-grid h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.12;
}

.ergo-price-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.ergo-price-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.ergo-price-featured {
  border-color: var(--gold) !important;
  transform: translateY(12px);
}

.ergo-note {
  grid-column: 2;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.ergo-contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(42px, 7vw, 68px) var(--page-gutter);
  background: linear-gradient(135deg, #073f35 0%, #052e28 100%);
  color: #fff;
}

.ergo-contact-cta .ergo-eyebrow {
  color: var(--gold-light);
}

.ergo-contact-cta h2 {
  margin: 0 0 10px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.ergo-contact-cta p:not(.ergo-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.ergo-contact-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
  white-space: nowrap;
}

.ergo-contact-actions > a:first-child {
  color: #fff;
  font-weight: 800;
}

.ergo-footer {
  padding-top: 24px;
}

@media (max-width: 1120px) {
  .ergo-home .main-nav {
    gap: 12px;
    font-size: 12px;
  }

  .ergo-home .nav-cta {
    padding: 10px 14px;
  }

  .ergo-price-grid {
    grid-template-columns: 1fr;
  }

  .ergo-price-featured {
    transform: none;
    margin-top: 30px;
    order: -1;
  }
}

@media (max-width: 960px) {
  .ergo-home .brand span::after {
    display: none;
  }

  .ergo-hero,
  .ergo-text-panel,
  .ergo-case-add,
  .ergo-process-grid,
  .ergo-pricing,
  .ergo-contact-cta {
    grid-template-columns: 1fr;
  }

  .ergo-hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .ergo-service-grid {
    grid-template-columns: 1fr;
  }

  .ergo-process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ergo-process-grid article:last-child {
    border-bottom: 0;
  }

  .ergo-note {
    grid-column: auto;
  }

  .ergo-contact-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .ergo-home .ergo-header {
    height: var(--header-mobile-h);
  }

  .ergo-hero {
    padding-top: 38px;
    gap: 32px;
  }

  .ergo-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  .ergo-hero-copy > p:not(.ergo-eyebrow) {
    font-size: 14px;
  }

  .ergo-actions {
    flex-direction: column;
  }

  .ergo-actions .btn,
  .ergo-case-add .btn,
  .ergo-contact-actions .btn {
    width: 100%;
  }

  .ergo-contact-actions {
    width: 100%;
  }

  .ergo-expertise,
  .ergo-services,
  .ergo-process,
  .ergo-area,
  .ergo-pricing {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
