/* Mattias Nigro — starker Barber-Shop-Look: Pole, Poster-Typo, helle/dunkle Bänder */
:root {
  --void: #0a0908;
  --wine: #1f1214;
  --burgundy: #3d1820;
  --parchment: #e3d9c6;
  --parchment-deep: #d4c8b2;
  --cream: #f5f0e6;
  --gold: #c9a84c;
  --gold-dim: #a68b3a;
  --ruby: #9b1c2e;
  --ruby-hover: #7a1625;
  --navy-pole: #1c2d4a;
  --paper: #faf6ee;
  --ink: #14110f;
  --text: #2c241c;
  --text-muted: #5c5145;
  --white: #fff;
  --pole-w: clamp(14px, 3.5vw, 28px);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --pole: repeating-linear-gradient(
    -18deg,
    #b32424 0 11px,
    #f5f0e6 11px 22px,
    var(--navy-pole) 22px 33px
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 5.5rem;
    scroll-padding-bottom: 5rem;
  }
}

body.site {
  margin: 0;
  padding-left: var(--pole-w);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  body.site {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.site--simple-header {
    padding-bottom: 0;
  }
}

/* Barber-Pole: links Desktop, oben Mobil */
.pole-rail {
  position: fixed;
  z-index: 400;
  pointer-events: none;
  background: var(--pole);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .pole-rail {
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--pole-w);
  }
}

@media (max-width: 767px) {
  .pole-rail {
    left: 0;
    right: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: repeating-linear-gradient(
      -18deg,
      #b32424 0 14px,
      #f5f0e6 14px 28px,
      var(--navy-pole) 28px 42px
    );
  }
}

a {
  color: var(--ruby);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: var(--ink);
}

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

.container {
  width: min(94%, 56rem);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero .container {
  width: min(94%, 72rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  color: var(--cream);
  border-bottom: 3px solid var(--gold);
}

.site-header::after {
  display: none;
}

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0 0.95rem;
}

.header-cta {
  flex-shrink: 0;
}

/* Desktop: kompakte Zeile Logo · Links · Anrufen */
.nav-main {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  min-width: 0;
}

.nav-main__mob {
  display: none;
}

.nav-main__desk {
  display: inline;
}

.nav-main__faq-desktop {
  display: inline;
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: center;
    padding: 0.65rem 0 0.75rem;
  }

  .header-inner .logo {
    text-align: center;
  }

  .site--simple-header .header-inner {
    justify-content: space-between;
  }

  .site--simple-header .header-inner .logo {
    text-align: left;
  }

  .nav-main__mob {
    display: block;
  }

  .nav-main__desk {
    display: none;
  }

  .nav-main__faq-desktop {
    display: none;
  }

  /* Fixierte Leiste unten */
  .nav-main {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 0;
    padding: 0.4rem max(0.25rem, env(safe-area-inset-left)) calc(0.45rem + env(safe-area-inset-bottom, 0px))
      max(0.25rem, env(safe-area-inset-right));
    background: var(--void);
    border-top: 3px solid var(--gold);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    z-index: 350;
  }

  .nav-main a {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.85rem;
    padding: 0.2rem 0.15rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.88);
    -webkit-tap-highlight-color: transparent;
  }

  .nav-main a:active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-main a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
    z-index: 1;
  }

  .nav-main__call {
    flex: 1.15 1 0;
    color: var(--void);
    background: var(--gold);
    margin: -0.15rem 0.1rem 0;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    min-height: 3rem;
    font-weight: 400;
  }

  .nav-main__call:active {
    background: var(--gold-dim);
    color: var(--void);
  }
}

@media (min-width: 768px) {
  .nav-main__call {
    display: none;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0.95;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}

@media (min-width: 768px) {
  .nav-main a {
    color: rgba(245, 240, 230, 0.88);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-main a:hover {
    color: var(--gold);
  }

  .nav-main a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.99);
}

.btn-primary {
  background: var(--gold);
  color: var(--void);
}

.btn-primary:hover {
  background: var(--gold-dim);
  color: var(--void);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.hero .btn-primary {
  background: var(--ruby);
  color: var(--cream);
}

.hero .btn-primary:hover {
  background: var(--ruby-hover);
  color: var(--cream);
}

.hero .btn-outline {
  color: var(--cream);
  border-color: var(--gold);
}

.hero .btn-outline:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--cream);
}

section:not(.hero):not(.bg-panel) .btn-primary,
.contact-card .btn-primary {
  background: var(--ruby);
  color: var(--cream);
}

section:not(.hero):not(.bg-panel) .btn-primary:hover,
.contact-card .btn-primary:hover {
  background: var(--ruby-hover);
  color: var(--cream);
}

section:not(.hero):not(.bg-panel) .btn-outline,
.contact-card .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
}

section:not(.hero):not(.bg-panel) .btn-outline:hover,
.contact-card .btn-outline:hover {
  background: rgba(20, 17, 15, 0.06);
  color: var(--ink);
}

.bg-panel .btn-primary {
  background: var(--gold);
  color: var(--void);
}

.bg-panel .btn-primary:hover {
  background: var(--gold-dim);
  color: var(--void);
}

.bg-panel .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
}

.bg-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

.cut-divider {
  height: 14px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
  background: var(--pole);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.section-with-cut {
  padding-top: 0;
}

.cut-line {
  border: 0;
  margin: 0;
  padding: 0;
  height: 4px;
  border: none;
  background: linear-gradient(90deg, var(--gold), var(--ruby), var(--navy-pole));
  opacity: 1;
}

.cut-line--short {
  width: 8rem;
  max-width: 55%;
  margin: 0 0 1.25rem;
}

/* Hero — hohe Poster-Fläche */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(201, 168, 76, 0.12), transparent 55%),
    linear-gradient(165deg, var(--void) 0%, var(--wine) 45%, var(--burgundy) 100%);
  color: var(--cream);
  border-bottom: none;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.85fr;
    gap: 3.5rem;
    align-items: end;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 1.25rem;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-title__line {
  display: block;
  font-size: clamp(3.75rem, 14vw, 10.5rem);
  letter-spacing: 0.02em;
  color: var(--cream);
}

.hero-title__line--gold {
  color: var(--gold);
  text-shadow: 0 0 42px rgba(201, 168, 76, 0.35);
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(245, 240, 230, 0.82);
  max-width: 34ch;
  margin: 0 0 2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
}

.rating-pill strong {
  color: var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.06em;
}

.hero-panel {
  background: rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(201, 168, 76, 0.5);
  padding: 1.75rem 1.5rem 1.5rem;
}

.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--ruby);
  text-transform: uppercase;
}

/* Öffnungszeiten: Standard = heller Untergrund */
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.15);
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .closed {
  color: var(--text-muted);
  font-style: italic;
}

.hero-panel .hours-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  color: rgba(245, 240, 230, 0.92);
  font-size: 1.1rem;
}

.hero-panel .hours-list .closed {
  color: rgba(245, 240, 230, 0.45);
}

.hours-list--narrow {
  max-width: 30rem;
}

section {
  padding: clamp(3rem, 9vw, 5rem) 0;
}

#ueber-uns,
#oeffnungszeiten,
#kontakt,
.faq-section {
  background: var(--parchment);
}

.section-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ruby);
  margin: 0 0 0.65rem;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.15rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-card h2.section-label {
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: var(--ruby);
}

.bg-panel h2,
.bg-panel .section-label,
.bg-panel .section-intro {
  color: var(--cream);
}

.bg-panel .section-label {
  color: var(--gold);
}

.section-intro {
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 2.25rem;
  font-size: 1.15rem;
  line-height: 1.75;
}

.bg-panel {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(201, 168, 76, 0.08), transparent 50%),
    linear-gradient(180deg, var(--wine) 0%, var(--void) 100%);
  border: none;
  color: rgba(245, 240, 230, 0.9);
}

.bg-panel a {
  color: var(--gold);
}

.bg-panel a:hover {
  color: var(--cream);
}

/* Leistungen: Tafel-Zeilen statt Kacheln */
.services-grid {
  display: block;
  border-top: 2px solid rgba(201, 168, 76, 0.45);
}

.service-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: 0;
  padding: 1.5rem 0 1.35rem;
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 700px) {
  .service-card {
    grid-template-columns: 12rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.35rem 0;
  }
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(245, 240, 230, 0.75);
  line-height: 1.7;
}

.two-col {
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--paper);
  border: 2px solid var(--parchment-deep);
  border-radius: 0;
  padding: 1.75rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(20, 17, 15, 0.06);
}

.contact-card--mt {
  margin-top: 1.25rem;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.35rem;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.45rem 0 0;
  font-size: 1.15rem;
  color: var(--text);
}

.contact-card a[href^="tel"] {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}

.contact-card a[href^="tel"]:hover {
  color: var(--ruby);
}

.contact-card__title {
  margin-bottom: 0.85rem;
}

.contact-card__lead {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.contact-card__maps {
  margin-top: 1.5rem;
}

.map-embed {
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--parchment-deep);
  min-height: 320px;
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(20, 17, 15, 0.06);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.review-block {
  max-width: 100%;
  padding: 2.25rem 2rem;
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-left-width: 6px;
  border-left-color: var(--ruby);
  border-radius: 0;
}

.review-block .stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-block p {
  margin: 0;
  font-style: italic;
  color: rgba(245, 240, 230, 0.82);
  font-size: 1.2rem;
  line-height: 1.75;
}

.review-meta {
  margin-top: 1.15rem;
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.55);
}

.review-meta strong {
  color: var(--gold);
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 2.5rem 0;
  border-top: none;
  background: var(--void);
  color: rgba(245, 240, 230, 0.75);
}

.site-footer::before {
  content: "";
  display: block;
  height: 12px;
  width: 100%;
  background: var(--pole);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: center;
}

@media (min-width: 700px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.88);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.55);
  margin: 0;
  line-height: 1.65;
  max-width: 28rem;
}

/* Rechtstexte */
.legal-page {
  padding: 2.75rem 0 4.5rem;
  min-height: 60vh;
  background: var(--parchment);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
}

.legal-updated {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.25rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  max-width: 65ch;
  font-size: 1.05rem;
}

.legal-page ul {
  padding-left: 1.35rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.back-link:hover {
  color: var(--ruby);
}

.faq-section .faq-list {
  margin: 0;
  max-width: 48ch;
}

.faq-section .faq-list dt {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-top: 1.75rem;
  text-transform: uppercase;
}

.faq-section .faq-list dt:first-child {
  margin-top: 0;
}

.faq-section .faq-list dd {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Subpages: schmaler Header-Balken */
.site--simple-header .site-header {
  border-bottom-width: 2px;
}
