/* ============================================================
   CLASSICO BARBERSHOP — Augsburg — Design-Entwurf
   Palette: warmes Anthrazit, Creme, Messing, gedecktes Barbershop-Rot.
   Bewusst bildfrei (keine verifizierten echten Fotos verfügbar) —
   typografisch/grafisch gelöst mit Barber-Pole-Streifen als Signatur.
   ============================================================ */
:root {
  --ink:         #16130F;
  --ink-2:       #241F1A;
  --ink-3:       #6B6058;
  --paper:       #F7F3EC;
  --paper-2:     #EDE6D8;
  --line:        #DED2BC;
  --brass:       #B08A4E;
  --brass-dk:    #8C6C38;
  --red:         #9B2C2C;
  --red-dk:      #7A2020;
  --white:       #FFFFFF;

  --display: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --cond: 'Oswald', 'Arial Narrow', var(--sans);
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t-xs: .75rem; --t-sm: .875rem; --t-base: 1rem; --t-lg: 1.125rem;
  --t-xl: 1.375rem; --t-2xl: 1.75rem; --t-3xl: 2.5rem; --t-4xl: clamp(2.4rem, 7vw, 4.8rem);

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s6: 24px;
  --s8: 32px; --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(22,19,15,.08), 0 2px 8px rgba(22,19,15,.06);
  --sh-md: 0 6px 20px rgba(22,19,15,.14);
  --sh-lg: 0 24px 60px rgba(22,19,15,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --bar-h: 74px;
}

:root { color-scheme: light; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 8px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: var(--t-base); line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--cond); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.005em; text-transform: uppercase; }
p { margin: 0 0 1em; }

.eyebrow { font-family: var(--cond); font-size: var(--t-sm); font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin: 0 0 var(--s4); display: block; }
.eyebrow.center { text-align: center; }

/* ============================================================ Barber-Pole-Streifen (Deko, kein Foto) */
.pole {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 18px, var(--white) 18px 36px, var(--brass) 36px 54px);
  background-size: 76px 76px;
}

/* ============================================================ Buttons */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 15px 30px; border: 1px solid var(--bg); border-radius: var(--r-full);
  background: var(--bg); color: var(--fg);
  font-family: var(--cond); font-size: var(--t-sm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); background: var(--red-dk); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--brass { --bg: var(--brass); --fg: var(--ink); border-color: var(--brass); }
.btn--brass:hover { background: var(--brass-dk); border-color: var(--brass-dk); }

/* ============================================================ Header */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: calc(var(--bar-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.hdr__in { display: flex; align-items: center; gap: var(--s8); width: min(1200px, 92vw); margin-inline: auto; }
.hdr.is-stuck { background: rgba(247,243,236,.95); backdrop-filter: blur(14px) saturate(1.2); box-shadow: var(--sh-sm); }

.logo { display: flex; flex-direction: column; text-decoration: none; margin-right: auto; color: #fff; line-height: 1.1; }
.logo b { font-family: var(--cond); font-size: 1.5rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.logo i { font-style: normal; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin-top: 2px; }
.hdr.is-stuck .logo { color: var(--ink); }

.nav { display: flex; gap: var(--s8); align-items: center; }
.nav a { font-family: var(--cond); font-size: var(--t-sm); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; position: relative; padding: 6px 0; color: inherit; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .3s var(--ease); }
.nav a:hover::after { right: 0; }
.hdr:not(.is-stuck) .nav { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hdr.is-stuck .nav { color: var(--ink); }

.burger { display: none; width: 44px; height: 44px; margin-left: var(--s2); border: 0; background: transparent; color: inherit; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 22px; height: 1.5px; background: currentColor; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================ Hero (grafisch, kein Foto) */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; background: var(--ink); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 18%, rgba(176,138,78,.22), transparent 60%),
    radial-gradient(50% 40% at 8% 88%, rgba(155,44,44,.24), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; right: -6vw; top: -8vh; width: 46vw; height: 130vh;
  background: repeating-linear-gradient(20deg, var(--red) 0 26px, transparent 26px 52px, var(--brass) 52px 78px, transparent 78px 104px);
  opacity: .14; transform: rotate(6deg);
}
.hero__in { padding: calc(var(--bar-h) + var(--s16)) 0 var(--s20); color: #fff; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); border-radius: 999px; padding: 7px 16px 7px 12px; font-size: .875rem; font-weight: 500; margin-bottom: var(--s6); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6FCF7A; flex: none; }
.hero__badge.is-closed .dot { background: var(--brass); }
.hero__rating { display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.24); }
.hero__rating b { color: var(--brass); font-family: var(--cond); }
.hero h1 { font-size: var(--t-4xl); font-weight: 700; letter-spacing: -.01em; line-height: 1; margin: 0 0 var(--s6); text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero__lead { font-family: var(--display); font-style: italic; font-size: clamp(1.1rem, 1.9vw, 1.35rem); max-width: 48ch; color: rgba(255,255,255,.88); margin-bottom: var(--s8); text-shadow: 0 1px 16px rgba(0,0,0,.4); font-weight: 400; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ============================================================ Trust */
.trust { background: var(--ink); color: var(--paper); padding: var(--s6) 0; border-top: 1px solid rgba(247,243,236,.08); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); text-align: center; }
.trust__item b { display: block; font-family: var(--cond); font-size: var(--t-lg); font-weight: 600; text-transform: uppercase; color: var(--brass); margin-bottom: 2px; }
.trust__item span { font-size: var(--t-xs); letter-spacing: .04em; color: rgba(247,243,236,.72); }

/* ============================================================ Abschnitte */
.sec { padding: var(--s24) 0; position: relative; }
.sec--paper { background: var(--paper-2); }
.sec--dark { background: var(--ink); color: var(--paper); }
.sec__head { max-width: 62ch; margin-bottom: var(--s12); }
.sec__head.center { margin-inline: auto; text-align: center; }
.sec h2 { font-size: var(--t-3xl); margin-bottom: var(--s3); }
.sec__sub { color: var(--ink-3); font-size: var(--t-lg); margin: 0; font-weight: 400; font-family: var(--display); font-style: italic; }
.sec--dark .sec__sub { color: rgba(247,243,236,.7); }

/* ============================================================ Über uns (grafisch statt Foto) */
.story { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--s16); align-items: center; }
.story__mark {
  aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  background: var(--ink); position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.story__mark::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, var(--red) 0 20px, var(--ink) 20px 40px, var(--brass) 40px 60px, var(--ink) 60px 80px);
  opacity: .9;
}
.story__mark span {
  position: relative; z-index: 1; font-family: var(--cond); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
  color: var(--paper); letter-spacing: .02em; text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.story__quote { font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-style: italic; line-height: 1.35; color: var(--ink); margin: 0 0 var(--s6); }
.story p { color: var(--ink-2); font-weight: 400; }
.story__names { font-family: var(--cond); text-transform: uppercase; letter-spacing: .08em; color: var(--red); font-weight: 600; }

/* ============================================================ Leistungen */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3) var(--s12); }
.service { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s4); padding: var(--s4) 0; border-bottom: 1px dashed var(--line); }
.service__name { font-family: var(--display); font-size: var(--t-lg); }
.service__note { display: block; font-size: var(--t-sm); color: var(--ink-3); margin-top: 2px; }
.service__price { font-family: var(--cond); font-weight: 600; color: var(--red-dk); white-space: nowrap; }
.services-note { text-align: center; margin-top: var(--s8); color: var(--ink-3); font-size: var(--t-sm); }

/* ============================================================ Bewertungen */
.rev-band { background: var(--ink); color: var(--paper); padding: var(--s20) 0; text-align: center; }
.rev-band .stars { color: var(--brass); font-size: 1.6rem; letter-spacing: .1em; margin-bottom: var(--s4); }
.rev-band blockquote { font-family: var(--display); font-style: italic; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.35; max-width: 30ch; margin: 0 auto var(--s6); }
.rev-band cite { font-family: var(--cond); font-size: var(--t-sm); font-style: normal; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }

/* ============================================================ Standort */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); }
.hours { list-style: none; padding: 0; margin: 0 0 var(--s8); }
.hours li { display: flex; justify-content: space-between; gap: var(--s4); padding: 11px 0; border-bottom: 1px solid var(--line); font-size: var(--t-base); }
.hours li.is-today { font-weight: 700; color: var(--ink); }
.hours span:first-child { color: var(--ink-3); font-family: var(--cond); text-transform: uppercase; letter-spacing: .04em; font-size: var(--t-sm); }
.hours li.is-today span:first-child { color: var(--red); }
.hours b { font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }

.cinfo { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s4); }
.cinfo li { display: flex; gap: var(--s3); align-items: flex-start; }
.cinfo svg { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: 3px; }
.cinfo a { text-decoration: none; border-bottom: 1px solid var(--line); }
.cinfo a:hover { border-color: var(--red); }
.cinfo small { display: block; color: var(--ink-3); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; }

.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative; aspect-ratio: 4/3; background: var(--ink); display: grid; place-items: center; }
.map-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(176,138,78,.12) 0 14px, transparent 14px 28px);
}
.map-card__cta { position: relative; text-align: center; color: #fff; padding: var(--s8); }
.map-card__cta b { font-family: var(--cond); font-size: var(--t-xl); text-transform: uppercase; display: block; margin-bottom: var(--s2); }

/* ============================================================ Pitch-Banner */
.pitch { position: fixed; inset: auto 0 0 0; z-index: 95; background: var(--ink); color: var(--paper); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: var(--s3); font-size: var(--t-xs); text-align: center; box-shadow: 0 -6px 24px rgba(22,19,15,.22); border-top: 1px solid rgba(247,243,236,.14); }
.pitch b { color: var(--brass); }

/* ============================================================ Footer */
.ft { background: var(--ink); color: rgba(247,243,236,.6); padding: var(--s16) 0 calc(var(--s8) + 56px); font-size: var(--t-sm); }
.ft__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s12); margin-bottom: var(--s12); }
.ft h4 { color: var(--paper); font-family: var(--cond); font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 var(--s4); }
.ft ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s2); }
.ft a { text-decoration: none; }
.ft a:hover { color: var(--brass); }
.ft__logo { font-family: var(--cond); font-size: 1.7rem; text-transform: uppercase; color: var(--paper); font-weight: 700; margin-bottom: var(--s2); }
.ft__social { display: flex; gap: var(--s3); margin-top: var(--s6); }
.ft__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,243,236,.2); display: grid; place-items: center; transition: all .25s var(--ease); }
.ft__social a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.ft__social svg { width: 17px; height: 17px; }
.ft__btm { border-top: 1px solid rgba(247,243,236,.12); padding-top: var(--s6); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--t-xs); }

/* ============================================================ Einblenden */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }

/* ============================================================ Rechtstexte */
.legal-hdr { padding: var(--s6) 0; border-bottom: 1px solid var(--line); background: var(--ink); }
.legal-hdr .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal-back { font-family: var(--cond); font-size: var(--t-sm); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: rgba(247,243,236,.7); text-decoration: none; }
.legal-back:hover { color: #fff; }
.legal { padding: var(--s16) 0 var(--s24); }
.legal h1 { font-size: var(--t-3xl); margin-bottom: var(--s8); }
.legal h2 { font-size: var(--t-xl); margin: var(--s12) 0 var(--s3); color: var(--ink-2); text-transform: none; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal a { color: var(--red-dk); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal__note { font-size: var(--t-sm); font-style: italic; color: var(--ink-3); background: var(--paper-2); border-radius: var(--r-md); padding: var(--s4); margin-top: var(--s12); }

/* ============================================================ Responsiv */
@media (max-width: 980px) {
  :root { --s24: 68px; --s20: 56px; --s16: 44px; }
  .story { grid-template-columns: 1fr; gap: var(--s12); }
  .story__mark { aspect-ratio: 16/9; max-width: 420px; margin-inline: auto; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6) var(--s4); }
  .contact { grid-template-columns: 1fr; gap: var(--s12); }
  .ft__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .services { grid-template-columns: 1fr; }
  .burger { display: flex; }
  #nav {
    position: fixed; inset: calc(var(--bar-h) + env(safe-area-inset-top)) 0 auto 0; z-index: 89;
    flex-direction: column; gap: 0; margin: 0;
    padding: var(--s2) var(--s6) calc(var(--s6) + env(safe-area-inset-bottom));
    background: rgba(247,243,236,.98); backdrop-filter: blur(16px);
    box-shadow: var(--sh-lg); border-top: 1px solid var(--line);
    color: var(--ink);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s linear .25s;
  }
  #nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s; }
  #nav a { font-size: var(--t-lg); padding: 15px 2px; border-bottom: 1px solid var(--line); }
  #nav a::after { display: none; }
}
@media (max-width: 640px) {
  :root { --t-3xl: 1.9rem; --bar-h: 64px; }
  body { padding-bottom: 54px; }
  .logo i { display: none; }
  .logo b { font-size: 1.15rem; }
  .hdr__in > .btn { padding: 12px 16px; font-size: 11px; }
  .hero { min-height: 92svh; }
  .hero__cta .btn { flex: 1; }
  .hero__rating { margin-left: 0; padding-left: 0; border-left: 0; }
  .ft__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .cinfo a, .ft ul a { display: inline-block; padding: 8px 0; }
  .pitch { font-size: 11px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}
