:root {
  --black: #05090b;
  --ink: #091116;
  --panel: #0c171c;
  --panel-light: #112229;
  --petrol: #0b5666;
  --cyan: #1595aa;
  --cyan-light: #58c6d2;
  --white: #f3f5f4;
  --muted: #9aabb0;
  --line: rgba(88,198,210,.18);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --content-width: 1600px;
  --content-padding: clamp(24px, 4vw, 72px);
}

.container {
  width: min(
    calc(100% - (var(--content-padding) * 2)),
    var(--content-width)
  );
  margin-inline: auto;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--black); font-family: var(--sans); font-size: 16px; line-height: 1.75; overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.noise { position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 99; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header { position: fixed; top: 0; left: 0; width: 100%; min-height: 88px; display: flex; align-items: center; justify-content: space-between; padding: 18px clamp(24px,5vw,76px); z-index: 50; border-bottom: 1px solid transparent; transition: .35s ease; }
.site-header.scrolled { background: rgba(5,9,11,.9); backdrop-filter: blur(16px); border-color: var(--line); }
.brand { display: grid; grid-template-columns: 42px auto; grid-template-rows: auto auto; column-gap: 12px; text-decoration: none; line-height: 1; }
.brand-mark { grid-row: 1 / 3; width: 42px; height: 42px; border: 1px solid var(--cyan); display: grid; place-items: center; font-family: var(--serif); color: var(--cyan-light); }
.brand-name { font-family: var(--serif); text-transform: uppercase; letter-spacing: .13em; font-size: 16px; }
.brand-city { color: var(--muted); text-transform: uppercase; letter-spacing: .35em; font-size: 8px; margin-top: 8px; }
.main-nav { display: flex; gap: clamp(18px,2.7vw,42px); }
.main-nav a { text-decoration: none; text-transform: uppercase; letter-spacing: .17em; font-size: 11px; color: #c5d0d3; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--cyan-light); transition: .3s; }
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; width: 42px; padding: 8px; }
.menu-toggle span { display: block; height: 1px; margin: 7px 0; background: white; }

.hero { min-height: 100vh; position: relative; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); align-items: center; gap: clamp(30px,5vw,90px); padding: 140px clamp(24px,7vw,110px) 100px; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 48%, rgba(21,149,170,.18), transparent 35%), linear-gradient(115deg, #05090b 0%, #071116 52%, #09242c 100%); z-index: -3; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,9,11,.25), transparent 50%), repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.025) 120px); z-index: -2; }
.hero-glow { position: absolute; width: 520px; height: 520px; right: 8%; top: 50%; transform: translateY(-50%); border: 1px solid rgba(88,198,210,.12); border-radius: 50%; box-shadow: 0 0 120px rgba(21,149,170,.14), inset 0 0 80px rgba(21,149,170,.08); z-index: -1; }
.hero-rune { position: absolute; width: 440px; height: 440px; border: 1px solid rgba(88,198,210,.07); border-radius: 50%; }
.rune-one { right: -180px; top: -120px; }
.rune-two { left: -300px; bottom: -230px; }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .34em; color: var(--cyan-light); font-size: 11px; font-weight: 700; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin-top: 0; font-weight: 600; }
h1 { max-width: 860px; font-size: clamp(42px,6.4vw,92px); letter-spacing: -.03em; margin-bottom: 28px; }
.hero-intro { max-width: 670px; color: #b7c4c7; font-size: clamp(16px,1.4vw,20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button { min-width: 190px; min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; text-decoration: none; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700; transition: .3s ease; }
.button-primary { background: linear-gradient(135deg, var(--petrol), var(--cyan)); box-shadow: 0 12px 35px rgba(21,149,170,.18); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 17px 45px rgba(21,149,170,.32); }
.button-ghost { border: 1px solid rgba(255,255,255,.25); }
.button-ghost:hover { border-color: var(--cyan-light); color: var(--cyan-light); }
.opening-note { margin-top: 38px; color: #c9d2d4; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.opening-note span { display: inline-block; width: 32px; height: 1px; background: var(--cyan-light); vertical-align: middle; margin-right: 12px; }
.hero-art { justify-self: end; width: min(100%,590px); }
.logo-frame { position: relative; padding: 14px; background: linear-gradient(145deg, rgba(88,198,210,.2), rgba(255,255,255,.02)); box-shadow: 0 40px 100px rgba(0,0,0,.58); }
.logo-frame::before, .logo-frame::after { content: ""; position: absolute; width: 80px; height: 80px; border-color: var(--cyan-light); opacity: .65; }
.logo-frame::before { left: -10px; top: -10px; border-left: 1px solid; border-top: 1px solid; }
.logo-frame::after { right: -10px; bottom: -10px; border-right: 1px solid; border-bottom: 1px solid; }
.logo-frame img { width: 100%; filter: saturate(.85) contrast(1.08) brightness(.8); }
.scroll-cue { position: absolute; left: clamp(24px,7vw,110px); bottom: 34px; display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--muted); text-transform: uppercase; letter-spacing: .2em; font-size: 9px; }
.scroll-cue i { display: block; width: 48px; height: 1px; background: var(--cyan-light); }

.section { position: relative; padding: 130px clamp(24px,8vw,130px); border-top: 1px solid rgba(255,255,255,.055); }
.section-number { position: absolute; top: 40px; right: clamp(24px,8vw,130px); font-family: var(--serif); font-size: 96px; color: rgba(255,255,255,.025); }
.section-heading { max-width: 920px; margin-bottom: 70px; }
.section-heading h2, .voucher-content h2, .contact-copy h2 { font-size: clamp(35px,5vw,68px); margin-bottom: 20px; }
.section-note { color: var(--muted); max-width: 660px; }
.intro-section { background: linear-gradient(180deg, var(--black), #081014); }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.intro-lead { font-family: var(--serif); font-size: clamp(24px,3vw,42px); line-height: 1.45; color: #d9e3e5; }
.intro-copy { color: var(--muted); font-size: 18px; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  min-width: 0;
  padding: 35px clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  border-right: 0;
  padding-right: 0;
}

.facts strong {
  font-family: var(--serif);
  color: var(--cyan-light);
  font-size: 38px;
}

.facts span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}

.expertise-section { background: #071014; }
.expertise-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.feature-card { min-height: 310px; padding: 42px; background: linear-gradient(145deg, rgba(17,34,41,.86), rgba(8,18,22,.92)); border: 1px solid rgba(88,198,210,.12); position: relative; overflow: hidden; transition: .35s; }
.feature-card::after { content: ""; position: absolute; width: 200px; height: 200px; right: -120px; bottom: -120px; border: 1px solid rgba(88,198,210,.12); transform: rotate(45deg); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(88,198,210,.4); }
.feature-main { grid-row: span 2; min-height: 644px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 85% 15%, rgba(21,149,170,.2), transparent 35%), linear-gradient(145deg, #10272f, #081216); }
.card-index { color: var(--cyan-light); letter-spacing: .2em; font-size: 11px; }
.feature-card h3 { font-size: clamp(25px,2.5vw,38px); margin-top: 50px; }
.feature-card p { color: var(--muted); max-width: 700px; }

.gallery-section { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 245px; gap: 16px; }
.gallery-placeholder { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 30%, rgba(21,149,170,.22), transparent 35%), linear-gradient(145deg, #10272f, #081216); border: 1px solid var(--line); }
.gallery-placeholder::before { content: ""; position: absolute; width: 210px; height: 210px; border: 1px solid rgba(88,198,210,.13); border-radius: 50%; }
.gallery-placeholder::after { content: "ᚠ"; position: absolute; font-family: serif; font-size: 90px; color: rgba(255,255,255,.035); }
.gallery-placeholder span { font-family: var(--serif); font-size: 22px; z-index: 1; }
.gallery-placeholder small { color: var(--cyan-light); text-transform: uppercase; letter-spacing: .2em; z-index: 1; }
.gallery-placeholder.tall { grid-row: span 2; }
.gallery-placeholder.wide { grid-column: span 2; }

.voucher-section { min-height: 680px; padding: 120px clamp(24px,8vw,130px); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; position: relative; overflow: hidden; background: linear-gradient(120deg, #0a1a20, #0d3440); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.voucher-pattern { position: absolute; inset: 0; opacity: .17; background: repeating-radial-gradient(circle at 85% 50%, transparent 0 45px, rgba(88,198,210,.25) 46px, transparent 47px 70px); }
.voucher-content { position: relative; max-width: 760px; }
.voucher-content p { max-width: 650px; color: #b8c7ca; }
.voucher-content .button { margin-top: 26px; }
.button-disabled { cursor: default; opacity: .7; }
.voucher-mark { justify-self: end; font-family: var(--serif); writing-mode: vertical-rl; font-size: clamp(80px,10vw,160px); letter-spacing: .1em; color: rgba(255,255,255,.035); }

.process-section{
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(21,149,170,.18),
            transparent 45%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(21,149,170,.08),
            transparent 35%
        ),
        #081318;
}

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { padding: 40px 28px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--cyan-light); font-size: 11px; letter-spacing: .2em; }
.process-step h3 { margin-top: 45px; font-size: 22px; }
.process-step p { color: var(--muted); }

.contact-section { padding: 120px clamp(24px,8vw,130px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; background: radial-gradient(circle at 85% 50%, rgba(21,149,170,.14), transparent 34%), var(--black); }
.contact-copy p { color: var(--muted); max-width: 600px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; }
.contact-card { padding: 30px; border: 1px solid var(--line); margin: -1px 0 0 -1px; min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-card span { color: var(--cyan-light); text-transform: uppercase; letter-spacing: .2em; font-size: 10px; }
.contact-card strong { font-family: var(--serif); font-size: 20px; }

.site-footer { padding: 45px clamp(24px,5vw,76px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-brand { font-family: var(--serif); font-size: 16px; color: var(--white); text-decoration: none; }
.footer-brand span { color: var(--cyan-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; }
.site-footer p { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; padding: 150px clamp(24px,12vw,190px) 100px; background: radial-gradient(circle at 90% 10%, rgba(21,149,170,.16), transparent 30%), var(--black); }
.legal-page h1 { font-size: clamp(42px,6vw,78px); }
.legal-page .legal-box { max-width: 850px; background: var(--panel); border: 1px solid var(--line); padding: 42px; color: var(--muted); }
.legal-page .back-link { display: inline-block; margin-bottom: 40px; color: var(--cyan-light); text-decoration: none; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 820px; }
  .hero-art { justify-self: start; width: min(78vw,620px); }
  .main-nav { position: fixed; inset: 88px 0 auto 0; background: rgba(5,9,11,.98); display: none; flex-direction: column; padding: 40px; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .expertise-layout { grid-template-columns: 1fr; }
  .feature-main { min-height: 470px; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 15px; }
  .site-header { min-height: 74px; padding: 14px 20px; }
  .brand-mark { width: 38px; height: 38px; }
  .main-nav { top: 74px; }
  .hero { min-height: auto; padding: 120px 20px 100px; }
  h1 { font-size: 42px; }
  .hero-art { width: 100%; }
  .hero-glow { width: 360px; height: 360px; right: -100px; }
  .scroll-cue { display: none; }
  .section { padding: 95px 20px; }
  .section-number { right: 20px; font-size: 65px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .facts {
    grid-template-columns: 1fr;
  }

  .facts div,
  .facts div:first-child,
  .facts div:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }
  .feature-card { padding: 30px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-placeholder.tall, .gallery-placeholder.wide { grid-row: auto; grid-column: auto; }
  .voucher-section { grid-template-columns: 1fr; padding: 95px 20px; }
  .voucher-mark { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-section { padding: 95px 20px; }
  .contact-cards { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer p { text-align: center; }
  .footer-links { justify-content: center; }
}

/* Bildplatzhalter für die Konzeptansicht */
.image-label { position: absolute; left: 16px; bottom: 16px; z-index: 5; padding: 7px 10px; background: rgba(5,9,11,.82); border: 1px solid rgba(88,198,210,.32); color: var(--cyan-light); font-size: 9px; line-height: 1.2; text-transform: uppercase; letter-spacing: .16em; }
.hero-image-collage { position: relative; min-height: 600px; overflow: hidden; border: 1px solid rgba(88,198,210,.2); background: #081216; box-shadow: 0 40px 100px rgba(0,0,0,.58); }
.hero-image-collage::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 48% 42%, transparent 0 25%, rgba(5,9,11,.25) 55%, rgba(5,9,11,.85) 100%); pointer-events: none; }
.hero-wolf-image, .hero-tattoo-image { position: absolute; width: 67%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.18) brightness(.72); }
.hero-wolf-image { left: 0; top: 0; object-position: center; }
.hero-tattoo-image { right: 0; bottom: 0; object-position: center; clip-path: polygon(25% 0,100% 0,100% 100%,0 100%); }
.hero-logo { position: absolute; left: 50%; top: 50%; z-index: 3; width: min(48%,260px); transform: translate(-50%,-50%); padding: 8px; background: rgba(5,9,11,.78); }
.hero-logo img { opacity: .88; }
.intro-media { position: relative; min-height: 470px; overflow: hidden; border: 1px solid var(--line); }
.intro-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.12) brightness(.72); }
.intro-copy .intro-lead { margin-top: 0; font-family: var(--serif); font-size: clamp(24px,3vw,42px); line-height: 1.45; color: #d9e3e5; }
.has-feature-image { padding-top: 265px; }
.feature-main.has-feature-image { padding-top: 350px; }
.feature-image { position: absolute; inset: 0 0 auto 0; width: 100%; height: 230px; object-fit: cover; filter: saturate(.62) contrast(1.16) brightness(.67); opacity: .86; }
.feature-main .feature-image { height: 325px; }
.has-feature-image::before { content: ""; position: absolute; left: 0; right: 0; top: 110px; height: 230px; z-index: 1; background: linear-gradient(transparent, rgba(8,18,22,.96)); pointer-events: none; }
.feature-main.has-feature-image::before { top: 160px; height: 250px; }
.has-feature-image > *:not(.feature-image) { position: relative; z-index: 2; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #081216; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.2) brightness(.72); transition: transform .6s ease, filter .6s ease; }
.gallery-item::after { content: "Platzhalter"; position: absolute; right: 12px; top: 12px; padding: 5px 8px; background: rgba(5,9,11,.78); color: var(--cyan-light); font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.gallery-item figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; font-family: var(--serif); font-size: 18px; text-shadow: 0 2px 20px #000; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(.78) contrast(1.17) brightness(.82); }
.voucher-visual { position: relative; justify-self: end; width: min(100%,580px); border: 1px solid rgba(88,198,210,.22); box-shadow: 0 35px 80px rgba(0,0,0,.45); }
.voucher-visual img { width: 100%; min-height: 360px; object-fit: cover; filter: saturate(.7) contrast(1.12) brightness(.72); }
@media (max-width: 1050px) {
  .hero-image-collage { min-height: 520px; }
  .voucher-visual { justify-self: start; margin-top: 50px; }
}
@media (max-width: 700px) {
  .hero-image-collage { min-height: 430px; }
  .hero-logo { width: 45%; }
  .intro-media { min-height: 350px; }
  .has-feature-image, .feature-main.has-feature-image { padding-top: 265px; }
  .feature-main .feature-image, .feature-image { height: 230px; }
  .feature-main.has-feature-image::before, .has-feature-image::before { top: 100px; height: 190px; }
  .voucher-visual img { min-height: 280px; }
}

/* Überarbeiteter Tattoo-Hero und Spezialisierungsbereich */
.hero { grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); }
.hero-copy { position: relative; z-index: 8; }
.hero h1 { font-size: clamp(44px, 5.65vw, 84px); }
.hero-specialties { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-specialties span { padding: 8px 12px; border: 1px solid rgba(88,198,210,.24); background: rgba(8,24,29,.55); color: #cbd8da; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; backdrop-filter: blur(8px); }
.hero-art { width: min(100%, 760px); }
.hero-image-collage { min-height: 670px; border-color: rgba(88,198,210,.28); }
.hero-image-collage::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(5,9,11,.72) 0%, transparent 35%, transparent 70%, rgba(5,9,11,.18) 100%), linear-gradient(0deg, rgba(5,9,11,.75), transparent 40%); pointer-events: none; }
.hero-image-collage::after { z-index: 3; background: radial-gradient(circle at 63% 42%, transparent 0 22%, rgba(5,9,11,.1) 43%, rgba(5,9,11,.65) 100%); }
.hero-wolf-image { width: 50%; opacity: .48; filter: grayscale(.35) saturate(.4) contrast(1.25) brightness(.55); }
.hero-tattoo-image { width: 76%; clip-path: polygon(17% 0,100% 0,100% 100%,0 100%); filter: saturate(.75) contrast(1.22) brightness(.78); }
.hero-tattoo-stamp { position: absolute; z-index: 6; right: 28px; bottom: 34px; min-width: 220px; padding: 17px 20px; border-left: 2px solid var(--cyan-light); background: rgba(5,9,11,.76); backdrop-filter: blur(10px); box-shadow: 0 16px 45px rgba(0,0,0,.35); }
.hero-tattoo-stamp strong { display: block; font-family: var(--serif); text-transform: uppercase; letter-spacing: .14em; font-size: 17px; }
.hero-tattoo-stamp span { color: var(--cyan-light); text-transform: uppercase; letter-spacing: .16em; font-size: 8px; }
.hero-needle-line { position: absolute; z-index: 5; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(88,198,210,.65), transparent); transform: rotate(-7deg); transform-origin: center; }
.hero-needle-line::after { content: ""; position: absolute; right: 16%; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--cyan-light); border-right: 1px solid var(--cyan-light); transform: rotate(45deg); }

.smoke { position: absolute; pointer-events: none; z-index: 1; border-radius: 50%; filter: blur(38px); opacity: .16; mix-blend-mode: screen; will-change: transform; }
.smoke-one { width: 58vw; height: 30vw; right: -10vw; top: 14%; background: radial-gradient(ellipse, rgba(120,180,188,.6), rgba(38,93,102,.2) 42%, transparent 70%); animation: smokeDriftOne 24s ease-in-out infinite alternate; }
.smoke-two { width: 48vw; height: 24vw; right: 2vw; bottom: 4%; background: radial-gradient(ellipse, rgba(111,169,177,.45), rgba(24,70,80,.15) 48%, transparent 73%); animation: smokeDriftTwo 31s ease-in-out infinite alternate; }
.smoke-three { width: 36vw; height: 18vw; left: 30%; top: 42%; background: radial-gradient(ellipse, rgba(85,146,154,.4), transparent 68%); animation: smokeDriftThree 19s ease-in-out infinite alternate; }
@keyframes smokeDriftOne { from { transform: translate3d(-5%, 5%, 0) scale(1) rotate(-4deg); } to { transform: translate3d(8%, -6%, 0) scale(1.18) rotate(5deg); } }
@keyframes smokeDriftTwo { from { transform: translate3d(7%, 4%, 0) scale(1.08); } to { transform: translate3d(-10%, -8%, 0) scale(.92); } }
@keyframes smokeDriftThree { from { transform: translate3d(-10%, 0, 0) scale(.9); } to { transform: translate3d(16%, -16%, 0) scale(1.2); } }

.expertise-section { background: radial-gradient(circle at 10% 20%, rgba(21,149,170,.09), transparent 30%), #071014; }
.expertise-layout { grid-template-columns: minmax(0,1.12fr) minmax(330px,.88fr); gap: 22px; }
.feature-card, .feature-main { min-height: 290px; padding: 0; display: grid; grid-template-columns: 46% 54%; background: linear-gradient(145deg, rgba(12,27,33,.95), rgba(7,16,20,.98)); border: 1px solid rgba(88,198,210,.2); overflow: hidden; }
.feature-main { grid-row: span 2; min-height: 602px; grid-template-columns: 54% 46%; }
.feature-card::after { display: none; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(0,0,0,.3); }
.feature-visual { position: relative; min-height: 100%; overflow: hidden; }
.feature-image, .feature-main .feature-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.2) brightness(.7); opacity: .96; transition: transform .7s ease, filter .7s ease; }
.feature-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, rgba(7,16,20,.9) 100%), linear-gradient(0deg, rgba(7,16,20,.42), transparent 45%); }
.feature-main .feature-visual::after { background: linear-gradient(90deg, transparent 48%, rgba(7,16,20,.94) 100%), linear-gradient(0deg, rgba(7,16,20,.5), transparent 50%); }
.feature-card:hover .feature-image { transform: scale(1.045); filter: saturate(.82) contrast(1.18) brightness(.8); }
.feature-content { position: relative; z-index: 2; padding: 38px 34px; display: flex; flex-direction: column; justify-content: center; }
.feature-main .feature-content { padding: 48px 42px; }
.feature-card h3 { margin: 20px 0 18px; font-size: clamp(24px,2.15vw,36px); }
.feature-main h3 { font-size: clamp(30px,3vw,48px); }
.feature-card p { margin: 0; font-size: 14px; }
.feature-main p { font-size: 16px; }
.feature-lead { margin-bottom: 18px !important; color: var(--cyan-light) !important; font-family: var(--serif); font-size: 19px !important; }
.feature-tag { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 7px 10px; background: rgba(5,9,11,.75); border: 1px solid rgba(88,198,210,.35); color: var(--cyan-light); text-transform: uppercase; letter-spacing: .17em; font-size: 8px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { width: min(92vw,760px); }
  .expertise-layout { grid-template-columns: 1fr; }
  .feature-card, .feature-main { grid-row: auto; min-height: 360px; grid-template-columns: 43% 57%; }
}
@media (max-width: 700px) {
  .hero h1 { font-size: clamp(38px,12vw,54px); }
  .hero-image-collage { min-height: 520px; }
  .hero-wolf-image { display: none; }
  .hero-tattoo-image { width: 100%; clip-path: none; }
  .hero-tattoo-stamp { left: 18px; right: 18px; bottom: 22px; min-width: 0; }
  .smoke { opacity: .11; }
  .feature-card, .feature-main { grid-template-columns: 1fr; min-height: 0; }
  .feature-visual { min-height: 270px; }
  .feature-content, .feature-main .feature-content { padding: 30px 26px 34px; }
  .feature-visual::after, .feature-main .feature-visual::after { background: linear-gradient(0deg, rgba(7,16,20,.92), transparent 58%); }
}
@media (prefers-reduced-motion: reduce) {
  .smoke { animation: none; }
}

/* Sichtbare Korrekturen für Logo, Tattoo-Hero und Nebel */
.brand { display:flex; align-items:center; gap:12px; }
.brand-logo { width:56px; height:56px; object-fit:cover; border:1px solid rgba(88,198,210,.45); box-shadow:0 8px 25px rgba(0,0,0,.35); }
.brand-text { display:flex; flex-direction:column; line-height:1; }
.brand-name { font-size:15px; }
.brand-city { margin-top:7px; letter-spacing:.23em; }

.hero-smoke { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:2; }
.hero .smoke { display:block; opacity:.26; filter:blur(28px); }
.hero .smoke-one { right:-8vw; top:8%; }
.hero .smoke-two { right:3vw; bottom:0; }
.hero .smoke-three { left:36%; top:40%; }
.hero-copy, .hero-art, .scroll-cue { position:relative; z-index:5; }

.hero-image-collage { position:relative; min-height:680px; overflow:hidden; border:1px solid rgba(88,198,210,.35); background:#071014; box-shadow:0 40px 100px rgba(0,0,0,.55); }
.hero-tattoo-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; clip-path:none; filter:saturate(.72) contrast(1.2) brightness(.72); }
.hero-image-shade { position:absolute; inset:0; z-index:2; background:linear-gradient(90deg,rgba(5,9,11,.18),transparent 48%,rgba(5,9,11,.16)),linear-gradient(0deg,rgba(5,9,11,.68),transparent 48%); }
.hero-logo-badge { position:absolute; z-index:4; left:26px; top:26px; width:132px; padding:8px; background:rgba(5,9,11,.82); border:1px solid rgba(88,198,210,.45); backdrop-filter:blur(10px); box-shadow:0 15px 40px rgba(0,0,0,.45); }
.hero-logo-badge img { width:100%; }
.hero-tattoo-stamp { z-index:4; }

.hero::before { background:radial-gradient(circle at 77% 46%,rgba(21,149,170,.24),transparent 34%),linear-gradient(115deg,#05090b 0%,#071116 46%,#09242c 100%); }
.hero h1 { max-width:780px; }

@media (max-width:1050px) {
  .brand-logo { width:48px; height:48px; }
  .hero-image-collage { min-height:610px; }
}
@media (max-width:700px) {
  .brand-logo { width:44px; height:44px; }
  .brand-city { display:none; }
  .hero-image-collage { min-height:500px; }
  .hero-logo-badge { width:104px; left:16px; top:16px; }
  .hero .smoke { opacity:.2; }
}


/* Finale Kombination: Navigation aus neuer Version, Hero exakt aus Version 1 */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  padding: 140px clamp(24px, 7vw, 110px) 100px;
  isolation: isolate;
  overflow: hidden;
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6.4vw, 92px);
}
.hero-art {
  justify-self: end;
  width: min(100%, 590px);
}
.logo-frame {
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg, rgba(88,198,210,.2), rgba(255,255,255,.02));
  box-shadow: 0 40px 100px rgba(0,0,0,.58);
}
.logo-frame::before,
.logo-frame::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--cyan-light);
  opacity: .65;
}
.logo-frame::before {
  left: -10px;
  top: -10px;
  border-left: 1px solid;
  border-top: 1px solid;
}
.logo-frame::after {
  right: -10px;
  bottom: -10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.logo-frame img {
  width: 100%;
  filter: saturate(.85) contrast(1.08) brightness(.8);
}
@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 820px; }
  .hero-art { justify-self: start; width: min(78vw, 620px); }
}
@media (max-width: 700px) {
  .hero { min-height: auto; padding: 120px 20px 100px; }
  .hero h1 { font-size: 42px; }
  .hero-art { width: 100%; }
}
/* Unterseiten */
.site-header-inner { background: rgba(5,9,11,.88); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.main-nav a.active::after { width: 100%; }
.inner-hero { min-height: 620px; padding: 170px clamp(24px,8vw,130px) 90px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,7vw,100px); align-items: center; position: relative; overflow: hidden; isolation: isolate; }
.inner-hero::before { content:""; position:absolute; inset:0; z-index:-2; background: radial-gradient(circle at 78% 48%,rgba(21,149,170,.2),transparent 34%), linear-gradient(115deg,#05090b 0%,#071116 48%,#09242c 100%); }
.inner-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: repeating-linear-gradient(90deg,transparent 0 119px,rgba(255,255,255,.02) 120px); }
.inner-hero-copy { max-width: 820px; }
.inner-hero-copy h1 { font-size: clamp(48px,7vw,92px); margin-bottom: 26px; }
.inner-hero-copy > p:last-child { max-width: 660px; color: #b7c4c7; font-size: 18px; }
.inner-hero-visual { position:relative; min-height:390px; border:1px solid rgba(88,198,210,.3); overflow:hidden; box-shadow:0 35px 90px rgba(0,0,0,.48); }
.inner-hero-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(5,9,11,.62),transparent 52%); }
.inner-hero-visual img { width:100%; height:100%; min-height:390px; object-fit:cover; filter:saturate(.7) contrast(1.15) brightness(.72); }
.story-grid,.voucher-page-grid,.contact-page-grid,.legal-layout { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(40px,7vw,100px); align-items:center; }
.story-image,.voucher-page-image { position:relative; min-height:520px; overflow:hidden; border:1px solid var(--line); }
.story-image img,.voucher-page-image img { width:100%; height:100%; min-height:520px; object-fit:cover; filter:saturate(.72) contrast(1.15) brightness(.78); }
.story-copy h2,.voucher-page-copy h2,.contact-panel h2,.gallery-page-intro h2,.legal-box h2 { font-size:clamp(34px,4.5vw,62px); }
.timeline-section { background:#071014; }
.timeline { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.timeline article { padding:42px; border-right:1px solid var(--line); }
.timeline article:last-child { border-right:0; }
.timeline strong,.voucher-steps span,.legal-aside span { color:var(--cyan-light); font-family:var(--serif); font-size:30px; }
.timeline h3 { margin:24px 0 12px; font-size:24px; }
.timeline p,.gallery-page-intro p,.voucher-page-copy p,.contact-panel p,.legal-box p,.legal-aside p { color:var(--muted); }
.cta-band { padding:70px clamp(24px,8vw,130px); display:flex; justify-content:space-between; align-items:center; gap:30px; background:linear-gradient(120deg,#0a1a20,#0d3440); border-top:1px solid var(--line); }
.cta-band h2 { margin:0; font-size:clamp(30px,4vw,54px); }
.cta-band .eyebrow { margin-bottom:12px; }
.gallery-page-intro { max-width:780px; margin-bottom:45px; }
.gallery-filters { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.gallery-filters button { padding:11px 16px; color:#c8d3d5; background:transparent; border:1px solid var(--line); text-transform:uppercase; letter-spacing:.14em; font-size:9px; cursor:pointer; }
.gallery-filters button.active,.gallery-filters button:hover { border-color:var(--cyan-light); color:var(--cyan-light); }
.gallery-page-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:290px; gap:16px; }
.gallery-card { position:relative; overflow:hidden; border:1px solid var(--line); }
.gallery-card.tall { grid-row:span 2; }
.gallery-card.wide { grid-column:span 2; }
.gallery-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.72) contrast(1.16) brightness(.72); transition:.6s ease; }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(5,9,11,.92),transparent 55%); }
.gallery-card span { position:absolute; left:24px; bottom:22px; z-index:2; }
.gallery-card strong,.gallery-card small { display:block; }
.gallery-card strong { font-family:var(--serif); font-size:23px; }
.gallery-card small { color:var(--cyan-light); text-transform:uppercase; letter-spacing:.17em; font-size:8px; }
.gallery-card:hover img { transform:scale(1.05); filter:saturate(.88) contrast(1.12) brightness(.82); }
.gallery-card.is-hidden { display:none; }
.voucher-page-section { background:radial-gradient(circle at 12% 20%,rgba(21,149,170,.1),transparent 30%),#071014; }
.voucher-steps { display:grid; grid-template-columns:repeat(3,1fr); margin-top:80px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.voucher-steps article { padding:38px; border-right:1px solid var(--line); }
.voucher-steps article:last-child { border-right:0; }
.voucher-steps h3 { margin:20px 0 10px; }
.voucher-steps p { color:var(--muted); }
.contact-page-grid { align-items:stretch; }
.contact-panel,.contact-form-placeholder,.legal-box { padding:clamp(30px,4vw,58px); background:linear-gradient(145deg,rgba(17,34,41,.9),rgba(8,18,22,.96)); border:1px solid var(--line); }
.contact-list { margin-top:38px; border-top:1px solid var(--line); }
.contact-list div { display:flex; justify-content:space-between; gap:20px; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-list span { color:var(--cyan-light); text-transform:uppercase; letter-spacing:.15em; font-size:10px; }
.contact-list strong { font-weight:500; }
.contact-form-placeholder { display:flex; flex-direction:column; }
.contact-form-placeholder h3 { font-size:30px; }
.contact-form-placeholder label { display:grid; gap:8px; margin:10px 0; color:#d9e3e5; font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
.contact-form-placeholder input,.contact-form-placeholder textarea { width:100%; padding:15px; color:var(--white); background:#081116; border:1px solid var(--line); font:inherit; resize:vertical; }
.contact-form-placeholder small { margin-top:18px; color:var(--muted); }
.button-disabled { opacity:.65; cursor:not-allowed; }
.legal-content-section { min-height:520px; }
.legal-layout { align-items:start; grid-template-columns:minmax(220px,.35fr) minmax(0,1fr); }
.legal-aside { position:sticky; top:130px; padding-right:30px; }
.legal-box h3 { margin-top:34px; color:var(--cyan-light); font-size:20px; }
.placeholder-note,.legal-warning { padding:20px 22px; border-left:2px solid var(--cyan-light); background:rgba(21,149,170,.08); }
.legal-warning { margin-top:40px; color:#d7e1e3 !important; }
.site-footer { gap:24px; flex-wrap:wrap; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 24px; }
.footer-links a { text-decoration:none; color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.12em; }
.footer-links a:hover { color:var(--cyan-light); }

@media (max-width: 900px) {
  .inner-hero,.story-grid,.voucher-page-grid,.contact-page-grid,.legal-layout { grid-template-columns:1fr; }
  .inner-hero { padding-top:150px; min-height:auto; }
  .timeline,.voucher-steps { grid-template-columns:1fr; }
  .timeline article,.voucher-steps article { border-right:0; border-bottom:1px solid var(--line); }
  .timeline article:last-child,.voucher-steps article:last-child { border-bottom:0; }
  .gallery-page-grid { grid-template-columns:repeat(2,1fr); }
  .legal-aside { position:static; }
}
@media (max-width: 700px) {
  .inner-hero-visual,.inner-hero-visual img,.story-image,.story-image img,.voucher-page-image,.voucher-page-image img { min-height:340px; }
  .gallery-page-grid { grid-template-columns:1fr; grid-auto-rows:320px; }
  .gallery-card.tall,.gallery-card.wide { grid-row:auto; grid-column:auto; }
  .cta-band { align-items:flex-start; flex-direction:column; }
  .site-footer { align-items:flex-start; }
  .footer-links { justify-content:flex-start; }
}


/* Dynamische Galerie */
.gallery-category-grid a { color:inherit; text-decoration:none; }
.gallery-all-link { margin-top:38px; text-align:center; }
.gallery-category-overview { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.category-tile { position:relative; min-height:340px; overflow:hidden; border:1px solid var(--line); text-decoration:none; color:var(--white); }
.category-tile:nth-child(1),.category-tile:nth-child(4) { grid-column:span 2; }
.category-tile img { width:100%; height:100%; min-height:340px; object-fit:cover; filter:saturate(.7) contrast(1.15) brightness(.6); transition:transform .65s ease,filter .65s ease; }
.category-tile::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(4,8,10,.94),transparent 62%); }
.category-tile span { position:absolute; z-index:2; left:28px; right:28px; bottom:26px; }
.category-tile strong,.category-tile small { display:block; }
.category-tile strong { font:600 clamp(22px,2.5vw,34px)/1.2 var(--serif); }
.category-tile small { margin-top:8px; color:var(--cyan-light); text-transform:uppercase; letter-spacing:.18em; font-size:9px; }
.category-tile:hover img { transform:scale(1.045); filter:saturate(.88) contrast(1.12) brightness(.74); }
.gallery-toolbar { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:34px; padding-bottom:18px; border-bottom:1px solid var(--line); color:var(--muted); }
.gallery-back { color:var(--cyan-light); text-decoration:none; text-transform:uppercase; letter-spacing:.14em; font-size:10px; }
.masonry-gallery { columns:3 320px; column-gap:18px; }
.masonry-item { display:block; break-inside:avoid; margin:0 0 18px; overflow:hidden; border:1px solid var(--line); cursor:zoom-in; background:#071014; }
.masonry-item img { display:block; width:100%; height:auto; transition:transform .55s ease,filter .55s ease; filter:saturate(.78) contrast(1.1) brightness(.82); }
.masonry-item:hover img { transform:scale(1.025); filter:saturate(.95) contrast(1.08) brightness(.94); }
.gallery-empty { max-width:780px; padding:clamp(34px,6vw,70px); border:1px solid var(--line); background:rgba(10,26,32,.72); }
.gallery-empty h2 { font-size:clamp(32px,5vw,58px); }
.gallery-empty p { color:var(--muted); }
.gallery-empty code { color:var(--cyan-light); }
.gallery-lightbox { position:fixed; inset:0; z-index:1000; display:none; align-items:center; justify-content:center; background:rgba(2,5,7,.96); backdrop-filter:blur(14px); }
.gallery-lightbox.is-open { display:flex; }
.gallery-lightbox figure { margin:0; width:min(90vw,1500px); height:88vh; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.gallery-lightbox img { display:block; max-width:100%; max-height:calc(88vh - 38px); width:auto; height:auto; object-fit:contain; box-shadow:0 30px 100px rgba(0,0,0,.65); }
.gallery-lightbox figcaption { min-height:38px; padding-top:13px; color:#b8c5c8; font-size:11px; letter-spacing:.14em; text-transform:uppercase; }
.lightbox-close,.lightbox-prev,.lightbox-next { position:absolute; z-index:2; color:#fff; background:rgba(8,18,22,.7); border:1px solid rgba(88,198,210,.4); cursor:pointer; transition:.25s ease; }
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover { color:var(--cyan-light); border-color:var(--cyan-light); }
.lightbox-close { top:24px; right:24px; width:48px; height:48px; font-size:32px; line-height:1; }
.lightbox-prev,.lightbox-next { top:50%; width:52px; height:72px; transform:translateY(-50%); font-size:46px; line-height:1; }
.lightbox-prev { left:24px; }
.lightbox-next { right:24px; }
body.lightbox-open { overflow:hidden; }
@media (max-width:900px) {
  .gallery-category-overview { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .category-tile:nth-child(1),.category-tile:nth-child(4) { grid-column:auto; }
  .masonry-gallery { columns:2 260px; }
}
@media (max-width:620px) {
  .gallery-category-overview { grid-template-columns:1fr; }
  .category-tile,.category-tile img { min-height:280px; }
  .masonry-gallery { columns:1; }
  .lightbox-prev,.lightbox-next { width:44px; height:58px; font-size:38px; background:rgba(8,18,22,.82); }
  .lightbox-prev { left:8px; }
  .lightbox-next { right:8px; }
  .lightbox-close { top:12px; right:12px; }
}

.legal-box h2 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.legal-box h2 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hero {
  position: relative;
  min-height: clamp(760px, 92vh, 1050px);
  display: block;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

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

  width: min(100% - 96px, 1720px);
  min-height: clamp(760px, 92vh, 1050px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(460px, 0.85fr);
  align-items: center;
  gap: clamp(70px, 7vw, 150px);

  padding-block: 130px 110px;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 4.3vw, 6rem);
  line-height: 1.08;
}

.hero-intro {
  max-width: 620px;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-frame {
  width: clamp(430px, 32vw, 620px);
  max-width: 100%;
}

/* =========================================================
   FENRIR INK – FINALE LAYOUT-KORREKTUR
   Einheitliche Inhaltskante für Hero und alle Hauptbereiche
   ========================================================= */

:root {
  --page-max-width: 1800px;
  --page-gutter: max(
    clamp(24px, 6vw, 130px),
    calc((100vw - var(--page-max-width)) / 2)
  );
}

/* Hero-Hintergrund bleibt vollflächig */
.hero {
  position: relative;
  display: block;
  min-height: clamp(760px, 92vh, 1050px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

/* Hero-Inhalt sitzt auf derselben Kante wie die Sections */
.hero-inner {
  position: relative;
  z-index: 5;
  width: auto;
  min-height: clamp(760px, 92vh, 1050px);
  margin: 0;
  padding: 130px var(--page-gutter) 110px;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .85fr);
  align-items: center;
  gap: clamp(60px, 6vw, 120px);
}

.hero-copy {
  width: auto;
  max-width: 780px;
  margin: 0;
  padding: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 4.3vw, 6rem);
  line-height: 1.08;
}

.hero-intro {
  max-width: 620px;
}

.hero-art {
  width: 100%;
  max-width: 590px;
  margin: 0;
  padding: 0;
  justify-self: end;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-frame {
  width: 100%;
  max-width: 590px;
}

/* Alle normalen Sections beginnen an derselben Kante */
.section {
  padding: 130px var(--page-gutter);
}

/* Nummerierung an dieselbe rechte Inhaltskante setzen */
.section-number {
  right: var(--page-gutter);
}

/* Vollflächige Sonderbereiche behalten ihren Hintergrund,
   der Inhalt beginnt aber ebenfalls bündig */
.voucher-section {
  padding: 120px var(--page-gutter);
}

.contact-section {
  padding: 120px var(--page-gutter);
}

.inner-hero {
  padding: 170px var(--page-gutter) 90px;
}

.cta-band {
  padding: 70px var(--page-gutter);
}

/* Scroll-Hinweis ebenfalls an der Inhaltskante */
.scroll-cue {
  left: var(--page-gutter);
}

/* Tablet */
@media (max-width: 1050px) {
  :root {
    --page-gutter: clamp(24px, 5vw, 64px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 140px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-art {
    justify-self: start;
    width: min(100%, 620px);
  }
}

/* Mobil */
@media (max-width: 700px) {
  :root {
    --page-gutter: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px var(--page-gutter) 90px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-art {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 95px var(--page-gutter);
  }

  .voucher-section,
  .contact-section {
    padding: 95px var(--page-gutter);
  }

  .inner-hero {
    padding: 140px var(--page-gutter) 80px;
  }

  .cta-band {
    padding: 60px var(--page-gutter);
  }
}

.legal-layout-full {
  grid-template-columns: minmax(0, 1fr);
}

.legal-layout-full .legal-box {
  width: 100%;
  max-width: none;
  min-width: 0;
}


/* =========================================================
   Galerie – alle Arbeiten mit Filter
   ========================================================= */

.gallery-hero {
  position: relative;
  padding: 150px var(--page-gutter) 70px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(21, 149, 170, 0.18),
      transparent 34%
    ),
    linear-gradient(
      115deg,
      #05090b 0%,
      #071116 50%,
      #09242c 100%
    );
  border-bottom: 1px solid var(--line);
}

.gallery-hero-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
}

.gallery-hero-copy {
  max-width: 820px;
}

.gallery-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 80px);
}

.gallery-hero-copy > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.gallery-hero-image {
  height: clamp(250px, 28vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(88, 198, 210, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(0.75)
    contrast(1.14)
    brightness(0.76);
}

.gallery-page-section {
  padding: 75px var(--page-gutter) 120px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(21, 149, 170, 0.07),
      transparent 28%
    ),
    var(--black);
}

.gallery-page-inner {
  width: 100%;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.gallery-result-count {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
}

.gallery-result-count span {
  color: var(--cyan-light);
}

.gallery-filter-bar {
  position: sticky;
  top: 88px;
  z-index: 20;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 32px;
  padding: 14px 0;

  background: rgba(5, 9, 11, 0.91);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  min-height: 42px;
  padding: 10px 15px;

  color: #c6d0d3;
  background: transparent;
  border: 1px solid rgba(88, 198, 210, 0.17);

  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  cursor: pointer;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.gallery-filter-button span {
  color: var(--muted);
}

.gallery-filter-button:hover,
.gallery-filter-button.active {
  color: var(--cyan-light);
  border-color: var(--cyan-light);
  background: rgba(21, 149, 170, 0.08);
}

.gallery-filter-button.active span {
  color: var(--cyan-light);
}

.masonry-gallery {
  columns: 4 280px;
  column-gap: 16px;
}

.masonry-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;

  color: inherit;
  background: #071014;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;

  filter:
    saturate(0.77)
    contrast(1.12)
    brightness(0.82);

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(4, 8, 10, 0.72),
      transparent 32%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.masonry-item-category {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 13px;

  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 8px;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.masonry-item:hover img {
  transform: scale(1.025);
  filter:
    saturate(0.95)
    contrast(1.08)
    brightness(0.93);
}

.masonry-item:hover::after {
  opacity: 1;
}

.masonry-item:hover .masonry-item-category {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item.is-hidden {
  display: none;
}

@media (max-width: 1050px) {
  .gallery-hero-inner {
    grid-template-columns: 1fr 0.7fr;
    gap: 45px;
  }

  .masonry-gallery {
    columns: 3 240px;
  }
}

@media (max-width: 800px) {
  .gallery-hero {
    padding-top: 130px;
  }

  .gallery-hero-inner {
    grid-template-columns: 1fr;
  }

  .gallery-hero-image {
    height: 330px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-filter-bar {
    top: 74px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .gallery-filter-button {
    flex: 0 0 auto;
  }

  .masonry-gallery {
    columns: 2 220px;
  }
}

@media (max-width: 560px) {
  .gallery-hero {
    padding:
      115px var(--page-gutter)
      50px;
  }

  .gallery-hero-copy h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .gallery-hero-image {
    height: 280px;
  }

  .gallery-page-section {
    padding:
      60px var(--page-gutter)
      90px;
  }

  .masonry-gallery {
    columns: 1;
  }
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-inner-hero {
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr);
}

.faq-page-section {
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(21, 149, 170, 0.08),
      transparent 30%
    ),
    #071014;
}

.faq-layout,
.faq-home-layout {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.65fr)
    minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(60px, 8vw, 140px);
}

.faq-intro,
.faq-home-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2,
.faq-home-intro h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}

.faq-intro > p:not(.eyebrow),
.faq-home-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.faq-intro .button,
.faq-home-intro .button {
  margin-top: 26px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 94px;
  padding: 26px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.35;
}

.faq-question i {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(88, 198, 210, 0.32);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--cyan-light);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover {
  color: var(--cyan-light);
}

.faq-question:hover i {
  border-color: var(--cyan-light);
  background: rgba(21, 149, 170, 0.08);
}

.faq-question[aria-expanded="true"] i {
  border-color: var(--cyan-light);
  background: rgba(21, 149, 170, 0.1);
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 820px;
  margin: 0;
  padding: 0 60px 0 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 30px;
}

.faq-home-section {
  background: #071014;
}

@media (max-width: 900px) {
  .faq-layout,
  .faq-home-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro,
  .faq-home-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .faq-question {
    min-height: 80px;
    padding: 22px 0;
    gap: 18px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-question i {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding-right: 0;
  }
}

/* =========================================================
   Kundenstimmen – vorbereiteter Bereich
   ========================================================= */
.testimonials-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(21,149,170,.11), transparent 34%),
    #081216;
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.65fr);
  align-items: end;
  gap: clamp(40px,7vw,110px);
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(35px,5vw,68px);
}

.testimonials-heading > p {
  margin: 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-card {
  position: relative;
  min-height: 310px;
  padding: 48px 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.testimonial-card:last-child { border-right: 0; }

.testimonial-mark {
  position: absolute;
  right: 24px;
  top: 4px;
  color: rgba(88,198,210,.1);
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
}

.testimonial-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 45px;
  color: #d7e0e2;
  font-family: var(--serif);
  font-size: clamp(19px,1.6vw,25px);
  line-height: 1.55;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-card footer strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.testimonial-card footer span {
  color: var(--cyan-light);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

@media (max-width: 900px) {
  .testimonials-heading { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .testimonial-card:last-child { border-bottom: 0; }
}


.contact-card{
    text-decoration:none;
    color:inherit;
}

.contact-card{
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.contact-card:hover{
    transform:translateY(-6px);

    border-color:var(--cyan-light);

    box-shadow:
        0 18px 40px rgba(0,0,0,.35);
}

.contact-card small{
    display:block;
    margin-top:14px;
    color:var(--muted);
    font-size:.85rem;
}

.contact-card:hover small{
    color:var(--cyan-light);
}


/* manrope-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/manrope-v20-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/manrope-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/manrope-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/manrope-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/manrope-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/manrope-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* cinzel-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cinzel-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cinzel-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cinzel-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cinzel-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cinzel-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cinzel-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cinzel-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/cinzel-v26-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cinzel-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/cinzel-v26-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px var(--page-gutter) 100px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(88, 198, 210, .13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #05090b 0%,
            #071116 55%,
            #09242c 100%
        );
}

.error-page::before {
    content: "404";
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Cinzel", serif;
    font-size: clamp(10rem, 25vw, 28rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, .025);
    pointer-events: none;
}

.error-page-inner {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.error-page h1 {
    margin: 18px 0 24px;
    font-family: "Cinzel", serif;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: 1.05;
}

.error-page p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.8;
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

@media (max-width: 700px) {
    .error-page {
        padding-top: 130px;
    }

    .error-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-page-actions .button {
        text-align: center;
    }
}

      .error-page .reveal {
         opacity: 1;
          transform: none;
}


@media (prefers-reduced-motion: reduce){

    *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }

}


.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;

  padding: 12px 18px;
  background: #071116;
  color: #ffffff;
  border: 2px solid var(--cyan-light);
  border-radius: 6px;

  font-weight: 600;
  text-decoration: none;

  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* =========================================================
   BARRIEREFREIHEIT & LESBARKEIT – FINALE KORREKTUREN
   ========================================================= */

/* Kleine Beschriftungen auf eine gut lesbare Mindestgröße anheben */
.brand-city,
.hero-tattoo-stamp span,
.feature-tag,
.gallery-item::after,
.gallery-card small,
.masonry-item-category,
.testimonial-card footer span {
  font-size: 0.75rem; /* 12px */
}

.main-nav a,
.button,
.eyebrow,
.scroll-cue,
.facts span,
.card-index,
.process-step span,
.contact-card span,
.site-footer,
.footer-links a,
.image-label,
.hero-specialties span,
.gallery-filters button,
.gallery-result-count,
.gallery-filter-button,
.contact-list span,
.category-tile small,
.gallery-back,
.gallery-lightbox figcaption {
  font-size: 0.8125rem; /* 13px */
}

/* Navigation und wichtige Schaltflächen etwas größer */
.main-nav a,
.button {
  font-size: 0.875rem; /* 14px */
}

/* Sehr große Laufweiten bei kleinen Texten etwas reduzieren */
.brand-city,
.eyebrow,
.scroll-cue,
.facts span,
.process-step span,
.contact-card span,
.footer-links a,
.gallery-filter-button,
.gallery-result-count,
.gallery-back,
.category-tile small,
.masonry-item-category {
  letter-spacing: 0.12em;
}

/* Deutlich sichtbarer Tastaturfokus */
:focus-visible {
  outline: 3px solid var(--cyan-light);
  outline-offset: 4px;
}

/* Ziel des Skip-Links nicht unter dem festen Header verstecken */
#main-content {
  scroll-margin-top: 110px;
}

/* Skip-Link ist nur beim Tastaturfokus sichtbar */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  padding: 12px 18px;
  color: #ffffff;
  background: #071116;
  border: 2px solid var(--cyan-light);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* Ausreichend große Bedienflächen, ohne normale Textlinks aufzublähen */
.menu-toggle,
.main-nav a,
.button,
.gallery-filter-button,
.gallery-filters button,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.faq-question,
.contact-card,
.footer-links a {
  min-height: 44px;
}

.main-nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
}

/* Hover-Effekte auch bei Tastaturbedienung anzeigen */
.main-nav a:focus-visible::after {
  width: 100%;
}

.button-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 17px 45px rgba(21,149,170,.32);
}

.button-ghost:focus-visible,
.gallery-filter-button:focus-visible,
.gallery-filters button:focus-visible {
  color: var(--cyan-light);
  border-color: var(--cyan-light);
}

.contact-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--cyan-light);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* FAQ-Schaltfläche leichter bedienbar */
.faq-question i {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}

/* Etwas besserer Kontrast für sekundären Text */
:root {
  --muted: #b5c2c7;
}

/* Links innerhalb längerer Textbereiche nicht nur über Farbe kennzeichnen */
.legal-box p a,
.contact-panel p a,
.faq-answer p a,
.intro-copy p a,
.section-note a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

/* Bewegungen bei entsprechender Systemeinstellung stark reduzieren */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .main-nav a,
  .button,
  .eyebrow,
  .site-footer,
  .footer-links a,
  .gallery-filter-button {
    font-size: 0.875rem;
  }
}

.inner-hero-copy h1 {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;

  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: normal;
}