:root {
  --bg: #f7f3ee;
  --bg-soft: #fffaf5;
  --text: #1f2937;
  --muted: #6b7280;

  /* Hauptfarbe / Cyan */
  --accent: #00bcd4;
  --accent-dark: #0097a7;

  --white: #ffffff;
  --border: rgba(31, 41, 55, 0.12);
  --shadow: 0 22px 60px rgba(31, 41, 55, 0.14);
  --radius: 28px;

  /* Gold NUR für Google-Sterne */
  --gold: #d4af37;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.nav-links a:not(.button):hover {
  color: var(--accent-dark);
}

.text-accent {
  color: var(--accent-dark);
  font-weight: 800;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  box-shadow: 0 12px 26px rgba(0, 188, 212, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(0, 188, 212, 0.34);
}

.button.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(0, 188, 212, 0.08);
}

/* Hero */

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.accent {
  display: block;
  color: var(--accent-dark);
}

.hero-subline {
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Hero-Buttons: am Desktop in einer Reihe */

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-actions .button {
  white-space: nowrap;
}

/* Kleine Vorteil-Buttons: am Desktop in einer Reihe */

.trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Rechte Spalte mit Google-Bewertung und Passbildrahmen */

.photo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-24px);
}

/* Google Bewertung - nur Anzeige, kein Link, kein Rahmen, neutraler Schatten */

.google-rating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: fit-content;
  max-width: calc(100% - 20px);

  margin: 0 auto 34px;
  padding: 10px 22px;

  min-height: 48px;
  border-radius: 999px;

  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;

  border: none;
  outline: none;
  box-shadow: var(--shadow);

  cursor: default;
  overflow: visible;
}

/* Nur die Sterne der Google-Bewertung sind gold und größer - ohne Outline */

.google-rating-button .google-stars {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  letter-spacing: 2px;
  font-size: 2.3rem;
  line-height: 0.7;
  transform: translateY(-1px);
  display: inline-block;
}

/* Text im Bewertungsfeld */

.google-rating-button .google-rating-text {
  color: var(--accent-dark) !important;
  -webkit-text-fill-color: var(--accent-dark) !important;
  font-size: 0.96rem;
  line-height: 1.1;
  white-space: nowrap;
}

/* Passbildrahmen rechts */

.photo-card {
  width: min(100%, 440px);
  padding: 18px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.passport-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #eadfd4;
  aspect-ratio: 4 / 5;
}

.passport-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* E-Passfoto-Badge unten links im Bildfeld */

.scan-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  top: auto;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.14);
}

/* Bildpunkte unten rechts, damit sie nicht mit dem Badge kollidieren */

.slide-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  width: calc(100% - 180px);
}

.slide-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.slide-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

.slide-dot:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Sections */

section {
  padding: 76px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2,
.highlight h2,
.cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-title p,
.highlight p,
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
  border: 1px solid var(--border);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(0, 188, 212, 0.1);
  color: var(--accent-dark);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Highlight */

.highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, rgba(0, 188, 212, 0.08));
  box-shadow: 0 18px 46px rgba(31, 41, 55, 0.1);
}

.highlight p {
  max-width: 720px;
  margin-bottom: 0;
}

.highlight-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

/* Ablauf */

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

.step {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
  border: 1px solid var(--border);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Info-Boxen */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-box {
  padding: 34px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
  border: 1px solid var(--border);
}

.info-box h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 9px;
  color: var(--muted);
}

/* Kontakt / Terminbuchung */

.cta {
  padding: 44px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.booking-open-button,
.hours-open-button {
  cursor: pointer;
}

.booking-frame {
  width: 100%;
  margin-top: 34px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(31, 41, 55, 0.12);
}

.booking-frame iframe {
  width: 100%;
  height: 850px;
  border: 0;
  display: block;
  background: #ffffff;
}

.booking-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.booking-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
}

/* Popups / Modals */

.booking-modal,
.hours-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open,
.hours-modal.is-open {
  display: flex;
}

.booking-modal-backdrop,
.hours-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 55, 0.72);
  backdrop-filter: blur(6px);
}

.booking-modal-dialog,
.hours-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: min(900px, 92vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.booking-modal-header,
.hours-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--accent);
  color: #ffffff;
}

.booking-modal-header h2,
.hours-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: normal;
  line-height: 1.2;
}

.booking-modal-close,
.hours-modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}

.booking-modal-close:hover,
.hours-modal-close:hover {
  background: rgba(255, 255, 255, 0.86);
}

.booking-modal .booking-frame {
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.booking-modal .booking-frame iframe {
  height: min(760px, calc(92vh - 78px));
}

.hours-frame {
  width: 100%;
  background: #ffffff;
}

.hours-frame iframe {
  width: 100%;
  height: min(720px, calc(92vh - 130px));
  border: 0;
  display: block;
  background: #ffffff;
}

.hours-note {
  margin: 0;
  padding: 14px 20px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.hours-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
}

/* Footer */

footer {
  padding: 34px 0;
  background: #1f2937;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .photo-column {
    transform: none;
  }

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

  .highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-actions {
    justify-content: flex-start;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 56px 0 46px;
  }

  section {
    padding: 54px 0;
  }

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

  .hero-actions,
  .cta-actions,
  .highlight-actions {
    flex-direction: column;
    align-items: stretch;
  }


  .button {
    width: 100%;
  }

  .google-rating-button {
    width: 100%;
    max-width: 360px;
    gap: 8px;
    padding: 10px 14px;
    min-height: 48px;
    border: none;
    outline: none;
    box-shadow: var(--shadow);
  }

  .google-rating-button .google-stars {
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 0.7;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
  }

  .google-rating-button .google-rating-text {
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .photo-card {
    width: 100%;
    padding: 14px;
  }

  .highlight,
  .cta,
  .info-box,
  .card,
  .step {
    padding: 24px;
  }

  .booking-modal,
  .hours-modal {
    padding: 12px;
  }

  .booking-modal-dialog,
  .hours-modal-dialog {
    max-height: 94vh;
    border-radius: 20px;
  }

  .booking-modal-header,
  .hours-modal-header {
    padding: 14px 16px;
  }

  .booking-modal-header h2,
  .hours-modal-header h2 {
    font-size: 1.05rem;
  }

  .booking-modal-close,
  .hours-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .booking-modal .booking-frame iframe {
    height: calc(94vh - 68px);
  }

  .hours-frame iframe {
    height: calc(94vh - 120px);
  }

  .footer-grid {
    flex-direction: column;
  }
}

/* Impressum */

.impressum-section {
  padding: 86px 0;
}

.impressum-container {
  max-width: 900px;
  padding: 44px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.impressum-container h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.impressum-container h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  color: var(--accent-dark);
}

.impressum-container p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.impressum-container strong {
  color: var(--text);
}

.impressum-container a:not(.button) {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
}

.impressum-back {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

@media (max-width: 640px) {
  .impressum-section {
    padding: 54px 0;
  }

  .impressum-container {
    padding: 24px;
  }

  .impressum-back {
    justify-content: stretch;
  }

  .impressum-back .button {
    width: 100%;
  }
}

/* Studio-Adresse im Kontaktbereich */

.studio-address {
  margin-top: 22px;
  color: var(--text) !important;
  font-size: 1.05rem;
}

.studio-address strong {
  color: var(--accent-dark);
}

/* Impressum */

.impressum-section {
  padding: 76px 0;
}

.impressum-container {
  max-width: 900px;
  padding: 44px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.impressum-container h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.impressum-container h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--accent-dark);
}

.impressum-container p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.impressum-container strong {
  color: var(--text);
}

.impressum-container a:not(.button) {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
}

.impressum-back {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

footer a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .impressum-section {
    padding: 54px 0;
  }

  .impressum-container {
    padding: 24px;
  }

  .impressum-back {
    justify-content: stretch;
  }

  .impressum-back .button {
    width: 100%;
  }
}