/* ============================================================
   Olgas mobiler Friseurservice – Stylesheet
   Reines CSS, kein Framework. Mobile-first, barrierearm.
   ============================================================ */

:root {
  /* Farbwelt: Marken-Magenta/Violett (aus dem Olgas-Logo) auf warmem Weiß */
  --cream:      #fdf8fb;   /* Seitenhintergrund (zart rosé-weiß) */
  --cream-2:    #f9edf4;   /* zarte Fläche */
  --card:       #ffffff;
  --rose:       #c74b8e;   /* helles Magenta-Pink – kleine Akzente, Eyebrow */
  --rose-soft:  #fbe9f2;   /* helle Magenta-Fläche */
  --plum:       #8f1e63;   /* Marken-Magenta – Buttons, Überschriften */
  --plum-dark:  #74184f;   /* tiefes Magenta – Hover */
  --sage:       #a52a74;   /* Zweit-Akzent im Magenta-Ton (Icons, Haken) */
  --sage-soft:  #f6e2ee;
  --ink:        #332a30;   /* Fließtext (warmes Dunkel) */
  --muted:      #6f6169;   /* Sekundärtext */
  --line:       #eedce7;   /* Trennlinien */
  --whatsapp:   #128c7e;   /* WhatsApp (kontraststark) */
  --whatsapp-d: #0f7568;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 8px 24px rgba(90, 50, 71, 0.10);
  --shadow-lg:  0 16px 40px rgba(90, 50, 71, 0.16);
  --maxw:       1080px;
  --serif:      Georgia, "Times New Roman", serif;
  --sans:       system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Grundlagen ---------- */
* { box-sizing: border-box; }

html {
  font-size: 112.5%;            /* ~18px Basis, gut lesbar */
  scroll-behavior: smooth;
  scroll-padding-top: 84px;     /* Platz für sticky Header */
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--plum); text-underline-offset: 2px; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--plum);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 .6em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

.section-intro {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-intro p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--rose);
  margin-bottom: .6rem;
}

/* Sichtbarer Fokus (Barrierefreiheit) */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  padding: .95rem 1.5rem;
  min-height: 54px;                /* große Klickfläche */
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 22px; height: 22px; flex: none; }

.btn-call {
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-call:hover { background: var(--plum-dark); }

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-wa:hover { background: var(--whatsapp-d); }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 72px;
  position: relative;
}
.header-wa {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  text-decoration: none;
  padding: .95rem 1.5rem;
  min-height: 54px;
  box-sizing: border-box;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.header-wa:hover { background: var(--whatsapp-d); }
.header-wa svg { width: 22px; height: 22px; flex: none; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--plum);
}
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; letter-spacing: .01em; }
.brand-sub  { font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); }
.brand img.logo { height: 54px; width: auto; display: block; }

/* Script-Slogan im Stil des Logos */
.script-tagline {
  font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", "Snell Roundhand", cursive;
  color: var(--rose);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: .1rem 0 1rem;
}

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
  padding: .4rem 0;
}
.nav-links a:hover { color: var(--plum); }
.header-cta { display: inline-flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 12px;
  width: 52px; height: 46px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px; height: 2.5px;
  background: var(--plum);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top:  7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 90% -10%, var(--rose-soft) 0%, transparent 55%),
    radial-gradient(90% 80% at -10% 10%, var(--sage-soft) 0%, transparent 50%),
    var(--cream);
  padding-top: clamp(2rem, 5vw, 3.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.hero-logo { display: block; width: min(260px, 68%); height: auto; margin-bottom: 1.2rem; mix-blend-mode: multiply; }
.hero-heading { display: flex; align-items: center; gap: 1.75rem; margin: .3rem 0 1.4rem; }
.hero-heading .hero-logo { width: min(290px, 44%); flex: none; margin-bottom: 0; }
.hero-heading h1 { margin: 0; flex: 1; font-size: clamp(2rem, 4.2vw, 3rem); }
@media (max-width: 600px) {
  .hero-heading { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .hero-heading .hero-logo { width: min(220px, 62%); }
}
.hero-text h1 span { color: var(--rose); }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.6rem 0 1rem; }
.hero-note { font-size: .95rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.hero-note strong { color: var(--plum); }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(160deg, var(--rose-soft), var(--sage-soft));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.photo-placeholder {
  color: var(--plum);
  padding: 2rem;
  font-weight: 600;
}
.photo-placeholder .ph-icon { width: 64px; height: 64px; margin: 0 auto .75rem; opacity: .7; }
.photo-placeholder small { display: block; font-weight: 400; color: var(--muted); margin-top: .35rem; font-size: .85rem; }

/* ---------- Steps (So funktioniert's) ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--plum);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: .9rem;
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Für wen (Zielgruppen) ---------- */
.audience { background: var(--cream-2); }
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.card .ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .2rem; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Preise ---------- */
.price-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
}
.price-card h3 {
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 2px solid var(--rose-soft);
  padding-bottom: .6rem; margin-bottom: 1rem;
}
.price-sub {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 1rem 0 .5rem;
}
.price-sub:first-of-type { margin-top: 0; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list .name { color: var(--ink); }
.price-list .price { font-weight: 700; color: var(--plum); white-space: nowrap; }
.price-note {
  margin-top: 1.4rem;
  font-size: .92rem;
  color: var(--muted);
  background: var(--cream);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  padding: .9rem 1rem;
}
.price-note p { margin: 0 0 .4rem; }
.price-note p:last-child { margin: 0; }

/* ---------- Über Olga ---------- */
.about { background: var(--cream-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  margin: 0 auto;
  background: var(--rose-soft);
}
.about-photo img { width: 100%; }
.values { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; }
.values li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.values svg { width: 22px; height: 22px; color: var(--sage); flex: none; }

/* ---------- Einzugsgebiet ---------- */
.area-box {
  background: linear-gradient(160deg, var(--sage-soft), var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.area-places { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 1.2rem 0 .5rem; }
.area-places span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--plum);
}
.area-note { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Kundenstimmen ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.quote::before {
  content: "\201E";
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--rose-soft);
  position: absolute;
  top: .3rem; left: 1rem;
}
.quote p { position: relative; margin: 0 0 1rem; font-size: 1.05rem; }
.quote .stars { color: #e0a53f; letter-spacing: .1em; margin-bottom: .5rem; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 700; }
.placeholder-tag {
  display: inline-block;
  margin-top: .6rem;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 6px;
  padding: .15rem .5rem;
}

/* ---------- Kontakt ---------- */
.contact { background: var(--plum); color: #fff; }
.contact h2 { color: #fff; }
.contact .section-intro p { color: rgba(255,255,255,.85); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-bottom: 2rem; }
.contact-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem;
  display: flex; gap: 1rem; align-items: center;
}
.contact-item .ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ico svg { width: 26px; height: 26px; color: #fff; }
.contact-item .label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); }
.contact-item a, .contact-item span.val { color: #fff; font-weight: 700; font-size: 1.15rem; text-decoration: none; word-break: break-word; }
.contact-item a:hover { text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.contact-actions .btn-call { background: #fff; color: var(--plum); }
.contact-actions .btn-call:hover { background: var(--cream); }

/* ---------- Footer ---------- */
.site-footer {
  background: #2c2429;
  color: #cdbfc7;
  padding: 2.5rem 0 1.5rem;
  font-size: .95rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.site-footer strong { color: #fff; display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: .4rem; }
.site-footer a { color: #e6b9cb; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; color: #9c8e96; }

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal { padding-top: 2.5rem; }
.legal h1 { margin-bottom: 1rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.4rem; }
.legal p, .legal li { color: var(--ink); }
.legal .container { max-width: 800px; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }
.legal address { font-style: normal; line-height: 1.9; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .header-inner { justify-content: flex-end; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .header-cta { margin-top: .9rem; position: static; transform: none; }
  .header-cta .btn { width: 100%; }
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .price-groups { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-media { min-height: 420px; margin-top: 0; }
  .about-grid { grid-template-columns: .8fr 1.2fr; }
}

/* Bewegung reduzieren, wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
