/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(frontend)/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --black: #13100c;
  --panel: #1c160f;
  --brown: #463228;
  --copper: #e28754;
  --copper-deep: #c96b3c;
  --sand: #e2c5aa;
  --clay: #c6a58d;
  --cream: #f2eadd;
  --muted: #a99681;
  --maxw: 1240px;
  --read: 760px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 32px;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
h1,
h2,
h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.32;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--copper);
  color: var(--black);
  font-weight: 600;
  font-family: 'Inter';
  padding: 14px 30px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition:
    transform 0.2s,
    background 0.25s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn--line {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242, 234, 221, 0.4);
}
.btn--line:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}
.muted {
  color: var(--muted);
}

.head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 38px;
}
.head h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-top: 14px;
}
.head p {
  color: rgba(242, 234, 221, 0.78);
  margin-top: 14px;
  font-weight: 300;
}

header.site {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition:
    background 0.4s,
    border-color 0.4s,
    -webkit-backdrop-filter 0.4s;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-color 0.4s;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-color 0.4s,
    -webkit-backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
header.site.solid {
  background: rgba(19, 16, 12, 0.82);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom-color: rgba(242, 234, 221, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav__logo img {
  height: 46px;
}
.nav__links {
  display: flex;
  gap: 34px;
}
.nav__links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 234, 221, 0.82);
}
.nav__links a:hover {
  color: var(--copper);
}
.nav__right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kb 20s ease-out forwards;
}
@keyframes kb {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 120% at 50% 40%, rgba(15, 12, 8, 0.55), rgba(15, 12, 8, 0.9));
}
.hero__c {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  margin: 22px 0 22px;
}
.hero h1 span {
  color: var(--copper);
}
.hero__sub {
  font-size: 1.16rem;
  color: rgba(242, 234, 221, 0.9);
  max-width: 46ch;
  margin: 0 auto 34px;
  font-weight: 300;
}
.hero__sub b {
  color: var(--cream);
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.scrollcue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker {
  background: var(--copper);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}
.ticker__track {
  display: inline-flex;
  gap: 46px;
  padding: 13px 0;
  animation: marq 30s linear infinite;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 46px;
}
.ticker__track span::after {
  content: '✦';
  opacity: 0.5;
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: 78px 0;
}

.story {
  background: var(--panel);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-gap: 54px;
  gap: 54px;
  align-items: center;
}
.story p {
  color: rgba(242, 234, 221, 0.8);
  margin-bottom: 18px;
  font-weight: 300;
}
.story__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 14px;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__media .frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(226, 135, 84, 0.4);
  border-radius: 8px;
  pointer-events: none;
}
.stats {
  display: flex;
  gap: 44px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.stats div {
  text-align: center;
}
.stats div b {
  font-family: 'Anton';
  font-size: 2.2rem;
  color: var(--copper);
  display: block;
  font-weight: 400;
}
.stats div span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.consult {
  text-align: center;
  border-block: 1px solid rgba(242, 234, 221, 0.1);
}
.consult p {
  color: rgba(242, 234, 221, 0.78);
  max-width: 50ch;
  margin: 18px auto 14px;
  font-weight: 300;
}
.consult .phone {
  font-family: 'Anton';
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--copper);
  display: inline-block;
  margin: 10px 0 28px;
  letter-spacing: 0.02em;
}
.consult .phone:hover {
  color: var(--cream);
}

.artists__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  gap: 30px;
}
.artist {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 14px;
  display: block;
}
.artist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.artist:hover img {
  transform: scale(1.05);
}
.artist::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 8, 0.95) 8%, transparent 60%);
}
.artist__c {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 34px;
  text-align: center;
}
.artist__c .role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.artist__c h3 {
  font-size: 2.2rem;
}
.artist__c p {
  color: rgba(242, 234, 221, 0.82);
  font-size: 0.95rem;
  margin: 10px auto 16px;
  max-width: 40ch;
  font-weight: 300;
}
.artist__c .link {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 3px;
}
.artist__c .link:hover {
  color: var(--copper);
}

.work {
  background: var(--panel);
}
.work__masonry {
  columns: 3;
  column-gap: 16px;
}
.work__item {
  page-break-inside: avoid;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
}
.work__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.work__item:hover img {
  transform: scale(1.04);
}

.serv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0;
  gap: 0;
  border-top: 1px solid rgba(242, 234, 221, 0.12);
}
.serv {
  padding: 40px 28px;
  border-bottom: 1px solid rgba(242, 234, 221, 0.12);
  border-right: 1px solid rgba(242, 234, 221, 0.12);
  text-align: center;
}
.serv:nth-child(3n) {
  border-right: none;
}
.serv .n {
  font-family: 'Anton';
  color: var(--copper);
  font-size: 1.1rem;
}
.serv h3 {
  font-size: 1.5rem;
  margin: 14px 0 12px;
}
.serv p {
  color: rgba(242, 234, 221, 0.76);
  font-size: 0.95rem;
  font-weight: 300;
}

.reviews {
  background: var(--panel);
}
.rev-carousel {
  position: relative;
}
.rev-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 4px 32px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rev-scroller::-webkit-scrollbar {
  display: none;
}
.rev {
  scroll-snap-align: start;
  flex: 0 0 clamp(270px, 33%, 380px);
  border: 1px solid rgba(242, 234, 221, 0.16);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  background: rgba(242, 234, 221, 0.02);
}
.rev .stars {
  color: var(--copper);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.rev .stars--empty {
  opacity: 0.28;
}
.rev p {
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
}
.rev cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(242, 234, 221, 0.2);
  background: rgba(19, 16, 12, 0.72);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    opacity 0.2s;
}
.rev-arrow:hover {
  background: var(--copper);
  color: var(--black);
}
.rev-arrow--left {
  left: 18px;
}
.rev-arrow--right {
  right: 18px;
}
.rev-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 7, 0.82);
  z-index: 1;
}
.contact .wrap {
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}
.contact h2 span {
  color: var(--copper);
}
.contact p {
  color: rgba(242, 234, 221, 0.84);
  max-width: 46ch;
  margin: 20px auto 32px;
  font-weight: 300;
}

footer.site {
  background: var(--black);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(242, 234, 221, 0.08);
}
.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 50px;
  gap: 50px;
}
.foot img {
  height: 54px;
  margin-bottom: 18px;
}
.foot h4 {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.foot p,
.foot a {
  color: rgba(242, 234, 221, 0.7);
  font-size: 0.9rem;
  line-height: 2;
}
.foot a:hover {
  color: var(--copper);
}
.copyright {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 234, 221, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .burger {
    display: block;
  }
  .story__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .artists__grid,
  .serv__grid,
  .foot {
    grid-template-columns: 1fr;
  }
  .serv {
    border-right: none;
  }
  .work__masonry {
    columns: 2;
  }
  .rev-arrow {
    display: none;
  }
  .rev {
    flex-basis: 82%;
  }
  section {
    padding: 58px 0;
  }
}
@media (max-width: 560px) {
  .work__masonry {
    columns: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
}

/* ============================================================
   UNTERSEITEN (Pages / Artists / Kontakt) — dunkles Design
   ============================================================ */

/* Kopf-Band jeder Unterseite: klärt den fixierten Header, zentriert. */
.pagehero {
  position: relative;
  padding: 168px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(242, 234, 221, 0.08);
}
.pagehero .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.pagehero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 18ch;
  margin: 0 auto;
}
.pagehero h1 span {
  color: var(--copper);
}
.pagehero .lead {
  color: rgba(242, 234, 221, 0.8);
  max-width: 60ch;
  margin: 22px auto 0;
  font-size: 1.16rem;
  font-weight: 300;
}
.crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.crumbs a:hover {
  color: var(--copper);
}
.crumbs .sep {
  opacity: 0.4;
  margin: 0 0.5em;
}

/* Lesbarer Fliesstext-Body (Prose) */
.prose {
  max-width: var(--read);
  margin-inline: auto;
  font-weight: 300;
  color: rgba(242, 234, 221, 0.82);
  font-size: 1.08rem;
}
.prose > *:first-child {
  margin-top: 0;
}
.prose p {
  margin: 0 0 22px;
  line-height: 1.8;
}
.prose h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--cream);
  margin: 52px 0 18px;
}
.prose h3 {
  font-size: 1.25rem;
  color: var(--copper);
  margin: 40px 0 14px;
  letter-spacing: 0.04em;
}
.prose h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  margin: 30px 0 10px;
}
.prose a {
  color: var(--copper);
  border-bottom: 1px solid rgba(226, 135, 84, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.prose a:hover {
  color: var(--cream);
  border-color: var(--cream);
}
.prose strong,
.prose b {
  color: var(--cream);
  font-weight: 500;
}
.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}
.prose ol {
  counter-reset: li;
}
.prose li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: var(--copper);
}
.prose ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
}
.prose blockquote {
  border-left: 3px solid var(--copper);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--cream);
  font-weight: 400;
}
.prose img {
  border-radius: 12px;
  margin: 32px 0;
}
.prose hr {
  border: none;
  border-top: 1px solid rgba(242, 234, 221, 0.12);
  margin: 44px 0;
}

/* Panel-Sektion mit Fliesstext (abgesetzt) */
.section--panel {
  background: var(--panel);
}

/* ---- Artist-Seite: Vollbild-Hero ---- */
.artist-hero-full {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 0 70px;
}
.artist-hero-full__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.artist-hero-full__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kb 20s ease-out forwards;
}
.artist-hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 120% at 50% 35%, rgba(15, 12, 8, 0.5), rgba(15, 12, 8, 0.92));
}
.artist-hero-full__c {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.artist-hero-full .crumbs {
  margin-bottom: 18px;
}
.artist-hero-full .role {
  display: block;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  margin-bottom: 10px;
}
.artist-hero-full h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin: 0;
}
.artist-styles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 6px;
}
.artist-styles span {
  border: 1px solid rgba(242, 234, 221, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 234, 221, 0.9);
  background: rgba(19, 16, 12, 0.35);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.artist-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Galerie (Tattoo-Portfolio) — Masonry */
.gallery__masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  page-break-inside: avoid;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.gallery__item:hover img {
  transform: scale(1.04);
}

/* ---- Kontakt-Seite ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 54px;
  gap: 54px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 30px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(242, 234, 221, 0.14);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.25s, transform 0.2s;
}
.contact-card:hover {
  border-color: rgba(226, 135, 84, 0.5);
  transform: translateY(-2px);
}
.contact-card .ci {
  font-size: 1.4rem;
  line-height: 1;
}
.contact-card .cl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card .cv {
  color: var(--cream);
  font-size: 1.02rem;
}
.contact-meta {
  color: rgba(242, 234, 221, 0.7);
  font-size: 0.95rem;
  margin-top: 6px;
}
.contact-meta b {
  color: var(--cream);
  font-weight: 500;
}

/* Formular */
.form {
  border: 1px solid rgba(242, 234, 221, 0.14);
  border-radius: 16px;
  padding: 32px;
  background: rgba(242, 234, 221, 0.02);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(19, 16, 12, 0.6);
  border: 1px solid rgba(242, 234, 221, 0.18);
  border-radius: 10px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(169, 150, 129, 0.6);
}
.form button[type='submit'] {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.form__msg {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.form__msg--ok {
  background: rgba(226, 135, 84, 0.14);
  border: 1px solid rgba(226, 135, 84, 0.4);
  color: var(--cream);
}
.form__msg--err {
  background: rgba(201, 76, 60, 0.14);
  border: 1px solid rgba(201, 76, 60, 0.45);
  color: #f4c9c2;
}

/* CTA-Band (wie Startseite Kontakt-Sektion, wiederverwendbar) */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 7, 0.82);
  z-index: 1;
}
.cta-band .wrap {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.cta-band h2 span {
  color: var(--copper);
}
.cta-band p {
  color: rgba(242, 234, 221, 0.84);
  max-width: 46ch;
  margin: 18px auto 30px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .artist-hero-full {
    min-height: 66svh;
    padding: 120px 0 56px;
  }
  .gallery__masonry {
    columns: 2;
  }
  .pagehero {
    padding: 132px 0 48px;
  }
}
@media (max-width: 560px) {
  .gallery__masonry {
    columns: 1;
  }
}

