/* ============================================
   New Style — Herrenfriseur Chur
   ============================================ */

:root {
  --bg:            #0b0b0d;
  --bg-alt:        #101014;
  --surface:       #16161b;
  --surface-2:     #1c1c22;
  --line:          rgba(201, 165, 95, 0.16);
  --line-soft:     rgba(255, 255, 255, 0.07);

  --gold:          #c9a55f;
  --gold-light:    #e8c98a;
  --gold-dim:      rgba(201, 165, 95, 0.55);

  --text:          #ece9e4;
  --text-mute:     #9c988f;
  --text-dim:      #6f6b64;

  --wa:            #25d366;
  --wa-dark:       #128c7e;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 28px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 18px;
}

h3 { font-size: 1.45rem; }

em { font-style: italic; color: var(--gold-light); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.section-lead {
  color: var(--text-mute);
  max-width: 56ch;
  margin: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.brand:hover .brand-mark { background: var(--gold); color: #0b0b0d; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}
.brand-sub {
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.nav .nav-cta {
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 11px 22px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--gold); color: #0b0b0d; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  padding: 0 12px;
}
.burger span {
  height: 1px; width: 100%;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 140px 100px;
}

/* Foto liegt zuunterst, darüber die Farbschichten — so bleibt der
   helle Salon sichtbar, ohne dass die Schrift an Kontrast verliert. */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../assets/salon-1.jpg') center 38% / cover no-repeat;
  /* Browser mit image-set()-Unterstützung holen sich das kleinere WebP,
     alle anderen behalten die JPEG-Zeile darüber. */
  background-image: image-set(
    url('../assets/salon-1.webp') type('image/webp'),
    url('../assets/salon-1.jpg')  type('image/jpeg')
  );
  filter: grayscale(0.6) brightness(0.5) contrast(1.08);
  transform: scale(1.04);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(201, 165, 95, 0.16), transparent 62%),
    radial-gradient(ellipse 60% 50% at 12% 88%, rgba(201, 165, 95, 0.08), transparent 60%),
    /* links dichter als rechts: die Schrift steht links, das Foto atmet rechts */
    linear-gradient(100deg, rgba(9,9,11,0.94) 0%, rgba(10,10,13,0.86) 42%, rgba(8,8,10,0.62) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 78px);
  opacity: 0.9;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.hero-lead {
  max-width: 54ch;
  color: var(--text-mute);
  font-size: 1.06rem;
  margin: 0 0 42px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-meta li { display: flex; align-items: center; gap: 12px; }
.hero-meta li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: 0 0 5px;
}

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 58px;
  background: var(--line-soft);
  overflow: hidden;
}
.scroll-hint span {
  position: absolute; inset: 0;
  background: var(--gold);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s;
}
.btn:hover { transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #04150d;
  font-weight: 600;
  box-shadow: 0 8px 30px -10px rgba(37, 211, 102, 0.5);
}
.btn-wa:hover { box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.65); }

.btn-ghost {
  border-color: var(--gold-dim);
  color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: #0b0b0d; }

.btn-block { width: 100%; }

.wa-icon { width: 19px; height: 19px; fill: currentColor; flex: 0 0 19px; }
.wa-icon-lg { width: 42px; height: 42px; fill: var(--wa); flex: 0 0 42px; }

/* ---------- Sections ---------- */

.section { padding-block: clamp(80px, 11vw, 140px); }
.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line-soft);
}

.section-head { margin-bottom: 62px; max-width: 68ch; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.card {
  position: relative;
  background: var(--bg);
  padding: 44px 38px 46px;
  transition: background 0.45s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover { background: var(--surface); }
.card:hover::before { transform: scaleX(1); }

.card-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-mute); font-size: 0.95rem; margin: 0; }

/* ---------- Split / Salon ---------- */

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.media-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
}
.media-frame::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.media-frame picture { display: block; }
.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.86) contrast(1.04);
  transition: filter 0.7s var(--ease);
}
.media-frame:hover img { filter: grayscale(0) brightness(1) contrast(1); }

.split-body p { color: var(--text-mute); margin: 0 0 18px; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}
.stat-num em { font-size: 0.9rem; font-style: normal; letter-spacing: 0.06em; }
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 262px);
  gap: 18px;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  background: var(--surface);
}
.shot-lg   { grid-column: span 2; grid-row: span 2; }
.shot-wide { grid-column: span 2; }

.shot picture { display: block; width: 100%; height: 100%; }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Die Aufnahmen sind sehr hell — leicht entsättigt und abgedunkelt
     fügen sie sich ins dunkle Layout, bei Hover volle Farbe. */
  filter: grayscale(0.4) brightness(0.8) contrast(1.05);
  transform: scale(1.01);
  transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}

.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.72) 0%, transparent 45%);
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}

.shot:hover img,
.shot:focus-visible img {
  filter: grayscale(0) brightness(0.95) contrast(1);
  transform: scale(1.045);
}

.shot figcaption {
  position: absolute;
  left: 22px; bottom: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.shot figcaption::before {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
  margin-bottom: 9px;
  transition: width 0.5s var(--ease);
}
.shot:hover figcaption::before { width: 52px; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5vh 4vw;
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }

.lb-stage {
  margin: 0;
  max-width: min(1000px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--line);
}
.lb-stage figcaption {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }

.lb-nav {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  background: none;
  border: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.lb-nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,165,95,0.06); }

/* ---------- Öffnungszeiten ---------- */

.hours {
  max-width: 720px;
  border: 1px solid var(--line-soft);
}

.hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 30px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease), border-color 0.35s;
}
.hour-row:last-child { border-bottom: none; }

.h-day {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.h-time { font-family: var(--serif); font-size: 1.2rem; color: var(--text); text-align: right; }
.h-time i { color: var(--gold-dim); font-style: normal; padding-inline: 6px; }

.hour-row.closed .h-time { color: var(--text-dim); font-style: italic; }

.hour-row.today {
  background: linear-gradient(90deg, rgba(201,165,95,0.09), transparent);
  border-left: 2px solid var(--gold);
}
.hour-row.today .h-day { color: var(--gold); }

.hours-note {
  margin: 26px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.hours-note strong { color: var(--gold); font-weight: 500; }
.hours-note .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
}
.hours-note .dot.open   { background: var(--wa); box-shadow: 0 0 10px rgba(37,211,102,0.7); }
.hours-note .dot.closed { background: #7a3b3b; }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
}

.wa-panel, .info-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 44px 40px;
}

.wa-panel {
  position: relative;
  background:
    linear-gradient(160deg, rgba(37,211,102,0.06), transparent 55%),
    var(--surface);
  border-color: rgba(37, 211, 102, 0.2);
}

.wa-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.wa-head h3 { margin: 0 0 6px; }
.wa-head p { margin: 0; color: var(--text-mute); font-size: 0.92rem; }

.wa-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
}

.wa-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }

.chip {
  padding: 10px 18px;
  border: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--text-mute);
  transition: border-color 0.3s var(--ease), color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.chip:hover {
  border-color: var(--wa);
  color: var(--text);
  background: rgba(37,211,102,0.08);
  transform: translateY(-2px);
}

.wa-fallback {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.wa-fallback a { color: var(--gold); border-bottom: 1px solid var(--line); }

.info-panel h3 { margin-bottom: 28px; }

.info-list { margin: 0 0 30px; }
.info-list > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-list > div:last-child { border-bottom: none; }
.info-list dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.info-list dd { margin: 0; color: var(--text-mute); font-size: 0.95rem; }
.info-list dd a { color: var(--text); border-bottom: 1px solid var(--line); }
.info-list dd a:hover { color: var(--gold); }

/* ---------- Rechtliche Seiten ---------- */

.legal-hero {
  padding: 150px 0 60px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(165deg, #131318 0%, #0b0b0d 100%);
}
.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0;
}

.legal { padding-block: clamp(56px, 8vw, 90px); }
.legal-body { max-width: 74ch; }

.legal-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 52px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.legal-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 8px;
  color: var(--gold-light);
}

.legal-body p,
.legal-body li { color: var(--text-mute); font-size: 0.97rem; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 16px; padding-left: 20px; }
.legal-body li { margin-bottom: 7px; }

.legal-body a { color: var(--gold); border-bottom: 1px solid var(--line); }
.legal-body a:hover { color: var(--gold-light); }

.legal-body address {
  font-style: normal;
  color: var(--text);
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 20px;
}

.legal-updated {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Noch auszufüllende Angaben — bewusst auffällig, damit sie vor dem
   Livegang nicht übersehen werden. */
.todo {
  background: var(--gold);
  color: #0b0b0d;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 2px;
}

.legal-note {
  margin: 0 0 34px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 165, 95, 0.07);
  font-size: 0.92rem;
  color: var(--text-mute);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.back-link:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  padding-block: 54px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.f-name { font-family: var(--serif); font-size: 1.25rem; margin: 0; letter-spacing: 0.05em; }
.f-sub {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

.copyright {
  width: 100%;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #04150d;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 34px -8px rgba(37,211,102,0.6);
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 240px 240px; }
  .shot-lg { grid-row: auto; grid-column: span 2; }
  .shot-wide { grid-column: span 2; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 22px; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11,11,13,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 14px 22px 30px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .nav .nav-cta {
    margin-top: 18px;
    text-align: center;
    border-bottom: 1px solid var(--gold-dim);
  }

  /* Rechtsseiten haben keinen Burger-Button — ihre Kopfzeile bleibt
     deshalb immer sichtbar und klappt nicht ein. */
  .nav.nav-simple {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav.nav-simple .nav-hide-sm { display: none; }
  .nav.nav-simple .nav-cta { margin-top: 0; padding: 10px 16px; font-size: 0.72rem; }

  .hero { min-height: auto; padding-block: 130px 90px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .scroll-hint { display: none; }

  .wa-float { display: flex; }

  .wa-panel, .info-panel { padding: 34px 26px; }
  .hour-row { padding: 16px 20px; }

  .hour-row { flex-direction: column; align-items: flex-start; gap: 5px; }
  .h-time { text-align: left; font-size: 1.1rem; }

  .lightbox { padding: 3vh 3vw; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-close { top: 12px; right: 14px; width: 42px; height: 42px; }

  .site-footer { padding-bottom: 96px; }
}

/* Erst auf schmalen Geräten einspaltig — zweispaltig schneidet die
   Hochformat-Aufnahmen deutlich weniger an. */
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 250px; gap: 14px; }
  .shot-lg, .shot-wide { grid-column: auto; }
}

@media (max-width: 480px) {
  .brand-sub { display: none; }
  .stats { gap: 26px; }
  .stat-num { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
