@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Italic-VariableFont_wght.ttf") format("truetype");
  
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #184392;
  --blue-dark: #123675;
  --blue-deep: #0b2a5d;
  --blue-soft: #eef3fb;
  --ink: #11161c;
  --muted: #5e6670;
  --line: #d8dde4;
  --white: #fff;
  --max: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.script {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-deep);
}

.skip-link:focus { left: 10px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #eceff2;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 270px;
  height: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.header-phone {
  color: var(--blue-dark);
  font-size: 1.08rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-phone svg,
.header-cta svg,
.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  min-height: 46px;
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 7px 16px rgba(24,67,146,.18);
}

/* Hero */
.hero { background: #f5f6f8; }

.hero-box {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background: #fff;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 29%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,.98) 17%,
    rgba(255,255,255,.73) 32%,
    rgba(255,255,255,.14) 56%,
    rgba(255,255,255,0) 73%
  );
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(48%, 560px);
  padding: 72px 0 62px 54px;
}

 .hero-script {
  font-weight:500;
  margin: 0 0 7px;
  color: var(--blue);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 1.08;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 300;
  line-height: 1.12;
}

.short-line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--blue);
}

.hero-text {
  max-width: 450px;
  margin: 0 0 24px;
  color: #333b43;
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 7px 16px rgba(24,67,146,.18);
}

/* Main content */
.main-content {
  padding: 24px 0 20px;
  background: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, .95fr);
  gap: 38px;
  align-items: start;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading-row span {
  height: 1px;
  background: var(--line);
}

.section-heading-row h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.38rem;
  font-weight: 500;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 166px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 17px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.service-card svg {
  width: 51px;
  height: 51px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: .86rem;
  font-weight: 500;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.45;
}

.why-block {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

 .why-block > h2 {
  font-weight:500;
  margin: 2px 0 24px;
  color: var(--blue);
  font-size: 2.05rem;
  line-height: 1.15;
}

.why-list {
  display: grid;
}

.why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.why-item:last-child { border-bottom: 0; }

.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
}

.why-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0 0 3px;
  font-size: .97rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

/* Contact */
.contact-section {
  padding: 34px 0 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
}

.contact-column {
  min-height: 210px;
  padding: 2px 34px 14px;
  border-right: 1px solid rgba(255,255,255,.42);
}

.contact-column:first-child { padding-left: 0; }
.contact-column:last-child { padding-right: 0; border-right: 0; }

.contact-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-title svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-title h2 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.15;
}

.contact-column p { margin: 0 0 16px; }
.contact-column a { color: #fff; text-underline-offset: 3px; }

.outline-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 5px;
  text-decoration: none;
}

.hours { margin: 0; }

.hours div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 14px;
}

.hours dt,
.hours dd { margin: 0; }

.hours dd { white-space: nowrap; }

.appointment {
  margin-top: 14px !important;
  text-align: left;
  font-size: .95rem;
  color: rgba(255,255,255,.92);
  
}

/* Footer */
.site-footer {
  color: #fff;
  background: var(--blue-deep);
  border-top: 1px solid rgba(255,255,255,.35);
}

.footer-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-inner p {
  margin: 0;
  font-size: .82rem;
}

.footer-inner nav {
  display: flex;
  gap: 34px;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

/* Legal pages */
.legal-page { padding: 60px 0 90px; }

.legal-card {
  max-width: 900px;
  margin-inline: auto;
}

.legal-card > h1 {
  margin: 0 0 28px;
  color: var(--blue);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 1.1rem;
}

.legal-card h4 {
  margin: 18px 0 6px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: #343b43;
}

.legal-card a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.legal-card ul {
  padding-left: 22px;
}

/* Tablet */
@media (max-width: 1040px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .why-block {
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .contact-column:nth-child(2) { border-right: 0; }

  .contact-column:last-child {
    grid-column: 1 / -1;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.4);
  }
}

/* Smartphone */
@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .header-inner {
    min-height: 82px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .brand img { width: 190px; }

  .header-contact {
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
  }

  .header-phone { font-size: .92rem; }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .86rem;
  }

  .hero-box {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 1;
    height: 210px;
  }

  .hero-media::after { display: none; }

  .hero-copy {
    order: 2;
    width: 100%;
    padding: 32px 22px 38px;
  }

   .hero-script {
  font-weight:500;
    font-size: 2.55rem;
    line-height: 1.08;
  }

  .hero-copy h1 {
    font-size: 2rem;
    font-weight: 300;
  }

  .hero-text { font-size: .94rem; }

  .main-content { padding-top: 28px; }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-card {
    min-height: 132px;
    padding: 13px 8px;
  }

  .service-card svg {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
  }

  .service-card h3 {
    font-size: .68rem;
  }

  .service-card p {
    display: none;
  }

   .why-block > h2 {
  font-weight:500;
    margin-top: 10px;
    font-size: 1.95rem;
  }

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

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

  .contact-column,
  .contact-column:first-child,
  .contact-column:last-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.4);
  }

  .contact-column:first-child { border-top: 0; }

  .contact-title h2 { font-size: 1.65rem; }

  .hours div {
    grid-template-columns: 105px 1fr;
  }

  .appointment { text-align: left; }

  .footer-inner {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 18px 26px;
  }
}

@media (max-width: 430px) {
  .brand img { width: 165px; }

  .header-phone { display: none; }

  .header-cta {
    padding-inline: 10px;
  }

  .header-cta svg { display: none; }

  .hero-media { height: 185px; }
}


/* Zusätzliche mobile Optimierungen */
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    gap: 12px;
  }

  .header-contact {
    flex: 0 0 auto;
  }

  .hero {
    background: #fff;
  }

  .hero-box {
    width: 100%;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-heading-row {
    gap: 10px;
  }

  .section-heading-row h2 {
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .service-card {
    border-radius: 6px;
  }

  .why-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-column p,
  .hours {
    font-size: 0.95rem;
  }

  .outline-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 150px;
  }

  .header-cta {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero-media {
    height: 165px;
  }

   .hero-script {
  font-weight:500;
    font-size: 2.35rem;
  }

  .hero-copy h1 {
    font-size: 1.72rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .service-card {
    min-height: 122px;
  }

  .contact-title {
    align-items: flex-start;
  }

  .contact-title svg {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .contact-title h2 {
    font-size: 1.45rem;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0;
  }

  .hours dd {
    white-space: normal;
  }
}


/* Mehr Weißraum im Einstiegsbereich */
@media (min-width: 1180px) {
  .hero-box {
    border-left: 1px solid #f0f2f4;
    border-right: 1px solid #f0f2f4;
  }

  .hero-copy {
    padding-left: 72px;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* Typografie mit Google Fonts */
.script,
.legal-card > h1 {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

 .hero-script {
  font-weight:500;
  font-size: clamp(3.6rem, 6.2vw, 6.6rem);
  line-height: 0.9;
}

 .why-block > h2 {
  font-weight:500;
  font-size: 2.65rem;
}

.contact-title h2 {
  font-size: 2.35rem;
}

body,
button,
input,
textarea,
select {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

@media (max-width: 760px) {
   .hero-script {
  font-weight:500;
    font-size: 3.25rem;
  }

   .why-block > h2 {
  font-weight:500;
    font-size: 2.35rem;
  }

  .contact-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
   .hero-script {
  font-weight:500;
    font-size: 2.95rem;
  }
}


/* Finale Feinanpassungen */
.hero-script{
  white-space:nowrap;
}

.why-block > h2{
  white-space:nowrap;
}

@media (max-width:760px){
  .hero-script{
    white-space:normal;
  }
  .why-block > h2{
    white-space:normal;
  }
}


/* Lokale Typografie: Oooh Baby + Inter */
body,
button,
input,
textarea,
select {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.script,
.legal-card > h1 {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

/* Beide gewünschten Überschriften bleiben immer in einer Zeile. */
 .hero-script {
  font-weight:500;
  white-space: nowrap;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: .92;
}

 .why-block > h2 {
  font-weight:500;
  white-space: nowrap;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  line-height: 1.05;
}

@media (max-width: 760px) {
   .hero-script {
  font-weight:500;
    white-space: nowrap;
    font-size: clamp(2.3rem, 11vw, 3.3rem);
  }

   .why-block > h2 {
  font-weight:500;
    white-space: nowrap;
    font-size: clamp(1.55rem, 7.4vw, 2.2rem);
  }
}

@media (max-width: 380px) {
   .hero-script {
  font-weight:500;
    font-size: 2.15rem;
  }

   .why-block > h2 {
  font-weight:500;
    font-size: 1.45rem;
  }
}

.content-grid{grid-template-columns:1fr!important}.why-block{display:none}.appointment{text-align:left!important}


/* =========================================================
   Finale Gestaltung – Manrope lokal, ohne Schreibschrift
   ========================================================= */

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Manrope", Arial, Helvetica, sans-serif !important;
}

.script,
.hero-script,
.legal-card > h1 {
  font-family: "Manrope", Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  letter-spacing: normal !important;
}

/* Der entfernte Bereich bleibt sicher ausgeblendet. */
.why-block {
  display: none !important;
}

.content-grid {
  grid-template-columns: 1fr !important;
}

.services-block {
  width: 100%;
}

/* Beide Zeilen: gleiche Schrift, gleiche Größe und gleiches Gewicht. */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin: 0 0 1.35rem;
  color: #20252b;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

/* Etwas mehr Weißraum links, aber ohne den Inhalt zu verschieben. */
.hero-copy {
  padding-left: clamp(42px, 5vw, 72px) !important;
}

/* Kontaktüberschriften und Icons kompakter, damit nichts unschön umbricht. */
.contact-title {
  gap: 11px !important;
  align-items: center !important;
}

.contact-title h2 {
  margin: 0 !important;
  font-family: "Manrope", Arial, Helvetica, sans-serif !important;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap;
}

.contact-title svg {
  width: 34px !important;
  height: 34px !important;
  flex-basis: 34px !important;
}

/* Leistungen etwas ruhiger. */
.service-card svg {
  width: 46px !important;
  height: 46px !important;
}

.service-card h3 {
  font-size: 0.8rem !important;
}

.appointment {
  margin-top: 14px !important;
  text-align: left !important;
  font-family: "Manrope", Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
}

/* Tablet */
@media (max-width: 1040px) {
  .hero-title {
    font-size: clamp(1.9rem, 4vw, 2.65rem);
  }

  .contact-title h2 {
    font-size: 1.18rem !important;
  }
}

/* Smartphone */
@media (max-width: 760px) {
  .hero-copy {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-title {
    gap: 0.1em;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.15;
  }

  .hero-title span {
    white-space: normal;
  }

  .contact-title h2 {
    font-size: 1.12rem !important;
    white-space: nowrap;
  }

  .contact-title svg {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }
}

/* Sehr kleine Handys */
@media (max-width: 390px) {
  .hero-title {
    font-size: 1.48rem;
  }

  .contact-title h2 {
    font-size: 1.02rem !important;
  }
}


/* Version 13: Öffnungszeiten mobil kompakter – sonst keine Änderungen */
@media (max-width: 760px) {
  .hours div {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    align-items: baseline !important;
    padding: 4px 0 !important;
  }

  .hours dt,
  .hours dd {
    margin: 0 !important;
  }

  .hours dd {
    text-align: right !important;
    white-space: nowrap !important;
  }

  .appointment {
    margin-top: 14px !important;
    text-align: left !important;
  }
}

@media (max-width: 390px) {
  .hours div {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }

  .hours {
    font-size: 0.9rem !important;
  }
}
