
/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */

:root {
  --brand:          #875530;
  --brand-dark:     #6E4526;
  --accent:         #A67C52;
  --bg:             #F6F1EC;
  --bg-alt:         #FBF8F5;
  --text:           #2E2E2E;
  --text-muted:     #6B6B6B;
  --text-light:     #A89880;
  --border:         rgba(135, 85, 48, 0.15);
  --border-light:   rgba(135, 85, 48, 0.08);

  --font-heading:   'Cormorant SC', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --section-v:      5.5rem;
  --content-max:    780px;
  --content-wide:   1080px;

  --radius:         3px;
  --transition:     0.22s ease;
}

/* ─────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brand-dark); }

ul { list-style: none; }

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

p { font-size: 0.97rem; line-height: 1.85; color: var(--text-muted); }

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-v) 2rem;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head--center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85em 2.2em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--outline:hover {
  background-color: var(--brand);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--brand); }

.nav-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5em 0.75em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  background: var(--border-light);
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.5em 1.2em;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--brand-dark); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */

.hero {
  padding: 6rem 2rem 5rem;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.hero__inner {
  max-width: 680px;
}

.hero__eyebrow {
  margin-bottom: 1.6rem;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 1.4rem;
  max-width: 560px;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   SECTION: WIEDERERKENNUNG
───────────────────────────────────────── */

.recognition {
  background-color: var(--bg-alt);
  padding: var(--section-v) 2rem;
}

.recognition__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
}

.recognition__intro h2 {
  margin-bottom: 1.2rem;
}

.recognition__intro p {
  font-size: 1rem;
  line-height: 1.85;
}

.recognition__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.check-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.3em;
  position: relative;
}
.check-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85em;
}
.check-list li.check-list__title::before {
  content: none;
}

/* Telefonnummer in Akzentfarbe */
a[href^="tel:"] {
  color: var(--accent);
}

/* Support-Item Listen ohne Bindestriche (z. B. Kostenlisten) */
.no-dash li::before {
  content: none;
}
.no-dash li {
  padding-left: 0;
}

/* Drei-Felder-Grid: keine Bindestriche vor Label-Items */
.support__grid--labeled .support-item li::before {
  content: none;
}
.support__grid--labeled .support-item li {
  padding-left: 0;
}

/* ─────────────────────────────────────────
   SECTION: UNTERSTÜTZUNG / LEISTUNGEN
───────────────────────────────────────── */

.support {
  padding: var(--section-v) 2rem;
}

.support__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.support-item__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 0.8rem;
  display: block;
}

.support-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.support-item ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-item li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.3em;
  position: relative;
}
.support-item li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85em;
}

/* ─────────────────────────────────────────
   SECTION: ANGEBOTE (SERVICE CARDS)
───────────────────────────────────────── */

.offers {
  background-color: var(--bg-alt);
  padding: var(--section-v) 2rem;
}

.offers__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(135, 85, 48, 0.08);
}

.offer-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.1rem;
}

.offer-card h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0;
}

.offer-card p {
  font-size: 0.88rem;
  flex: 1;
}

.offer-card .link-arrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
}
.offer-card .link-arrow:hover { color: var(--brand-dark); }
.offer-card .link-arrow::after { content: "→"; }

/* ─────────────────────────────────────────
   SECTION: INSIGHT / USP
───────────────────────────────────────── */

.insight {
  padding: var(--section-v) 2rem;
  background: var(--brand);
}

.insight__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.insight h2 {
  color: #fff;
  margin-bottom: 1.4rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.insight p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 1.6rem;
}

.insight p + p { margin-top: -0.4rem; }

.insight .eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   SECTION: WIE ICH ARBEITE
───────────────────────────────────────── */

.approach {
  padding: var(--section-v) 2rem;
  background: var(--bg-alt);
}

.approach__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach__text h2 {
  margin-bottom: 1.4rem;
}

.approach__text p {
  margin-bottom: 1rem;
}

.approach__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.pillar {
  border-left: 2px solid var(--border);
  padding-left: 1.4rem;
  transition: border-color var(--transition);
}
.pillar:hover { border-color: var(--accent); }

.pillar__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   SECTION: ÜBER MICH (trust)
───────────────────────────────────────── */

.about-teaser {
  padding: var(--section-v) 2rem;
}

.about-teaser__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser__image {
  aspect-ratio: 4/5;
  background: var(--border-light);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  position: relative;
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-teaser__text .section-label {
  margin-bottom: 0.8rem;
}

.about-teaser__text h2 {
  margin-bottom: 1.2rem;
}

.about-teaser__text p {
  margin-bottom: 1rem;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.6rem 0 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-alt);
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--border-light);
}

.credentials li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.3em;
  position: relative;
  line-height: 1.6;
}
.credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8em;
}

/* ─────────────────────────────────────────
   SECTION: ABLAUF & KOSTEN
───────────────────────────────────────── */

.process {
  padding: var(--section-v) 2rem;
  background: var(--bg-alt);
}

.process__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(33.33% / 2 + 2rem);
  right: calc(33.33% / 2 + 2rem);
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}

.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brand);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem 1.8rem;
}

.price-card--featured {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.price-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.8rem;
}
.price-card--featured .price-card__label {
  color: rgba(255,255,255,0.65);
}

.price-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.price-card--featured h3 { color: #fff; }

.price-card__price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-card--featured .price-card__price { color: #fff; }

.price-card__duration {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.price-card--featured .price-card__duration { color: rgba(255,255,255,0.65); }

.price-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}
.price-card--featured p { color: rgba(255,255,255,0.8); }

.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────
   SECTION: FAQ
───────────────────────────────────────── */

.faq {
  padding: var(--section-v) 2rem;
}

.faq__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

details.faq-item {
  border-bottom: 1px solid var(--border-light);
}

details.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  gap: 1.5rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: var(--font-body);
  font-weight: 300;
}
details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 0 1.6rem;
}

.faq-item__body p {
  font-size: 0.93rem;
}

/* ─────────────────────────────────────────
   SECTION: LOCAL SEO / PRAXIS
───────────────────────────────────────── */

.local-seo {
  background: var(--bg-alt);
  padding: var(--section-v) 2rem;
}

.local-seo__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.local-seo__text h2 {
  margin-bottom: 1.2rem;
}
.local-seo__text p {
  margin-bottom: 1rem;
}

.local-seo__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.local-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.local-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.local-detail__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.local-detail__value {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECTION: FINAL CTA
───────────────────────────────────────── */

.cta-section {
  padding: var(--section-v) 2rem;
  text-align: center;
}

.cta-section__inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-section .section-label {
  text-align: center;
  margin-bottom: 1rem;
}

.cta-section h2 {
  margin-bottom: 1.2rem;
}

.cta-section p {
  margin-bottom: 2.2rem;
  font-size: 0.97rem;
}

/* ─────────────────────────────────────────
   LANDSCAPE SVG + FOOTER
───────────────────────────────────────── */

.landscape-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
}

.landscape {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  background: #2E2416;
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 2rem 2rem;
  line-height: normal;
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: #fff; }

.footer-nav .sep {
  opacity: 0.25;
  font-size: 0.9rem;
  color: #fff;
}

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   PAGE HEADER (sub-pages)
───────────────────────────────────────── */

.page-header {
  padding: 4.5rem 2rem 3.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.page-header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.page-header .section-label {
  margin-bottom: 0.8rem;
}

.page-header h1 {
  max-width: 600px;
  margin-bottom: 1.2rem;
}

.page-header p {
  max-width: 520px;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────── */

.legal-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-page h1 {
  margin-bottom: 3rem;
}

.legal-page section {
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-page h3 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.legal-page p,
.legal-page address {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-style: normal;
  margin-bottom: 0.6rem;
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.8rem;
}

.legal-page li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  padding-left: 1.3em;
  position: relative;
}
.legal-page li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75em 1em;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}
.form-note a { font-size: inherit; }

/* ─────────────────────────────────────────
   INLINE TEXT UTILITIES
───────────────────────────────────────── */

.text-brand { color: var(--brand); }
.text-muted  { color: var(--text-muted); }
.divider-line {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 1.8rem 0;
}
.divider-line--center { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────
   BACK LINK
───────────────────────────────────────── */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.back-link::before { content: "←"; }
.back-link:hover { color: var(--brand); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 900px) {
  .recognition__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .recognition__lists {
    grid-template-columns: 1fr 1fr;
  }
  .support__grid {
    grid-template-columns: 1fr 1fr;
  }
  .offers__grid {
    grid-template-columns: 1fr 1fr;
  }
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-teaser__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-teaser__image {
    max-width: 360px;
  }
  .process__steps {
    grid-template-columns: 1fr;
  }
  .process__steps::before { display: none; }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .local-seo__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --section-v: 3.5rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open state */
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--border-light);
    gap: 0.2rem;
    z-index: 99;
  }
  .nav-open .nav-links a {
    font-size: 0.85rem;
    padding: 0.7em 0.5em;
  }
  .nav-open .nav-cta {
    display: block;
    margin: 0.8rem 0 0;
    text-align: center;
    padding: 0.8em 1em;
  }

  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero { padding: 3.5rem 1.5rem 3rem; }

  .recognition__lists {
    grid-template-columns: 1fr;
  }
  .support__grid {
    grid-template-columns: 1fr;
  }
  .offers__grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    max-width: 100%;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn { text-align: center; }
}

@media (max-width: 400px) {
  .container, .container--narrow, .section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero { padding-left: 1.2rem; padding-right: 1.2rem; }
}

/* =====================================================
   Blog Cards
   ===================================================== */
.blog-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.blog-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 1.6rem;
}
.blog-card__cat {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--text-light);
}
