/* ============================================================
   MAREN GERDES – COLOR & STYLE
   Editorial, refined, calm. Off-white base, brand turquoise as
   accent, elegant serif paired with clean sans body.

   Fonts (font-family stacks try Adobe Fonts first, then Google
   Fonts fallback, then system fonts; user can plug in an Adobe
   Fonts kit later by adding the kit script in index.html):
   - Display:  adobe-telugu / Cormorant Garamond / Georgia
   - Body:     arial-mt-pro / Clear Sans / Arial
============================================================ */

/* --------------- CSS RESET (light) --------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* --------------- DESIGN TOKENS --------------- */
:root {
  /* Color */
  --bg:           #e2dfdc;   /* Markenfarbe – Hauptbereich (warmes Sand) */
  --bg-outer:     #ffffff;   /* Reines Weiß außen (Passepartout) */
  --surface:      #e0e6eb;   /* Karten/Panels – kühles Hell-Grau mit leichtem Petrol-Stich */
  --surface-alt:  #d6d3d0;   /* leicht dunkler als bg */
  --ink:          #1f2024;   /* near-black for text (per brief) */
  --ink-soft:     #4d4e54;
  --mute:         #8a8a91;
  --line:         #c8c4c0;
  --line-soft:    #d6d2cd;
  --brand:        #0690c3;
  --brand-deep:   #056a8e;
  --brand-soft:   #d6ebf3;

  /* Type */
  --font-display: 'adobe-telugu', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'arial-mt-pro', 'Clear Sans', Arial, 'Helvetica Neue', sans-serif;

  /* Sizing */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* --------------- BASE --------------- */
body {
  background: var(--bg-outer);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Inner page wrapper: sandfarben, mit Passepartout in Weiß außenrum.
   Oben/unten breiter, seitlich schmaler (wie Goneo-Vorbild). */
.page-wrap {
  background: var(--bg);
  margin: clamp(1.4rem, 3vw, 2.6rem) clamp(0.4rem, 1vw, 1rem);
  position: relative;
}

::selection { background: var(--brand); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------- TYPOGRAPHY --------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--brand-deep);
  font-weight: 400;
}

h1.display { font-size: clamp(2.4rem, 5.6vw, 4.5rem); }
h2.display { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; letter-spacing: -0.005em; }

.eyebrow,
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1.25rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--mute);
}
.section-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

p { color: var(--ink-soft); }

a { transition: color 0.25s var(--ease); }
a:hover { color: var(--brand); }

/* --------------- BUTTONS --------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-deep);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding-inline: 0.4rem;
}
.btn-ghost:hover { color: var(--brand); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============================================================
   HEADER — Petrol auf allen Seiten, im Passepartout
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.35);
}
/* Weißer Passepartout-Streifen unter dem Petrol-Header */
.site-header::after {
  content: "";
  display: block;
  height: clamp(0.6rem, 1.5vw, 1.4rem);
  background: var(--bg-outer);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 76px; width: auto; }

.nav-desktop ul {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
.nav-desktop a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: inline-block;
}
/* Dezente Linien oben UND unten – auf dem li statt dem a (sonst Konflikt mit Dropdown-Pfeil) */
.nav-desktop > ul > li {
  position: relative;
  padding: 1.2rem 0;
}
.nav-desktop > ul > li::before,
.nav-desktop > ul > li::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s var(--ease), height 0.3s var(--ease);
}
.nav-desktop > ul > li::before { top: 0; }
.nav-desktop > ul > li::after  { bottom: 0; }
.nav-desktop > ul > li:hover::before,
.nav-desktop > ul > li:focus-within::before,
.nav-desktop > ul > li:hover::after,
.nav-desktop > ul > li:focus-within::after {
  background: #fff;
  height: 1.5px;
}

/* Dropdown */
.nav-desktop .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-desktop .has-dropdown > a::before {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  order: 2;
  transition: transform 0.25s var(--ease);
}
.nav-desktop .has-dropdown:hover > a::before,
.nav-desktop .has-dropdown:focus-within > a::before {
  transform: translateY(1px) rotate(225deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.6rem 0;
  margin-top: -0.8rem;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s 0.25s;
  border-radius: var(--radius);
  z-index: 10;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-desktop .has-dropdown:hover .dropdown,
.nav-desktop .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.dropdown li { display: block; }
.dropdown a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  background: var(--bg);
  color: var(--brand-deep);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--brand-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-mobile ul {
  padding: 1.5rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.nav-mobile a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  display: block;
}
.nav-mobile .submenu-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.nav-mobile .submenu {
  padding: 0 0 0 1.2rem;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-left: 1px solid rgba(255,255,255,0.3);
}
.nav-mobile .submenu a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #d0e3eb;
}
.nav-mobile.open { display: block; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-section-bg {
  position: absolute;
  inset: clamp(0.8rem, 2vw, 1.6rem);
  overflow: hidden;
  border-radius: var(--radius);
  z-index: 0;
}
.hero-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero::before {
  /* Subtle decorative line on the right */
  content: "";
  position: absolute;
  top: 30%; right: 0;
  width: 1px; height: 35%;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
}

/* Brand wordmark — Logo-Schriftzug auf der Startseite */
.brand-wordmark {
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.brand-script-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
}
.brand-tagline {
  font-family: 'Crimson Text', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--ink);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.6rem;
}

/* ============================================================
   SLOGAN BAND  — eigener Abschnitt zwischen Hero und Über mich
============================================================ */
.slogan-band {
  background: var(--bg);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}
.slogan-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 30em;
  margin-inline: auto;
}
.slogan-text em {
  font-style: italic;
  color: var(--brand-deep);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 560px;
}
.hero-content .eyebrow { margin-bottom: 1.5rem; }
.hero-lead {
  margin-top: 1.8rem;
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 32em;
}
.hero-tagline {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brand-deep);
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 720px;
}
.hero-media--cutout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.hero-media > picture { display: block; height: 100%; }
.hero-media > picture img { border-radius: var(--radius); }
.hero-media--cutout img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  border-radius: 0;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding-block: var(--section-y);
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 720px;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 42% center;
  border-radius: var(--radius);
}
.about-stamp {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: var(--surface);
  padding: 1rem 1.4rem;
  border: 1px solid var(--line);
  text-align: center;
  min-width: 180px;
}
.about-stamp img {
  display: block;
  width: 200px;
  height: auto;
}
.about-content > * + * { margin-top: 1.4rem; }
.about-content .display { margin-bottom: 1.8rem; }
.about-text p + p { margin-top: 1rem; }

.credentials {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 2px solid var(--brand);
}
.credentials li {
  background: var(--surface);
  padding: 1.2rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.credentials li span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.3rem;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding-block: var(--section-y);
  background: var(--bg);
}
.services-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.services-head .display { margin-bottom: 1.5rem; }
.services-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background 0.4s var(--ease);
  min-height: 320px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 2px solid var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  background: var(--surface);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 0.4rem;
}
.service-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand);
  font-style: italic;
  font-weight: 400;
}
.service-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--ink);
}
.service-card p {
  flex: 1;
  font-size: 0.97rem;
  line-height: 1.7;
}
.card-link {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  align-self: flex-start;
  padding-top: 0.5rem;
  border-top: 1px solid transparent;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.card-link:hover {
  color: var(--brand);
  gap: 0.9rem;
}

.services-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.services-note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   CORPORATE COLOR NETZWERK
============================================================ */
.network {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background: var(--bg);
}
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.network-logo {
  text-align: center;
}
.network-logo a {
  display: inline-block;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.network-logo a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.network-logo img {
  max-width: 100%;
  width: 280px;
  height: auto;
}
.network-content h2.display {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.4rem;
}
.network-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.network-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.network-content a:hover {
  color: var(--brand-deep);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding-block: var(--section-y);
  background: var(--bg);
  position: relative;
}
.testi-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.testi-head .section-eyebrow {
  justify-content: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.testi {
  padding: 2.4rem 1.8rem 2rem;
  border: 2px solid var(--brand);
  position: relative;
  background: var(--surface);
}
.testi::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.3;
  font-style: italic;
}
.testi blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  position: relative;
}
.testi figcaption {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* ============================================================
   GOOGLE REVIEWS (horizontal scroll carousel)
============================================================ */
.google-reviews {
  padding-block: var(--section-y);
  background: var(--sand, var(--bg));
  position: relative;
}
.google-reviews-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding-block: 0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.google-reviews-track::-webkit-scrollbar {
  height: 8px;
}
.google-reviews-track::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 4px;
}
.g-review {
  flex: 0 0 clamp(260px, 32vw, 340px);
  scroll-snap-align: start;
  padding: 1.8rem 1.6rem 1.6rem;
  border: 2px solid var(--brand);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.g-review-stars {
  color: var(--brand-deep);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.g-review blockquote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.g-review figcaption {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.google-reviews-hint {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .g-review { flex-basis: 80vw; }
}
.g-review--long {
  flex-basis: clamp(320px, 42vw, 480px);
}
.g-review--long blockquote {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.g-review--long blockquote p {
  margin: 0 0 0.9em;
}
.g-review--long blockquote p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding-block: var(--section-y);
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-intro .display { margin-bottom: 1.8rem; }
.contact-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
  max-width: 32em;
}
.contact-info {
  border-top: 1px solid var(--line);
}
.contact-info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  font-size: 0.97rem;
}
.contact-info .ci-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.contact-info a:hover { color: var(--brand); }

/* Form */
.contact-form {
  background: var(--surface);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.form-row label span[aria-hidden="true"] { color: var(--brand); margin-left: 0.2rem; }
.form-row label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--mute);
  font-size: 0.78rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 0.97rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
}
.form-row textarea {
  resize: vertical;
  min-height: 130px;
}
.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
  flex-shrink: 0;
}
.form-consent label {
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}
.form-consent label a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  font-size: 0.92rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.form-status.success { color: #15703a; }
.form-status.error   { color: #b3261e; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--brand-deep);
  color: #d6e7ee;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

/* ============================================================
   WEISSE PASSEPARTOUT-STREIFEN
   Trennen Bereiche optisch durch weiße Bänder (gleiche Höhe wie
   der Streifen unter dem Header). So wirkt der Sand-Ton überall
   gleich ruhig und sauber, ohne harte Kanten zwischen Sektionen.
============================================================ */
.slogan-band,
.about,
.services,
.network,
.testimonials,
.contact,
.related-services,
.site-footer {
  border-top: clamp(0.6rem, 1.5vw, 1.4rem) solid var(--bg-outer);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer-brand img {
  height: 76px;
  width: auto;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  color: #b3d2dd;
  font-size: 0.95rem;
  max-width: 28em;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  font-size: 0.93rem;
  margin-bottom: 0.55rem;
  color: #b3d2dd;
}
.footer-col ul li a:hover { color: #fff; }
.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #b3d2dd;
}
.social svg {
  transition: transform 0.3s var(--ease);
}
.social a:hover svg { transform: translateY(-2px); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.6rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #d0e3eb;
}
.footer-bottom ul {
  display: flex;
  gap: 1.8rem;
}
.footer-bottom a { color: #d0e3eb; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATIONS
   Visible by default (SEO + no-JS friendly). Only when JS adds
   .js-on to <html>, elements start hidden and fade in on scroll.
============================================================ */
.js-on .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-on .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-page {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--section-y);
  background: var(--bg);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--mute); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep {
  display: inline-block;
  margin: 0 0.6rem;
  opacity: 0.6;
}

/* Hero of the service page */
.service-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.service-hero--single {
  grid-template-columns: 1fr;
  max-width: 46rem;
}
.service-hero--single .service-hero-media--cutout {
  margin-top: 1.5rem;
  justify-content: flex-start;
}
.service-hero--single .service-hero-media--cutout img {
  max-height: 480px;
}
@media (min-width: 1150px) {
  .service-hero--single {
    grid-template-columns: 1.05fr 1fr;
    max-width: none;
    align-items: start;
  }
  .service-hero--single .service-hero-media--cutout {
    margin-top: 0;
    justify-content: center;
  }
  .service-hero--single .service-hero-media--cutout img {
    max-height: 640px;
  }
}
.service-hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.service-hero-content .eyebrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 400;
}
.service-hero-content .display { margin-bottom: 1.8rem; }
.service-hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 36em;
  margin-bottom: 2rem;
}
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
}
.service-hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 680px;
}
.service-hero-media.landscape {
  aspect-ratio: 3 / 2;
  max-height: 560px;
}
.service-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-hero-media--cutout {
  aspect-ratio: auto;
  max-height: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.service-hero-media--cutout img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 0;
}

/* Body */
.service-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}
.service-body--single {
  grid-template-columns: 1fr;
  max-width: 46rem;
}
.service-body aside {
  position: sticky;
  top: 130px;
  align-self: start;
}
.service-body .section-eyebrow { margin-bottom: 1rem; }
.service-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.service-body h2 + h2 { margin-top: 2.6rem; }
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.service-body p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.content-image {
  margin: 1.8rem 0;
}
.content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* Info card in sidebar */
.service-meta {
  background: var(--surface);
  padding: 1.8rem;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
}
.service-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.3rem;
}
.service-meta dd {
  margin: 0 0 1.1rem 0;
  font-size: 0.97rem;
  color: var(--ink);
}
.service-meta dd:last-child { margin-bottom: 0; }
.service-meta .meta-cta {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.service-meta .btn { width: 100%; }

/* Process steps */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.4rem;
  align-items: start;
}
.process-list .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brand);
  line-height: 1;
  padding-top: 0.1rem;
}
.process-list .step-content strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: 0;
}
.process-list .step-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.info-block {
  margin-top: 2rem;
}
.info-block + .info-block {
  margin-top: 1.6rem;
}
.info-block h3 {
  margin-top: 0;
}
.info-note-link {
  margin-top: 0.9rem !important;
}
.info-note-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--brand-deep);
  text-decoration: none !important;
  border-bottom: 1px solid var(--brand-deep);
  padding-bottom: 0.1rem;
}

/* "For whom" list */
.fit-lead {
  margin: -0.4rem 0 0.9rem;
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fit-list--connected {
  margin-top: 0;
}
.fit-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.fit-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1.075rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--brand-deep);
}

/* Other services teaser */
.related-services {
  background: var(--bg);
  padding-block: var(--section-y);
}
.related-services h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
  text-align: center;
}
.related-services h2 em {
  font-style: italic;
  color: var(--brand-deep);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.related-grid .service-card { min-height: 260px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .related-grid { grid-template-columns: 1fr; }

  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .header-inner { min-height: 78px; }
  .logo img { height: 52px; }

  .hero { padding-top: calc(78px + 2rem); }
  .service-page { padding-top: calc(78px + 2.5rem); }
  .service-hero-media {
    max-height: 520px;
    aspect-ratio: 3/4;
    margin-inline: auto;
    width: 100%;
    max-width: 400px;
  }
  .service-hero-media--cutout {
    aspect-ratio: auto;
    margin-top: 1rem;
    max-width: 100%;
  }
  .service-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-body aside {
    position: static;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-media {
    max-height: 560px;
    aspect-ratio: 3/4;
  }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 540px; }
  .about-stamp { right: -1rem; bottom: -1.5rem; }

  .network-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .network-logo img { width: 220px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }

  .brand-script-img { max-width: 90%; }
  .brand-tagline { font-size: 0.85rem; letter-spacing: 0.3em; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { justify-content: center; }

  .credentials { grid-template-columns: 1fr; }
  .about-stamp { right: 0; left: 0; bottom: -2rem; margin: auto; max-width: 220px; }

  .contact-info li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .contact-form { padding: 1.5rem 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
