/* =========================================================
   Schornsteinfeger Möller – Main Stylesheet
   Design: Handwerksstolz — warm craft meets editorial precision
   Fonts: Cormorant Garamond (display) + Outfit (body/UI)
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark:        #1B1A18;
  --color-anthracite:  #282523;
  --color-red:         #C05A14;     /* ember-orange: fire, craft, warmth */
  --color-red-dark:    #9A4410;
  --color-gold:        #A08520;
  --color-light:       #EDE7DA;     /* warm paper / ash */
  --color-white:       #FDFAF6;     /* warm off-white */
  --color-text:        #2C2A26;
  --color-muted:       #7C746A;
  --color-border:      #D4CBBC;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Outfit', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  --max-width: 1100px;
  --nav-height: 72px;
  --section-gap: 5.5rem;
  --radius: 3px;
  --radius-lg: 8px;
  --shadow: 0 2px 16px rgba(28,26,24,0.09);
  --shadow-lg: 0 8px 32px rgba(28,26,24,0.14);
  --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; height: auto; display: block; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
  color: var(--color-white);
}

/* --- Global Focus Indicators --- */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Override for elements with their own focus treatment */
.navbar__nav a:focus-visible,
.btn:focus-visible,
.footer__links a:focus-visible,
.footer__contact-line a:focus-visible,
.footer__bottom a:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
  border-radius: var(--radius);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.005em; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-gap) 0; }
.section--gray { background: var(--color-light); }
.section--dark { background: var(--color-anthracite); color: var(--color-white); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p {
  font-family: var(--font-sans);
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
}
.section--dark .section-header p { color: #aaa; }

.divider {
  width: 48px; height: 2px;
  background: var(--color-red);
  margin: 1rem auto 0;
}

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 16px rgba(0,0,0,0.4);
  height: var(--nav-height);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.navbar__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.navbar__brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.navbar__nav a {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  text-decoration: none;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
}

.navbar__nav a.active { color: var(--color-gold); }

.navbar__cta {
  background: var(--color-red) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius) !important;
  padding: 0.45rem 1.1rem !important;
}
.navbar__cta:hover { background: var(--color-red-dark) !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 820px) {
  .navbar__hamburger { display: flex; }
  .navbar__nav {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .navbar__nav.is-open { display: flex; }
  .navbar__nav a { padding: 0.7rem 0.5rem; font-size: 0.88rem; width: 100%; }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Hero --- */

@keyframes emberPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

@keyframes ruleGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.hero {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.28;
  filter: grayscale(12%) contrast(1.06);
  display: block;
  max-width: none;
}

/* Layered gradients: heavy left for text readability, photo visible right */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      var(--color-dark) 0%,
      rgba(27,26,24,0.93) 36%,
      rgba(27,26,24,0.62) 60%,
      rgba(27,26,24,0.32) 100%
    ),
    linear-gradient(to top, var(--color-dark) 0%, transparent 28%),
    radial-gradient(ellipse 72% 90% at 26% 52%, rgba(192,90,20,0.36) 0%, transparent 65%);
}

/* Breathing ember glow — animates independently */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 44% 56% at 22% 50%, rgba(192,90,20,0.22) 0%, transparent 60%);
  animation: emberPulse 7s ease-in-out infinite;
  z-index: 1;
}

/* Architectural grid — stronger on the right where photo shows */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,90,20,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,90,20,0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Container: vertically center text in the flex-growing area */
.hero__container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 660px;
}

/* Eyebrow: horizontal rule + label */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* H1: two layers — large display + subtle subtitle */
.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.75rem;
  font-size: inherit;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.22s;
}

.hero__h1-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

/* Animated rule between h1 layers */
.hero__h1-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--color-red);
  margin: 1.05rem 0 0.95rem;
  transform-origin: left center;
  animation: ruleGrow 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.44s;
}

.hero__h1-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.8);
}

.hero__lead {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  line-height: 1.87;
  max-width: 520px;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.38s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.52s;
}

/* Trust bar — frosted glass strip pinned at hero bottom */
.hero__trustbar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(14,12,11,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeIn 1s ease both;
  animation-delay: 0.72s;
}

.hero__trustbar-inner {
  display: flex;
  align-items: stretch;
}

.hero__trustbar-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.3rem 2rem;
  flex: 1;
  min-width: 0;
}

.hero__trustbar-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-red);
  flex-shrink: 0;
  opacity: 0.88;
}

.hero__trustbar-num {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  flex-shrink: 0;
}

.hero__trustbar-label {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 400;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero__trustbar-sep {
  width: 1px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 960px) {
  .hero__trustbar-item { padding: 1.1rem 1.35rem; gap: 0.65rem; }
  .hero__trustbar-num  { font-size: 1.7rem; }
  .hero__trustbar-label { font-size: 0.62rem; }
}

@media (max-width: 700px) {
  .hero { min-height: auto; }
  .hero__trustbar { display: none; }
  .hero__container { padding-top: 4.5rem; padding-bottom: 3.5rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__h1-main { font-size: 2.4rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-red-dark); color: var(--color-white); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--color-white); }

.btn-outline-dark {
  background: transparent;
  color: var(--color-red);
  border: 1px solid var(--color-red);
}
.btn-outline-dark:hover { background: var(--color-red); color: var(--color-white); }

/* --- Info Bar --- */
.info-bar {
  background: var(--color-anthracite);
  border-bottom: 1px solid rgba(192,90,20,0.25);
  color: rgba(255,255,255,0.75);
  padding: 0.65rem 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
}
.info-bar__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.info-bar a { color: rgba(255,255,255,0.88); font-weight: 500; transition: color var(--transition); }
.info-bar a:hover { color: var(--color-red); }
.info-bar span { display: flex; align-items: center; gap: 0.5rem; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  counter-reset: service-counter;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 2.25rem 2rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-top-color var(--transition);
  position: relative;
  counter-increment: service-counter;
}

.service-card::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-border);
  line-height: 1;
  transition: color var(--transition);
  pointer-events: none;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--color-red);
}

.service-card:hover::before { color: rgba(192,90,20,0.15); }

.service-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--color-red);
  margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}
.service-card p {
  font-family: var(--font-sans);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover { gap: 0.55rem; color: var(--color-red-dark); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(192,90,20,0.2);
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-hero p {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(192,90,20,0.08);
  border: 1px solid rgba(192,90,20,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
}
.contact-item__value a { color: var(--color-text); }
.contact-item__value a:hover { color: var(--color-red); }

/* Map */
#map {
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  background: var(--color-light);
  border: 3px solid var(--color-border);
}

.team-card__photo-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--color-light);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  font-size: 0;  /* hide any text content */
}

.team-card__photo-placeholder svg {
  width: 52px;
  height: 52px;
}

.team-card h3 { margin-bottom: 0.3rem; }
.team-card__role {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1rem;
}
.team-card p {
  font-family: var(--font-sans);
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.72;
}

/* --- USP / Icon List --- */
.usp-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.usp-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(192,90,20,0.09);
  border: 1px solid rgba(192,90,20,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--color-red);
}

.usp-item__icon svg { width: 26px; height: 26px; }

.usp-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.usp-item p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

/* --- Maps --- */
#map-bezirk {
  height: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

/* Custom Leaflet tooltip for village labels */
.bezirk-label {
  background: transparent;
  border: none;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-dark);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  white-space: nowrap;
}

/* --- District / Bezirk --- */
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.district-tag {
  background: rgba(192,90,20,0.07);
  border: 1px solid rgba(192,90,20,0.22);
  color: var(--color-red-dark);
  padding: 0.35rem 0.95rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
}

/* --- Service Detail (inner page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-detail:last-child { margin-bottom: 0; }

.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }

.service-detail__image {
  background: linear-gradient(145deg, var(--color-light) 0%, var(--color-white) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-red);
  position: relative;
  overflow: hidden;
}

/* Grid-paper texture inside service image panels */
.service-detail__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}

.service-detail__image svg {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  stroke-width: 1.2;
}

.service-detail__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 2;
}

.service-detail h2 { margin-bottom: 1rem; }

.service-detail ul.check-list {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.check-list li {
  padding: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-family: var(--font-sans);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--color-red);
  border-radius: 1px;
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse { direction: ltr; }
}

/* --- Hilfreiches / Info --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 2rem;
}

.info-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  font-size: 1.2rem;
}
.info-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
}
.info-card a { color: var(--color-red); font-weight: 500; }

/* --- Impressum --- */
.impressum-content h2 {
  font-size: 1.3rem;
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
}
.impressum-content h2:first-child { margin-top: 0; }
.impressum-content p,
.impressum-content address {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-red);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(0,0,0,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(0,0,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--color-white); margin-bottom: 0.6rem; position: relative; }
.cta-banner p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
  position: relative;
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.45);
}

.cta-banner .hero__actions { position: relative; }

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid rgba(192,90,20,0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.footer__brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
}

.footer h3 {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.45rem; }
.footer__links a {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 300;
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.85); }

.footer__contact-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.65rem;
  color: rgba(255,255,255,0.72);
}

.footer__contact-line svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.18em;
  color: var(--color-red);
  opacity: 0.7;
}

.footer__contact-line a { color: rgba(255,255,255,0.88); }
.footer__contact-line a:hover { color: rgba(255,255,255,0.95); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

.footer__bottom a { color: rgba(255,255,255,0.72); }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* --- Responsive Utilities --- */
@media (max-width: 480px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
  .info-bar__inner { flex-direction: column; gap: 0.65rem; text-align: center; align-items: center; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}