/* =========================
            style.css
   ========================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg: #0f0f10;
  --ink: #0e0e0f;
  --paper: #ffffff;
  --text: #e8e8e8;
  --muted: #bdbdbd;
  --muted-2: #a6a6a6;
  --copper: #b87333;
  --graphite: #121213;
  --btn-dark: #161617;
  --btn-glow: rgba(255, 255, 255, .06);

  /* Typo / Sizing */
  --max: clamp(1000px, 86vw, 1600px);
  --header-h: clamp(54px, 6.2vh, 68px);
  --fs-base: clamp(15px, 1.05vw, 18px);
  --fs-small: clamp(12px, .85vw, 14px);
  --fs-h1: clamp(36px, 6vw, 92px);
  --fs-h2: clamp(26px, 3.2vw, 48px);
  --fs-lead: clamp(17px, 1.3vw, 21px);

  /* Spacing */
  --space-1: clamp(8px, .8vw, 14px);
  --space-2: clamp(12px, 1.2vw, 20px);
  --space-3: clamp(18px, 1.8vw, 28px);
  --space-4: clamp(24px, 2.4vw, 40px);
  --radius: 22px;

  /* Hero-Typo */
  --hero-h1: clamp(58px, 8.5vw, 120px);
  --hero-sub: clamp(40px, 7.7vw, 90px);
  --sub-indent: 1.55ch;

  /* Links/Focus */
  --link: #e9e9e9;
  --link-muted: #d6d6d6;
  --link-hover: #fff;
  --link-underline: rgba(255, 255, 255, .25);
  --focus: #b87333;

  /* Heading Gradient */
  --heading-gradient: linear-gradient(180deg, #fff 0%, #ececec 28%, #cda071 60%, #b87333 100%);
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-v20-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-v20-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-v20-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-v38-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-v38-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-v38-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-v38-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brotherhood Script";
  src: url("fonts/BrotherhoodScript.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset / Base ---------- */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, Noto Sans;
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

::selection {
  background: rgba(184, 115, 51, .45);
  color: #fff
}

/* Body Copy */
p {
  margin: 0 0 .9em;
  color: #e2e2e2
}

p+p {
  margin-top: .35em
}

.section p {
  max-width: 70ch
}

.lead,
.sub {
  font-size: var(--fs-lead);
  color: #f0f0f0;
  line-height: 1.6
}

.kicker {
  color: #f3f3f3;
  letter-spacing: .02em
}

em,
strong {
  color: #fff
}

/* Lists */
ul {
  padding-left: 1.15em;
  margin: .6em 0 0
}

ul li {
  margin: .25em 0;
  color: #dcdcdc
}

ul li::marker {
  color: var(--copper)
}

/* Globale Kupfer-Bullets */

/* ---------- Links ---------- */
a:not(.btn) {
  color: var(--link);
  text-decoration: none;
  position: relative;
  transition: color .15s ease;
}

a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  opacity: .6;
  transform: scaleX(.9);
  transition: transform .2s ease, opacity .2s ease;
}

a:not(.btn):hover {
  color: var(--link-hover)
}

a:not(.btn):hover::after {
  opacity: 1;
  transform: scaleX(1)
}

a:visited:not(.btn) {
  color: var(--link)
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 115, 51, .35);
  border-radius: 6px
}

.card a:not(.btn),
.site-footer a:not(.btn) {
  color: var(--link-muted)
}

.card a:not(.btn):hover,
.site-footer a:not(.btn):hover {
  color: var(--link-hover)
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  background: #0f0f10 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s ease, box-shadow .25s ease, height .2s ease;
}

.site-header.scrolled {
  background: #0f0f10 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28)
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(14px, 2vw, 24px)
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 10px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  margin-right: auto
}

.logo {
  height: clamp(30px, 3.8vh, 42px)
}

.brand-title {
  font-family: Fraunces, serif;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 20px)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px)
}

.nav-links a {
  color: #eaeaea;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .07)
}

.header-cta {
  background: linear-gradient(180deg, #1b1b1d 0%, #121213 100%);
  color: #fff;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700;
  box-shadow: inset 0 1px 0 var(--btn-glow), 0 8px 18px rgba(0, 0, 0, .25);
  transition: transform .07s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 22px rgba(0, 0, 0, .35)
}

.header-cta:active {
  transform: translateY(1px)
}

.header-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 115, 51, .35)
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 18px;
  line-height: 1
}

.mobile-menu {
  display: none
}

.mobile-menu[hidden] {
  display: none !important
}

@media (max-width:860px) {
  .nav-links {
    display: none
  }

  .menu-toggle {
    display: inline-flex
  }

  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(20, 20, 21, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 16px;
    z-index: 40;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 6px;
    border-radius: 8px
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, .07)
  }
}

/* Backdrop Mobile-Menu */
.menu-backdrop[hidden] {
  display: none !important
}

.menu-backdrop {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 39;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden
}

/* ---------- Hero ---------- */
.hero {
  margin-top: var(--header-h);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-v2 {
  --hero-x: 56%;
  --hero-y: 50%;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .75)), var(--hero) no-repeat;
  background-size: cover;
  background-position: var(--hero-x) var(--hero-y);
  filter: saturate(1.05);
}

.hero-grid {
  position: static;
  z-index: 1;
  width: 100%;
  display: grid;
  justify-items: center;
}

.hero-copy {
  position: absolute;
  left: var(--copy-left, 8vw);
  top: var(--copy-top, 28vh);
  transform: translate(var(--copy-tx, 0), var(--copy-ty, 0));
  max-width: min(1000px, 86vw);
  margin-inline: 0;
  text-align: left;
  padding-top: 0;
}

.tag {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: .08em;
  font-size: var(--fs-small);
}

/* Hero Minimal Typo */
.hero-minimal .headline {
  font-family: Fraunces, serif;
  font-size: var(--hero-h1);
  line-height: .88;
  letter-spacing: .01em;
  margin: .12em 0 .14em;
  text-transform: uppercase;
  background: var(--heading-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0, 0, 0, .35);
  text-wrap: balance;
  max-width: 12ch;
  display: block;
}

.hero-minimal .subline {
  font-family: "Brotherhood Script", cursive;
  font-weight: 400;
  font-size: var(--hero-sub);
  line-height: 1.08;
  color: #f5f5f5;
  letter-spacing: .005em;
  padding-left: var(--sub-indent);
  text-shadow: 0 0 2px rgba(0, 0, 0, .25);
  margin: .28em 0 0;
}

.hero-minimal {
  --sub-indent: 1.55ch;
}

.hero-minimal .subline {
  padding-left: var(--sub-indent);
}

@media (max-width:1200px) {
  .hero-minimal {
    --sub-indent: 1.35ch;
  }
}

@media (max-width:860px) {
  .hero-minimal .headline {
    max-width: 11.5ch;
  }

  .hero-minimal {
    --sub-indent: 1.20ch;
  }
}

@media (max-width:520px) {
  .hero-minimal .headline {
    max-width: 10.75ch;
  }

  .hero-minimal {
    --sub-indent: 2.05ch;
  }
}

/* ---------- Trenner ---------- */
.section-sep {
  height: 14px;
  display: block
}

.section-sep.copper {
  background: linear-gradient(90deg, rgba(184, 115, 51, 0), rgba(184, 115, 51, .6), rgba(184, 115, 51, 0))
}

.section-sep.light {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .65), rgba(255, 255, 255, 0))
}

.section-sep.dark {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65), rgba(0, 0, 0, 0))
}

.section .section-sep,
.section+.section-sep {
  margin-block: clamp(40px, 5vw, 64px)
}

@supports selector(.section:has(.section-sep)) {
  .section:has(.section-sep) {
    padding-bottom: 0;
  }
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(72px, 10vw, 120px);
  position: relative;
}

.section h2 {
  font-family: Fraunces, serif;
  font-size: var(--fs-h2);
  margin: 0 0 var(--space-1)
}

.sub {
  color: #cfcfcf;
  margin-top: 0;
  max-width: 70ch
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Fraunces, serif;
  background: var(--heading-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

h2.subline {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}

/* ---------- About ---------- */
.about-v2 {
  background: linear-gradient(180deg, #141415, #171718)
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.about-text {
  display: grid;
  grid-auto-rows: max-content;
  row-gap: var(--space-2);
  align-content: center;
  max-width: 68ch;
  padding-block: var(--space-1);
}

.about-text h2 {
  margin: 0 0 var(--space-2)
}

.about-text .kicker {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: #f2f2f2;
}

.about-text p {
  margin: 0
}

/* Feinschliff: Luft & Bullets */
.about-text h2 {
  margin: 0 0 clamp(14px, 1.6vw, 22px);
}

.about-text .kicker {
  margin: 0 0 clamp(12px, 1.2vw, 18px);
}

.about-text p {
  margin: 0 0 clamp(12px, 1.2vw, 18px);
}

.about-text .bullets {
  margin-top: clamp(14px, 1.6vw, 22px);
  color: #d7d7d7
}

.about-text .bullets li {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.72;
  margin: .55em 0
}

/* Spezielle Kupfer-Bullets (größer) – optional zusätzlich zur globalen Farbe */
.bullets--copper {
  list-style: disc outside;
  padding-left: 1.25em;
}

.bullets--copper li::marker {
  color: var(--copper);
  font-size: 1.15em;
}

/* About Portrait – moderner Look */
.about-portrait {
  position: relative;
}

.about-portrait img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 20%;
  background: radial-gradient(120% 80% at 50% 0%, rgba(184, 115, 51, .18), rgba(184, 115, 51, 0) 60%);
  pointer-events: none;
}

/* About – Responsive */
@media (min-width:1200px) {
  .about-text {
    row-gap: var(--space-3)
  }

  .about-grid {
    gap: clamp(28px, 3.2vw, 46px)
  }

  .about-portrait img {
    border-radius: 26px
  }
}

@media (max-width:1200px) {
  .about-grid {
    gap: var(--space-3)
  }
}

@media (max-width:980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3)
  }

  .about-text {
    row-gap: var(--space-2);
    max-width: 70ch;
    padding-block: 0
  }
}

@media (max-width:680px) {
  .about-text {
    row-gap: var(--space-1)
  }

  .about-text .bullets {
    margin-top: var(--space-1)
  }

  .section.about-v2 {
    padding-block: clamp(64px, 12vw, 90px)
  }

  .about-text {
    row-gap: clamp(10px, 2.5vw, 16px)
  }

  .about-text .bullets li {
    font-size: clamp(16px, 4.1vw, 18px)
  }

  .about-portrait img {
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  }
}

/* ---------- Gallery ---------- */
.gallery-v2 {
  background: linear-gradient(180deg, #171718, #151515)
}

.section-head {
  display: grid;
  grid-auto-rows: max-content;
  row-gap: var(--space-2);
  margin-bottom: var(--space-3);
  max-width: 68ch;
}

.section-head h2,
.section-head .sub {
  margin: 0
}

@media (min-width:1200px) {
  .section-head {
    row-gap: var(--space-3)
  }
}

.grid.works {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr)
}

.grid.works .work-card {
  grid-column: span 4
}

@media (max-width:1200px) {
  .grid.works .work-card {
    grid-column: span 6
  }
}

@media (max-width:680px) {
  .grid.works .work-card {
    grid-column: span 12
  }
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .06);
  aspect-ratio: 3/4;
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (max-width:860px) {
  .work-card {
    aspect-ratio: 3/4
  }
}

@media (max-width:480px) {
  .work-card {
    aspect-ratio: 4/5
  }
}

@media (min-width:1600px) {
  .work-card {
    max-height: 520px
  }
}

.work-card::after {
  content: "Vergrößern";
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  font-size: var(--fs-small);
  color: #fff;
  background: rgba(0, 0, 0, .45);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

.work-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05)
}

.work-card:hover::after {
  opacity: 1;
  transform: none
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox .close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox .lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox .lb-nav.prev {
  left: 16px
}

.lightbox .lb-nav.next {
  right: 16px
}

.lightbox .lb-cap {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, .45);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: var(--fs-small);
  max-width: 80vw;
}

/* ---------- Booking / Kontakt ---------- */
.booking-v2 {
  background: linear-gradient(180deg, #0f0f10, #0b0b0c)
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: var(--space-3);
  align-items: start;
}

@media (max-width:1200px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:740px) {
  .booking-grid {
    grid-template-columns: 1fr
  }
}

.card {
  background: #141415;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 22px;
  padding: var(--space-3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.card h2,
.card h3,
.card h4 {
  margin-top: 0
}

.row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr
}

@media (max-width:640px) {
  .row {
    grid-template-columns: 1fr
  }
}

label {
  display: block;
  font-size: var(--fs-small);
  color: #cfcfcf
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0d0d0e;
  color: #fff;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical
}

.hint {
  font-size: var(--fs-small);
  color: #bdbdbd
}

.info p {
  margin: .35rem 0 1rem
}

.map-embed {
  aspect-ratio: 16/10;
  background: #090909;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0
}

/* Booking Form Details */
#booking .card h2 {
  margin-bottom: 18px
}

#booking .row {
  gap: 22px;
  margin-bottom: 14px
}

#booking label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: var(--fs-small);
  color: #d8d8d8;
}

#booking input,
#booking select {
  height: 48px;
  padding: 12px 14px;
  margin-top: 0;
  line-height: 1.2;
}

#booking textarea {
  min-height: 180px;
  padding: 14px
}

#booking .card {
  padding: clamp(22px, 3vw, 36px)
}

#booking .btn {
  margin-top: 17px
}

#booking input[type="date"] {
  padding-right: 36px
}

#contact h3 {
  margin-bottom: 8px
}

#contact h4 {
  margin: 14px 0 6px
}

#contact p {
  margin: 6px 0 10px
}

.booking-grid .map {
  margin-top: 6px
}

@media (max-width:740px) {
  #booking .row {
    gap: 14px;
    margin-bottom: 10px
  }

  #booking input,
  #booking select {
    height: 46px
  }

  #booking .card {
    padding: 20px
  }
}

@media (min-width:1400px) {
  #booking .row {
    gap: 28px;
    margin-bottom: 18px
  }

  #booking .card {
    padding: 40px
  }

  #booking textarea {
    min-height: 200px
  }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  --btn-bg: linear-gradient(180deg, #1b1b1d 0%, #121213 100%);
  --btn-bd: rgba(255, 255, 255, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  box-shadow: inset 0 1px 0 var(--btn-glow), 0 10px 22px rgba(0, 0, 0, .28);
  transition: transform .07s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 28px rgba(0, 0, 0, .34)
}

.btn:active {
  transform: translateY(1px)
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 115, 51, .35), 0 10px 22px rgba(0, 0, 0, .28)
}

.btn--primary {
  --btn-bg: linear-gradient(180deg, #1b1b1d 0%, #121213 100%);
  --btn-fg: #fff
}

.btn--copper {
  --btn-bg: linear-gradient(180deg, #c18246 0%, #8f5828 100%);
  --btn-bd: rgba(255, 255, 255, .18)
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .35);
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .15)) border-box;
}

.btn--outline:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .25)) border-box;
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, .06);
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, .1)
}

.btn--light {
  --btn-bg: linear-gradient(180deg, #f2f2f2 0%, #d9d9d9 100%);
  --btn-fg: #111;
  --btn-bd: rgba(0, 0, 0, .1)
}

.btn--lg {
  padding: 14px 20px;
  border-radius: 16px;
  font-size: clamp(15px, 1.05vw, 18px)
}

.btn--block {
  display: flex;
  width: 100%
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0b;
  color: #cfcfcf;
  padding-block: 40px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.foot-grid {
  display: grid;
  gap: 14px;
  align-items: center;
}

/* Links einheitlich */
.ig,
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.site-footer .ig svg,
.site-footer .link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.legal-links {
  display: inline-flex;
  gap: 24px; /* Abstand zwischen den Links, z.B. 24px */
}

/* Adresse */
.addr {
  color: #bdbdbd;
}

/* ---------- Layout ---------- */

/* Desktop (ab 1024px): IG links, Legals mittig, Addr rechts */
@media (min-width:1024px) {
  .foot-grid {
    grid-template-areas: "ig legals addr";
    grid-template-columns: 1fr auto 1fr;
  }
  .ig { grid-area: ig; justify-self: start; }
  .legal-links { grid-area: legals; justify-self: center; }
  .addr { grid-area: addr; justify-self: end; text-align: right; }
}

/* Tablet (701px–1023px): IG links, Legals rechts, Addr drunter */
@media (min-width:701px) and (max-width:1023px) {
  .foot-grid {
    grid-template-areas:
      "ig legals"
      "addr addr";
    grid-template-columns: 1fr auto;
  }
  .ig { grid-area: ig; justify-self: start; }
  .legal-links { grid-area: legals; justify-self: end; }
  .addr { grid-area: addr; justify-self: start; text-align: left; }
}

/* Handy (bis 700px): 3 Zeilen, alles links */
@media (max-width:700px) {
  .foot-grid {
    grid-template-areas:
      "ig"
      "legals"
      "addr";
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ig { grid-area: ig; justify-self: start; }
  .legal-links { grid-area: legals; justify-self: start; }
  .addr { grid-area: addr; text-align: left; }
}


/* ---------- Reveal ---------- */
.slide-up,
.slide-left,
.slide-right {
  opacity: 0;
  transform: translateY(24px);
  transition: all .7s cubic-bezier(.2, .6, .1, 1)
}

.slide-left {
  transform: translateX(-24px)
}

.slide-right {
  transform: translateX(24px)
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.98);
  transition: all .6s ease
}

.in {
  opacity: 1;
  transform: none
}

/* Small tweaks */
@media (max-width:480px) {
  .wrap {
    padding-inline: 14px
  }

  .brand-title {
    font-size: 16px
  }

  .btn {
    padding: 12px 14px
  }

  .btn--lg {
    padding: 14px 16px
  }
}

/* Motion Respect */
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .slide-up,
  .slide-left,
  .slide-right,
  .reveal-zoom {
    transition: none
  }
}

/* ---------- Hero Text-Position ---------- */
@media (min-width:1320px) {
  .hero-v2 {
    --copy-left: clamp(72px, 10vw, 160px);
    --copy-top: 30vh;
    --copy-tx: 0;
    --copy-ty: 0;
  }
}

@media (max-width:1319px) and (min-width:861px) {
  .hero-v2 {
    --copy-left: clamp(48px, 6.5vw, 100px);
    --copy-top: 26vh;
    --copy-tx: 0;
    --copy-ty: 0;
  }
}

@media (max-width:520px) {
  :root {
    --sub-indent: .35ch
  }

  .hero-minimal .headline {
    line-height: .92
  }
}

@media (max-width:480px) {
  .hero-copy {
    top: 34vh
  }
}

/* ---------- Gallery: Carousel ---------- */
.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  contain: paint;
}

.carousel-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .35s ease;
  touch-action: pan-y;
  padding-block: 2px;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.carousel-track .work-card {
  flex: 0 0 25%
}

@media (max-width:1199px) {
  .carousel-track .work-card {
    flex-basis: 33.3333%
  }
}

@media (max-width:860px) {
  .carousel-track .work-card {
    flex-basis: 50%
  }
}

@media (max-width:480px) {
  .carousel-track .work-card {
    flex-basis: 100%
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .32);
}

.carousel-nav.prev {
  left: -6px
}

.carousel-nav.next {
  right: -6px
}

.carousel-nav:disabled {
  opacity: .35;
  cursor: not-allowed
}

@media (max-width:860px) {
  .carousel-nav.prev {
    left: 6px
  }

  .carousel-nav.next {
    right: 6px
  }
}

.carousel.dragging .carousel-track {
  cursor: grabbing;
  user-select: none;
}

.carousel.animating .work-card:hover img,
.carousel.dragging .work-card:hover img {
  transform: none !important
}

/* ---------- Kontakt-Logo im Card-Hintergrund ---------- */
#contact {
  position: relative;
  overflow: hidden;
}

.contact-logo-bg {
  position: absolute;
  top: 20px;
  right: -9px;
  width: clamp(160px, 45%, 320px);
  opacity: .28;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Scroll behavior & snapping (Desktop only) ---------- */
section,
.section {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (min-width:1024px) and (hover:hover) and (pointer:fine) {

  html,
  body {
    height: 100%
  }

  body {
    scroll-snap-type: y mandatory;
    scroll-padding-top: var(--header-h);
    overscroll-behavior-y: contain;
  }

  .hero,
  .section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
  }
}

/* ---------- Hero final height ---------- */
.hero {
  margin-top: 0;
  min-height: 100svh;
}

@media (min-width:1024px) {
  .hero {
    min-height: 100vh
  }
}

/* Impressum & Privacy Typografie */
.impressum h1,
.privacy h1 {
  font-size: 1.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.impressum h2,
.privacy h2 {
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.impressum p,
.privacy p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Impressum-Überschriften-Verlauf */

.privacy .heading-gradient {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


/* ===== Galerie mittig zwischen den Linien ===== */
#about .section-sep.light {
  display: none !important;
}

#gallery .section-sep.copper {
  display: none !important;
}


#gallery.section {
  position: relative;
  padding-block: clamp(64px, 8vw, 96px) !important;
}

#gallery.section::before,
#gallery.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
}

#gallery.section::before {
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .65), rgba(255, 255, 255, 0));
}

#gallery.section::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(184, 115, 51, 0), rgba(184, 115, 51, .6), rgba(184, 115, 51, 0));
}