/* ============================================================
   JEWELZ TATTOO — Braunschweig
   Dark / Gold, bildstark. Self-contained bis auf Google Fonts.
   ============================================================ */

:root {
  --bg:        #0b0b0d;
  --bg-soft:   #141417;
  --bg-card:   #17171b;
  --line:      #2a2a30;
  --text:      #ece9e4;
  --muted:     #a09b92;
  --gold:      #c9a24b;
  --gold-soft: #e2c884;
  --maxw:      1180px;
  --ease:      cubic-bezier(.16,.84,.44,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

h1, h2, h3, .display {
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  text-transform: uppercase;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

.eyebrow {
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow::before { content: "— "; opacity: .6; }

.section { padding: 110px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(40px, 6vw, 76px); }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 600; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px;
  border: 1px solid var(--gold);
  transition: all .35s var(--ease);
  cursor: pointer; background: none; color: var(--text);
}
.btn--solid { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost:hover { background: var(--gold); color: #0b0b0d; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 56px; width: auto; flex-shrink: 0; }
.brand .name { font-family: "Bebas Neue", sans-serif; font-size: 24px; letter-spacing: .12em; line-height: 1; }
.brand .name span { color: var(--gold); }
.brand .sub { font-size: 10px; letter-spacing: .35em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { padding: 11px 22px; color: var(--text); }
.nav-links .btn:hover { color: #0b0b0d; }
.nav-ig { display: inline-flex; color: var(--muted); transition: color .25s, transform .25s var(--ease); }
.nav-ig:hover { color: var(--gold); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
  filter: grayscale(.25) contrast(1.05);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.25) 38%, rgba(11,11,13,.92) 100%),
    radial-gradient(120% 90% at 15% 50%, rgba(11,11,13,.85) 0%, rgba(11,11,13,0) 60%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 80px; }
.hero h1 {
  font-size: clamp(64px, 13vw, 168px);
  line-height: .86; margin: 14px 0 0;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.hero h1 .line2 { color: var(--gold); }
.hero__tag {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500; color: var(--text);
  max-width: 540px; margin: 28px 0 0; line-height: 1.4;
}
.hero__sub { color: var(--muted); margin-top: 8px; letter-spacing: .04em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { opacity: 0; transform: scaleY(.3); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }

/* ---------- Instagram-Follower-Badge ---------- */
.insta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 17px; border-radius: 50px;
  border: 1px solid rgba(201,162,75,.35);
  background: rgba(201,162,75,.07);
  font-size: 14px; color: var(--text); line-height: 1;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.insta-badge:hover { border-color: var(--gold); background: rgba(201,162,75,.14); transform: translateY(-2px); }
.insta-badge svg { color: var(--gold); flex-shrink: 0; }
.insta-badge strong { color: var(--gold); font-weight: 700; }
.hero__badge { margin-top: 26px; }
.insta-cta__badge { margin-top: 22px; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft); overflow: hidden; padding: 18px 0;
}
.marquee__track { display: flex; gap: 48px; width: max-content; animation: slide 28s linear infinite; }
.marquee span { font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: .14em; color: var(--muted); white-space: nowrap; }
.marquee span b { color: var(--gold); font-weight: 400; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Intro / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: 3px; aspect-ratio: 4/3; object-fit: cover; }
.split__media .frame { position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--gold); border-radius: 3px; z-index: -1; }
.split__body h2 { font-size: clamp(38px, 5.5vw, 68px); }
.split__body p { color: var(--muted); margin-top: 22px; }
.stats { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 40px; }
.stat .num { font-family: "Bebas Neue", sans-serif; font-size: 52px; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Styles grid ---------- */
.styles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.style {
  border: 1px solid var(--line); background: var(--bg-card);
  padding: 30px 24px; border-radius: 3px;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.style::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform .35s var(--ease);
}
.style:hover { background: var(--bg-soft); border-color: var(--gold); transform: translateY(-4px); }
.style:hover::before { transform: scaleY(1); }
.style .no { font-family: "Bebas Neue", sans-serif; font-size: 15px; color: var(--gold); letter-spacing: .1em; }
.style h3 { font-size: 27px; margin: 10px 0 8px; }
.style p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 14px; }
.gallery figure { break-inside: avoid; margin: 0 0 14px; position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.gallery img { width: 100%; transition: transform .6s var(--ease), filter .6s; filter: grayscale(.15); }
.gallery figure::after {
  content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--gold); background: rgba(11,11,13,.55);
  opacity: 0; transition: opacity .4s; font-family: "Barlow", sans-serif; font-weight: 300;
}
.gallery figure:hover img { transform: scale(1.06); filter: grayscale(0); }
.gallery figure:hover::after { opacity: 1; }
.gallery .tag { position: absolute; left: 12px; bottom: 12px; z-index: 2; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text); background: rgba(11,11,13,.7); padding: 5px 11px; border-radius: 2px; opacity: 0; transition: opacity .4s; }
.gallery figure:hover .tag { opacity: 1; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,8,.95); display: none; align-items: center; justify-content: center; padding: 40px; }
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 86vh; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb__close, .lb__nav { position: absolute; background: none; border: 0; color: var(--text); cursor: pointer; font-family: "Barlow", sans-serif; }
.lb__close { top: 26px; right: 32px; font-size: 36px; font-weight: 300; }
.lb__nav { top: 50%; transform: translateY(-50%); font-size: 50px; padding: 0 24px; opacity: .7; transition: .25s; }
.lb__nav:hover { opacity: 1; color: var(--gold); }
.lb__prev { left: 10px; } .lb__next { right: 10px; }

/* ---------- Instagram CTA ---------- */
.insta-cta {
  background:
    linear-gradient(90deg, rgba(201,162,75,.10), rgba(201,162,75,.02)),
    var(--bg-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.insta-cta__inner { display: flex; align-items: center; gap: 36px; }
.insta-cta__glyph { color: var(--gold); flex-shrink: 0; }
.insta-cta__text { flex: 1; min-width: 0; }
.insta-cta__text .eyebrow { margin-bottom: 10px; }
.insta-cta__text h2 { font-size: clamp(32px, 4.5vw, 52px); }
.insta-cta__text p { color: var(--muted); margin-top: 12px; max-width: 620px; }
.insta-cta__text p strong { color: var(--text); font-weight: 600; }
.insta-handle-link { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .25s; }
.insta-handle-link:hover { border-bottom-color: var(--gold); }
.insta-cta__btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .insta-cta__inner { flex-direction: column; align-items: flex-start; gap: 22px; text-align: left; }
}

/* ---------- WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 13px 20px 13px 16px; border-radius: 50px;
  font-family: "Barlow", sans-serif; font-weight: 600; font-size: 15px;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), background .25s;
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); background: #1ebe5b; }
.wa-float svg { flex-shrink: 0; }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; padding: 15px; }
  .wa-float__label { display: none; }
}
.info-block a.wa-inline { display: inline-flex; align-items: center; gap: 8px; color: #25d366; }
.info-block a.wa-inline:hover { color: #1ebe5b; }
.info-block a.wa-inline svg { flex-shrink: 0; }
.btn--wa { background: transparent; border-color: rgba(37,211,102,.5); color: #25d366; margin-top: 18px; }
.btn--wa:hover { background: rgba(37,211,102,.12); border-color: #25d366; color: #25d366; }
.btn--wa svg { flex-shrink: 0; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member { position: relative; border-radius: 3px; overflow: hidden; }
.member img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .6s var(--ease); filter: grayscale(.3); }
.member:hover img { transform: scale(1.05); filter: grayscale(0); }
.member__info { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 20px; background: linear-gradient(transparent, rgba(11,11,13,.92)); }
.member__info h3 { font-size: 26px; }
.member__info .role { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.member--lead { grid-column: span 1; }
.member--lead .badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #0b0b0d; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 2px; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { border: 1px solid var(--line); background: var(--bg-card); padding: 34px 30px; border-radius: 3px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote p { margin: 18px 0 22px; font-size: 17px; line-height: 1.6; }
.quote .by { font-family: "Bebas Neue", sans-serif; font-size: 20px; letter-spacing: .08em; }
.quote .by::before { content: "— "; color: var(--gold); }

/* ---------- So findest du uns (Karte) ---------- */
.findus { margin-top: 72px; text-align: center; }
.findus__head { max-width: 600px; margin: 0 auto 30px; }
.findus__head .eyebrow { margin-bottom: 12px; }
.findus__head h3 { font-size: clamp(30px, 4.2vw, 50px); }
.findus__head p { color: var(--muted); margin-top: 12px; letter-spacing: .04em; }
.findus__map { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.findus__map iframe { display: block; width: 100%; height: 430px; border: 0; }
.findus__btn { display: inline-flex; margin-top: 26px; }
@media (max-width: 560px) { .findus__map iframe { height: 320px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.info-block { margin-bottom: 30px; }
.info-block .label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.info-block .val { font-size: 19px; }
.info-block a:hover { color: var(--gold); }
.ig-mini { width: 18px; height: 18px; vertical-align: middle; }
.hours { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours tr.closed td:last-child { color: var(--gold); }

form { background: var(--bg-card); border: 1px solid var(--line); padding: 38px; border-radius: 3px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 13px 15px; border-radius: 2px; font-family: inherit; font-size: 16px; transition: border-color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: #08080a; border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer .brand .name { font-size: 30px; }
.footer__tag { color: var(--muted); max-width: 320px; margin-top: 14px; font-size: 15px; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col h4 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: "Barlow", sans-serif; font-weight: 700; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: 15px; margin-bottom: 9px; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.legal { padding: 160px 0 100px; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(48px, 8vw, 90px); margin-bottom: 10px; }
.legal h2 { font-size: 30px; margin: 40px 0 14px; color: var(--gold); }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal a { color: var(--gold); }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 30px; color: var(--gold); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; background: var(--bg-soft); padding: 40px; transform: translateX(100%); visibility: hidden; transition: transform .4s var(--ease), visibility 0s linear .4s; border-left: 1px solid var(--line); }
  .nav-links.open { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s; }
  .nav-links a { font-size: 18px; }
  .burger { display: flex; z-index: 110; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .styles { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .styles { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
  form { padding: 26px; }
}
