/* =========================================================================
   Braboss Barber — Editorial / Industrial Onepager
   Charcoal + Cream + Copper accent. Bebas Neue + IBM Plex Sans + Plex Mono.
   ========================================================================= */

:root {
  --ink: #0d0d0d;
  --ink-2: #171717;
  --ink-3: #1f1f1f;
  --paper: #f5f0e8;
  --paper-2: #ece5d8;
  --line-dark: rgba(245, 240, 232, 0.15);
  --line-paper: rgba(13, 13, 13, 0.15);
  --text: #f5f0e8;
  --text-dim: rgba(245, 240, 232, 0.68);
  --text-mute: rgba(245, 240, 232, 0.45);
  --text-on-paper: #171717;
  --text-on-paper-dim: rgba(23, 23, 23, 0.65);

  --copper: #c9633e;
  --copper-soft: #dc7f5b;
  --gold: #c9a34c;
  --brand: var(--copper);

  --wrap: 1240px;
  --gutter: clamp(1.2rem, 4vw, 3rem);

  --ff-display: "Bebas Neue", "Oswald", "Impact", sans-serif;
  --ff-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: "IBM Plex Mono", "Menlo", "Consolas", monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h2 { font-size: clamp(2.6rem, 5vw + 1rem, 5rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.04em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section {
  position: relative;
  padding: clamp(4rem, 10vh, 8rem) 0;
  border-top: 1px solid var(--line-dark);
}
.section.paper {
  background: var(--paper);
  color: var(--text-on-paper);
  border-top: none;
}
.section.paper .eyebrow { color: var(--brand); }
.section.paper .num-mark { color: var(--text-on-paper); }
.section.paper .lead, .section.paper p { color: var(--text-on-paper-dim); }

/* --------------------------------------------------------------- ATOMS -- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.num-mark {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text);
  opacity: 0.7;
}
.rule {
  height: 1px;
  background: currentColor;
  opacity: 0.15;
}
.lead {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem);
  color: var(--text-dim);
  max-width: 52ch;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  align-items: end;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.section.paper .section-head { border-bottom-color: var(--line-paper); }
.section-head-meta { display: flex; align-items: center; gap: 1rem; }
.section-head-meta .rule { flex: 1; }
.section-head h2 { margin: 0; max-width: 18ch; }
@media (min-width: 800px) {
  .section-head { grid-template-columns: 1.2fr 1fr; }
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; background: var(--brand); color: var(--ink); padding: 0.6rem 1rem; }

/* --------------------------------------------------------------- NAV -- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), backdrop-filter 0.25s var(--ease), padding 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-dark);
  padding: 0.55rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-brand-word { color: var(--brand); }
.nav-brand-sub {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line-dark);
}
.nav-links { display: none; gap: 1.5rem; }
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.nav-cta {
  display: none;
  align-items: center; gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brand);
  padding: 0.7rem 1rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--copper-soft); transform: translateY(-1px); }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px;
  background: transparent; border: 1px solid var(--line-dark);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--brand); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  padding: 0 var(--gutter);
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 0 solid var(--line-dark);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), border-bottom-width 0.35s var(--ease);
}
.nav.is-open .nav-mobile {
  max-height: 500px;
  padding: 1.2rem var(--gutter) 1.5rem;
  border-bottom-width: 1px;
}
.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line-dark);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile-cta {
  margin-top: 1rem !important;
  background: #25D366;
  color: #0a2416 !important;
  text-align: center;
  border-bottom: none !important;
  font-family: var(--ff-mono) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.14em;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* --------------------------------------------------------------- HERO -- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 8rem 0 3rem;
  display: flex; align-items: stretch;
}
@media (min-width: 900px) {
  .hero { padding: 6rem 0 3rem; }
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url("../images/hero-shop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  filter: contrast(1.05) saturate(0.9);
}
@media (max-width: 700px) {
  .hero-image {
    background-size: auto 140%;
    background-position: 50% 62%;
  }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.70);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 1.6rem;
  width: 100%;
  align-self: center;
}
@media (min-width: 900px) {
  .hero-content { gap: 2rem; }
}
.hero-topline {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-topline .rule { flex: 1; max-width: 100px; background: currentColor; opacity: 0.4; }

.hero-wordmark {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.005em;
}
.hero-wordmark-top {
  display: block;
  font-size: clamp(3rem, 11vw + 0.5rem, 11rem);
  color: var(--text);
}
.hero-wordmark-bot {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.15em 0.55em;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw + 0.6rem, 2.2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--ink);
}
.hero-lead {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.15rem);
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  margin-top: 1rem;
}
.hero-meta > div {
  padding: 1.1rem 1.2rem 0.9rem 0;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.hero-meta > div:last-child { border-right: none; }
.hero-meta-num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.hero-meta-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-side {
  display: none;
}
@media (min-width: 1000px) {
  .hero-content {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: end;
    gap: 3rem;
  }
  .hero-side {
    display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end;
    gap: 0.5rem;
    text-align: right;
  }
  .hero-side-big {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--brand);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .hero-side-label {
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------- BUTTONS -- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 1rem 1.4rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-solid { background: var(--brand); color: var(--ink); }
.btn-solid:hover { background: var(--copper-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--line-dark); color: var(--text); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #0a2416;
}
.btn-whatsapp:hover { background: #1fbe5b; border-color: #1fbe5b; transform: translateY(-1px); }
.btn-whatsapp svg { fill: currentColor; }

/* --------------------------------------------------------------- ABOUT -- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.about-media-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.35rem 0.7rem;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-text h2 { margin-bottom: 1rem; }
.about-copy {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 52ch;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-paper);
}
.section.paper .about-facts { border-top-color: var(--line-paper); }
.about-facts > div {
  padding: 1.2rem 0.6rem 0 0;
  border-right: 1px solid var(--line-paper);
}
.about-facts > div:last-child { border-right: none; padding-right: 0; }
.about-facts-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-facts > div > span:last-child {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--text-on-paper-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

/* --------------------------------------------------------------- INHABER / MEISTER -- */
.inhaber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.inhaber-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
}
.inhaber-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(0.9);
}
.inhaber-media::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 163, 76, 0.28);
  pointer-events: none;
}
.inhaber-media-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.4rem 0.75rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.inhaber-text {
  display: flex; flex-direction: column; gap: 2rem;
}
.inhaber-name .eyebrow { display: block; margin-bottom: 0.6rem; }
.inhaber-name-h {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  color: var(--text);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1;
}
.inhaber-copy {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 54ch;
  color: var(--text-dim);
}
.inhaber-copy p { margin: 0; font-size: 1.02rem; line-height: 1.65; }
.inhaber-quote {
  position: relative;
  margin: 0;
  padding: 1.6rem 1.4rem 1.4rem 3.4rem;
  border-left: 3px solid var(--brand);
  background: rgba(201, 163, 76, 0.05);
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1vw + 1rem, 1.9rem);
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: var(--text);
}
.inhaber-quote .mark {
  position: absolute; left: 0.9rem; top: 0.2rem;
  font-family: var(--ff-display);
  font-size: 4rem; line-height: 1;
  color: var(--brand);
}
.inhaber-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.inhaber-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.4rem;
}
.inhaber-facts > div {
  padding-right: 0.6rem;
  border-right: 1px solid var(--line-dark);
}
.inhaber-facts > div:last-child { border-right: none; padding-right: 0; }
.inhaber-facts-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.9rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.inhaber-facts > div > span:last-child {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inhaber-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }

@media (min-width: 900px) {
  .inhaber-grid { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: center; }
}

/* --------------------------------------------------------------- LEISTUNGEN -- */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.leistung-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.2s var(--ease), padding 0.2s var(--ease);
}
.leistung-row:hover { background: rgba(201, 99, 62, 0.05); padding-left: 1rem; padding-right: 1rem; }
.leistung-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--brand);
  letter-spacing: 0.14em;
}
.leistung-body h3 {
  margin: 0 0 0.3rem;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
}
.leistung-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 62ch;
}
.leistung-price {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2vw + 0.6rem, 2.6rem);
  color: var(--brand);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .leistung-row { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; }
  .leistung-price { grid-column: 2; text-align: left; }
}

.leistungen-strip {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.leistungen-strip img { width: 100%; height: auto; aspect-ratio: 21/9; object-fit: cover; filter: grayscale(0.15) contrast(1.05); }
.leistungen-strip-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,13,0.85) 60%);
  display: flex; align-items: baseline; gap: 1.2rem;
  flex-wrap: wrap;
}
.leistungen-strip-caption .eyebrow { color: var(--copper-soft); }
.leistungen-strip-caption p {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2.2rem);
  color: var(--text);
  margin: 0;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------- PREISE -- */
.preise-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  position: relative;
}
.preise-wrap::before,
.preise-wrap::after {
  content: '';
  position: absolute;
  height: 8px;
  left: 0; right: 0;
  background-image: repeating-linear-gradient(-45deg, var(--brand) 0 12px, var(--ink-2) 12px 24px);
}
.preise-wrap::before { top: 0; }
.preise-wrap::after { bottom: 0; }
.preise-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--brand);
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.preise-header h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2vw + 0.8rem, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--text);
}
.preise-header-meta {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.preise-list { display: flex; flex-direction: column; }
.preise-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.12);
}
.preise-list li:last-child { border-bottom: none; }
.preise-item {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--text);
}
.preise-item em {
  display: inline-block;
  margin-left: 0.4rem;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.preise-value {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.preise-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.preise-foot strong { display: block; font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: 0.04em; color: var(--text); font-weight: 400; margin-bottom: 0.15rem; }
.preise-foot span { display: block; font-size: 0.72rem; color: var(--text-mute); }
@media (min-width: 720px) {
  .preise-foot { grid-template-columns: 1fr 1fr; }
  .preise-foot > div:last-child { text-align: right; }
}

/* --------------------------------------------------------------- GALERIE -- */
.galerie-block { margin-top: 3rem; }
.galerie-block:first-of-type { margin-top: 0; }
.galerie-subhead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1.5vw + 0.6rem, 2rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-dark);
}
.galerie-subhead .num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--brand);
  letter-spacing: 0.16em;
  font-weight: 500;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 4px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-2);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
  filter: grayscale(0.15) contrast(1.05);
}
.gal-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gal-item:hover img { transform: scale(1.05); filter: none; }
.gal-item:hover::after { opacity: 1; }
.gal-tall { grid-row: span 2; }
@media (min-width: 720px) {
  .galerie-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (min-width: 1000px) {
  .galerie-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
}

.galerie-divider {
  margin: 3rem 0;
  height: 12px;
  background-image: repeating-linear-gradient(-45deg, var(--brand) 0 14px, transparent 14px 28px);
  opacity: 0.7;
}

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(13, 13, 13, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lb-overlay.is-open { display: flex; opacity: 1; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; box-shadow: 0 20px 60px rgba(0,0,0,0.7); }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--brand);
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  font-family: var(--ff-mono);
}

/* --------------------------------------------------------------- REEL -- */
.reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.reel-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #000;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.reel-item video { width: 100%; height: 100%; object-fit: cover; }
.reel-item::before {
  content: attr(data-tag);
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  padding: 0.25rem 0.55rem;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
  .reel-item { max-width: none; }
}

/* --------------------------------------------------------------- KONTAKT -- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.kontakt-info h2 { margin-bottom: 0.5rem; }
.kontakt-list {
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.kontakt-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.2s var(--ease), padding 0.2s var(--ease);
}
a.kontakt-row:hover { background: rgba(201, 99, 62, 0.06); padding-left: 0.8rem; padding-right: 0.8rem; }
.kontakt-row-wa .kontakt-row-icon { background: #25D366; border-color: #25D366; color: #0a2416; }
a.kontakt-row-wa:hover { background: rgba(37, 211, 102, 0.08); }
.kontakt-row-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--brand);
}
.kontakt-row strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--text);
  font-weight: 400;
}
.kontakt-row em {
  display: block;
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
.kontakt-map {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  min-height: 360px;
  background: #000;
}
.kontakt-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: grayscale(0.85) contrast(1.15) invert(0.05); }
@media (min-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

/* --------------------------------------------------------------- FOOTER -- */
.footer {
  background: #060606;
  padding: 4rem 0 0;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-brand-word {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--brand);
  text-transform: uppercase;
}
.footer-brand-sub {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.footer-cols h5 {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.9rem;
}
.footer-cols p, .footer-cols a {
  font-family: var(--ff-body);
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-cols a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.2rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}
.footer-credit a { color: var(--brand); }
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 2fr; align-items: start; }
}

/* --------------------------------------------------------------- FLOATING WA -- */
.fab-wa {
  position: fixed;
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: calc(clamp(1rem, 3vh, 1.6rem) + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.30);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), padding 0.25s var(--ease);
  text-decoration: none;
}
.fab-wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.fab-wa-icon svg { width: 30px; height: 30px; display: block; }
.fab-wa-label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.3s var(--ease), opacity 0.25s var(--ease), padding 0.25s var(--ease);
}
.fab-wa::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: fab-wa-pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes fab-wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (hover: hover) and (min-width: 900px) {
  .fab-wa:hover {
    transform: translateY(-2px);
    padding-right: 1.3rem;
    box-shadow:
      0 14px 34px rgba(37, 211, 102, 0.45),
      0 4px 10px rgba(0, 0, 0, 0.35);
  }
  .fab-wa:hover .fab-wa-label {
    max-width: 260px;
    opacity: 1;
    padding-left: 0.35rem;
  }
}
.fab-wa:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* --------------------------------------------------------------- REVEAL -- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

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