/* ===================================================================
   Aris Glow Cut — Barbershop
   Palette: charcoal black + warm amber/gold + bone white
=================================================================== */
:root {
  --black: #0c0b0a;
  --ink: #141210;
  --panel: #1b1815;
  --panel-2: #221e1a;
  --line: rgba(212, 175, 110, 0.16);
  --gold: #d9a441;
  --gold-soft: #e7c478;
  --bone: #f4efe6;
  --muted: #a39a8c;
  --radius: 16px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { background: var(--black); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: transparent;
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fixed full-page background — all content scrolls over this image */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2;
  background: url('img/bg-room.jpg') center center / cover no-repeat;
  animation: bgDrift 45s ease-in-out infinite alternate; /* slow cinematic drift */
  will-change: transform;
}
@keyframes bgDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.07) translateY(-1.2%); }
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,11,10,.72) 0%, rgba(12,11,10,.85) 55%, rgba(12,11,10,.92) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.text-gold { color: var(--gold); }

/* glowing variant for hero accent — gradient shimmer + warm halo */
.hero__title .text-gold {
  background: linear-gradient(110deg,
    var(--gold) 0%, var(--gold) 38%,
    #ffe9b8 46%, #fff7e2 50%, #ffe9b8 54%,
    var(--gold) 62%, var(--gold) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 18px rgba(217,164,65,.35));
  animation: logoShimmer 4.5s linear infinite;
  animation-delay: 1.2s;
}

/* gold scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 110;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 0 10px rgba(217,164,65,.55);
  pointer-events: none;
}

::selection { background: rgba(217,164,65,.9); color: #1a1408; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2c261f; border-radius: 6px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- Buttons ---- */
.btn {
  --pad-y: 0.7rem; --pad-x: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn--lg { --pad-y: 1rem; --pad-x: 2rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #c08a2a);
  color: #1a1408; box-shadow: 0 10px 30px -12px rgba(217,164,65,.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(217,164,65,.85); animation-play-state: paused; }
/* breathing glow on the primary conversion buttons */
.hero__actions .btn--gold, .sticky-cta { animation: ctaGlow 3.4s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 10px 30px -12px rgba(217,164,65,.7); }
  50%      { box-shadow: 0 12px 42px -10px rgba(217,164,65,.95), 0 0 22px -4px rgba(217,164,65,.5); }
}
.btn--ghost {
  background: transparent; color: var(--bone); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12,11,10,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); padding-top: .8rem; padding-bottom: .8rem;
}
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #1a1408;
  background: linear-gradient(135deg, var(--gold), #c08a2a); border-radius: 10px;
  box-shadow: 0 6px 18px -8px rgba(217,164,65,.8);
}
.nav__logo-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .06em;
  /* "Glow" shimmer: a gold light band sweeps across the wordmark */
  background: linear-gradient(110deg,
    var(--bone) 0%, var(--bone) 38%,
    #fff3d6 46%, var(--gold) 50%, #fff3d6 54%,
    var(--bone) 62%, var(--bone) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: logoShimmer 4.5s linear infinite;
}
@keyframes logoShimmer {
  0%   { background-position: 130% 0; }
  55%  { background-position: -30% 0; }
  100% { background-position: -130% 0; }
}
/* soft breathing glow on the gold logo tile */
.nav__logo-mark, .footer__brand .nav__logo-mark { animation: markGlow 3.6s ease-in-out infinite; }
@keyframes markGlow {
  0%, 100% { box-shadow: 0 6px 18px -8px rgba(217,164,65,.8); }
  50%      { box-shadow: 0 6px 26px -6px rgba(217,164,65,1), 0 0 18px -2px rgba(217,164,65,.55); }
}
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a { font-size: .92rem; color: var(--muted); position: relative; transition: color .25s; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__burger span { width: 26px; height: 2px; background: var(--bone); transition: .3s var(--ease); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { display: none; } /* hero shows the fixed page background */
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,11,10,.78) 0%, rgba(12,11,10,.4) 50%, rgba(12,11,10,.08) 100%),
    linear-gradient(to top, rgba(12,11,10,.85) 2%, transparent 42%);
}
.hero__content { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 6rem clamp(1rem, 4vw, 2.5rem) 4rem; }
.hero__eyebrow { font-size: .85rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 9vw, 6.5rem); line-height: .92; letter-spacing: .01em; }
.hero__sub { max-width: 30rem; margin: 1.5rem 0 2.2rem; color: #d9d2c6; font-size: clamp(1rem, 2.5vw, 1.15rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust { display: flex; align-items: center; gap: .7rem; margin-top: 2.4rem; color: var(--muted); font-size: .9rem; }
.hero__stars { color: var(--gold); letter-spacing: .15em; }
.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ---- Marquee ---- */
.marquee { background: var(--gold); color: #1a1408; overflow: hidden; padding: .85rem 0; border-top: 1px solid #00000022; border-bottom: 1px solid #00000022; }
.marquee__track { display: flex; align-items: center; gap: 2rem; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: .1em; }
.marquee__track i { font-style: normal; opacity: .55; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Section base ---- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 4vw, 2.5rem); }
.section__head { max-width: 40rem; margin-bottom: 3rem; }
.section__eyebrow { font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.section__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1; letter-spacing: .01em; }
.section__lead, .section__head p:not(.section__eyebrow) { color: var(--muted); margin-top: 1rem; }

/* ---- Services ---- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }
.service {
  background: linear-gradient(180deg, var(--panel), var(--ink));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.service::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at top right, rgba(217,164,65,.12), transparent 60%); opacity:0; transition:opacity .3s; }
.service:hover { transform: translateY(-6px); border-color: rgba(217,164,65,.5); box-shadow: 0 24px 50px -28px rgba(0,0,0,.9); }
.service:hover::before { opacity: 1; }
.service__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.service__top h3 { font-size: 1.2rem; font-weight: 600; }
.service__price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); white-space: nowrap; }
.service__tag { font-family: 'Inter'; font-size: .65rem; color: var(--muted); border: 1px solid var(--line); padding: .1rem .4rem; border-radius: 6px; vertical-align: middle; }
.service p { color: var(--muted); font-size: .95rem; }
.services__cta { display: flex; flex-direction: column; align-items: center; gap: .8rem; margin-top: 3rem; text-align: center; }
.services__note { color: var(--muted); font-size: .9rem; }

/* ---- Split feature ---- */
.split { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem,6vw,4rem) clamp(1rem,4vw,2.5rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.checklist { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 1rem; }
.checklist li { padding-left: 2rem; position: relative; color: var(--muted); }
.checklist li strong { color: var(--bone); }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #1a1408; background: var(--gold); width: 1.35rem; height: 1.35rem; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }

/* ---- Gallery ---- */
.gallery__grid { display: grid; grid-template-columns: 1fr 1.4fr; grid-auto-rows: clamp(340px, 40vw, 460px); gap: 1rem; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; grid-column: span 1; grid-row: span 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .9rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: .05em; background: linear-gradient(to top, rgba(12,11,10,.9), transparent); transform: translateY(8px); opacity: 0; transition: .3s var(--ease); }
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---- About ---- */
.about__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.about__body p { color: var(--muted); margin-top: 1rem; }
.about__stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.about__num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); line-height: 1; display: block; }
.about__stats small { color: var(--muted); font-size: .85rem; }
.about__card { background: linear-gradient(180deg, var(--panel-2), var(--ink)); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; position: sticky; top: 100px; }
.about__card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .04em; margin-bottom: 1.2rem; }
.hours { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.2rem; }
.hours li { display: flex; justify-content: space-between; font-size: .95rem; color: #d9d2c6; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.hours li span:first-child { color: var(--muted); }
.hours--closed span:last-child { color: #b5604a; }
.about__card-note { font-size: .78rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ---- Reviews ---- */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.1rem; }
.review { background: linear-gradient(180deg, var(--panel), var(--ink)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; }
.review__stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .9rem; }
.review p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.08rem; color: #e7e0d4; }
.review cite { display: block; margin-top: 1.1rem; font-style: normal; color: var(--muted); font-size: .9rem; }
.reviews__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 2rem; }

/* ---- Contact ---- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.contact__lead { color: var(--muted); margin: 1rem 0 2rem; }
.contact__list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__icon { font-size: 1.3rem; line-height: 1.4; }
.contact__list a { color: var(--gold); }
.contact__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.4) contrast(1.05); display: block; }
/* Click-to-load map consent placeholder (GDPR: no 3rd-party call before consent) */
.map-consent { display: grid; place-items: center; height: 100%; min-height: 380px; padding: 2rem; text-align: center; background: linear-gradient(180deg, var(--panel-2), var(--ink)); }
.map-consent__inner { max-width: 23rem; display: grid; gap: 1rem; justify-items: center; }
.map-consent__icon { font-size: 2.2rem; }
.map-consent__text { color: var(--muted); font-size: .9rem; }
.map-consent__text a { color: var(--gold); text-decoration: underline; }
.map-consent__link { color: var(--muted); font-size: .82rem; text-decoration: underline; transition: color .2s; }
.map-consent__link:hover { color: var(--gold); }

/* ---- Footer ---- */
.footer { background: rgba(20,18,16,.55); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 3.5rem clamp(1rem,4vw,2.5rem) 1.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__brand { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer__brand p { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.footer__col h4 { font-size: .95rem; margin-bottom: 1rem; letter-spacing: .05em; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: .9rem; margin-bottom: .5rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bar { max-width: var(--maxw); margin: 1.5rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .82rem; }
.footer__credit { color: var(--gold-soft); }

/* ---- Sticky mobile CTA ---- */
.sticky-cta { display: none; position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 90; text-align: center; padding: 1rem; border-radius: 999px; background: linear-gradient(135deg, var(--gold), #c08a2a); color: #1a1408; font-weight: 700; box-shadow: 0 14px 36px -10px rgba(217,164,65,.7); }

/* ---- Reveal animation (only when JS is active, so content is never stuck hidden) ---- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---- Legal pages (Impressum / Datenschutz) ---- */
.legal-nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem,4vw,2.5rem); background: rgba(12,11,10,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.legal-nav a.btn--ghost { padding: .5rem 1.1rem; }
.legal-main { max-width: 820px; margin: 0 auto; padding: 7rem clamp(1rem,4vw,2.5rem) 4rem; }
.legal-card { background: rgba(20,18,16,.94); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,4vw,3rem); }
.legal h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,6vw,3.2rem); letter-spacing: .02em; margin-bottom: 1.4rem; }
.legal h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .03em; color: var(--gold-soft); margin: 2.2rem 0 .7rem; }
.legal h3 { font-size: 1rem; margin: 1.3rem 0 .4rem; color: var(--bone); }
.legal p, .legal li { color: #d9d2c6; font-size: .95rem; margin-bottom: .7rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: .9rem; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal address { font-style: normal; color: #d9d2c6; line-height: 1.8; }
.legal small { color: var(--muted); }
.ph { background: rgba(217,164,65,.14); border: 1px dashed var(--gold); color: var(--gold-soft); padding: .05rem .4rem; border-radius: 5px; font-size: .9em; }
.legal__notice { background: rgba(181,96,74,.15); border: 1px solid #b5604a; border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 2rem; font-size: .85rem; color: #eccabf; }
.legal__notice strong { color: #fff; }

/* legal links in footer bar */
.footer__legal { display: flex; gap: 1.2rem; }
.footer__legal a { color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 1.4rem; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,11,10,.97); backdrop-filter: blur(14px); padding: 1.8rem clamp(1rem,4vw,2.5rem); border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { font-size: 1.1rem; }
  .split, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__card { position: static; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: clamp(240px, 55vw, 340px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
