/* ─────────────────────────────────────────────────────────────────────────
   LashLux Studio V2 – Weiß / Gold / Beige
   Fonts: Playfair Display (serif headlines) · Raleway (sans body)
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --white:       #ffffff;
  --cream:       #faf7f0;
  --beige:       #f0e8d8;
  --beige-dark:  #ddd0b8;
  --gold-light:  #e8d080;
  --gold:        #c8a84b;
  --gold-deep:   #a88830;
  --gold-dark:   #7a6018;
  --warm-black:  #1c1810;
  --warm-mid:    #3c3020;
  --warm-gray:   #7a6e58;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Raleway', 'Helvetica Neue', sans-serif;
  --max-w:       1200px;
  --header-h:    68px;
  --ease:        0.35s ease;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--warm-mid);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ── Shared labels ──────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  color: var(--warm-black);
  line-height: 1.15;
  margin-top: 8px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--warm-black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-gold.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  background: transparent;
  color: var(--warm-black);
  border: 1.5px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover { background: var(--gold); color: var(--warm-black); }

/* ── Header ─────────────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(252, 250, 244, 0.96);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--ease);
}
#header.scrolled { box-shadow: 0 1px 30px rgba(160,136,48,0.13); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Thin gold line top of header */
.header-line {
  display: none; /* used via ::before on header */
}
#header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--warm-black);
  letter-spacing: 0.02em;
  grid-column: 2;
  text-align: center;
}
.logo em { color: var(--gold); font-style: italic; }
.logo--footer { font-size: 30px; }

#nav { grid-column: 1; }
#nav ul {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
}
#nav ul li a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-mid);
  position: relative;
  transition: color var(--ease);
}
#nav ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
#nav ul li a:hover { color: var(--gold-deep); }
#nav ul li a:hover::after { width: 100%; }

.header-cta {
  grid-column: 3;
  justify-self: end;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--ease);
}
.header-cta:hover { color: var(--gold-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  grid-column: 3;
  justify-self: end;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--warm-black);
  transition: var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero – Centered, full-bleed ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 4, 0.58);
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}

.hero-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

#hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
#hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  color: var(--gold);
  font-size: 18px;
  margin: 20px 0;
  opacity: 0.7;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 220, 0.7);
  margin-bottom: 44px;
}

.btn-hero {
  display: inline-block;
  padding: 16px 52px;
  background: var(--gold);
  color: var(--warm-black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}
.btn-hero:hover { background: var(--gold-deep); color: var(--white); }

.hero-corner {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.45);
}
.hero-corner--bl { bottom: 32px; left: 48px; }
.hero-corner--br { bottom: 32px; right: 48px; }

/* ── Intro Statement ─────────────────────────────────────────────────────── */
.intro-statement {
  background: var(--warm-black);
  padding: 52px 0;
}
.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.intro-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,75,0.35));
}
.intro-inner:last-child .intro-line {
  background: linear-gradient(to left, transparent, rgba(200,168,75,0.35));
}
.intro-inner p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: rgba(240, 230, 200, 0.85);
  text-align: center;
  flex-shrink: 0;
  max-width: 600px;
}

/* ── Leistungen – Alternating Rows ───────────────────────────────────────── */
#leistungen { background: var(--white); }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }

.service-row__img {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}
.service-row__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s ease;
}
.service-row:hover .service-row__img img { transform: scale(1.04); }

.service-row__tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
}

.service-row__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 56px;
  background: var(--cream);
}
.service-row--reverse .service-row__text { background: var(--white); }

.service-row__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--warm-black);
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-row__text p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 440px;
}
.service-row__price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 28px;
}

/* Mini services strip */
.mini-services {
  background: var(--warm-black);
  padding: 64px 0;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,168,75,0.12);
}
.mini-card {
  background: var(--warm-black);
  padding: 48px 40px;
  text-align: center;
}
.mini-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.mini-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.mini-card p {
  font-size: 13px;
  color: rgba(240,232,200,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}
.mini-card span {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
}

/* ── Studio / Über mich ──────────────────────────────────────────────────── */
#ueber-mich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.studio-fullimg {
  position: relative;
  overflow: hidden;
}
.studio-fullimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.studio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(250,247,240,0.6));
}

.studio-text-block {
  background: var(--beige);
  display: flex;
  align-items: center;
}
.studio-text-inner {
  padding: 80px 64px;
  max-width: 540px;
}

.studio-text-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--warm-black);
  line-height: 1.2;
  margin-bottom: 28px;
}
.studio-text-inner p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.studio-text-inner strong { color: var(--gold-deep); font-weight: 600; }

.studio-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 40px;
  border: 1px solid var(--beige-dark);
  background: rgba(255,255,255,0.5);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--beige-dark);
}

/* ── Galerie – Masonry Columns ───────────────────────────────────────────── */
#galerie {
  padding: 100px 0;
  background: var(--white);
}

.masonry {
  columns: 3;
  column-gap: 4px;
}
.masonry-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item:nth-child(2n) img { filter: none; }

.masonry-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 12px;
  background: linear-gradient(to top, rgba(20,16,4,0.65), transparent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 208, 128, 0.9);
  opacity: 0;
  transition: opacity var(--ease);
}
.masonry-item:hover .masonry-label { opacity: 1; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
#testimonials { background: var(--white); }

.quote-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 4, 0.75);
}
.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  padding: 80px 48px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 20px;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: rgba(255, 250, 230, 0.92);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-line { width: 32px; height: 1px; background: var(--gold); opacity: 0.5; }

.reviews-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--beige);
  border-top: 2px solid var(--gold);
}
.review {
  flex: 1;
  padding: 44px 40px;
  text-align: center;
}
.review .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review p {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.review strong {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-mid);
  font-style: normal;
  font-family: var(--font-sans);
}
.review-divider {
  width: 1px;
  background: var(--beige);
  flex-shrink: 0;
}

/* ── Preise – Cards ──────────────────────────────────────────────────────── */
#preise {
  padding: 100px 0;
  background: var(--cream);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
}
.price-card:hover {
  box-shadow: 0 12px 40px rgba(160,136,48,0.12);
  transform: translateY(-4px);
}

.price-card--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.price-card--gold * { color: var(--warm-black) !important; }

.price-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--warm-black);
  color: var(--gold) !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.price-card__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.price-card--gold .price-card__header { border-bottom-color: rgba(0,0,0,0.15); }

.price-card__header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
}
.price-card--gold .price-card__price { color: var(--warm-black); }

.price-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.price-card__list li {
  font-size: 13px;
  color: var(--warm-gray);
  padding-left: 16px;
  position: relative;
}
.price-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 4px;
}
.price-card--gold .price-card__list li { color: var(--warm-black); opacity: 0.8; }
.price-card--gold .price-card__list li::before { color: var(--warm-black); }

.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Kontakt – Split Panel ───────────────────────────────────────────────── */
#kontakt { background: var(--white); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 800px;
}

.contact-split__left {
  position: relative;
  background: var(--warm-black);
  display: flex;
  flex-direction: column;
}
.contact-split__img {
  position: absolute;
  inset: 0;
}
.contact-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.35;
}
.contact-split__imgoverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,4,0.9) 30%, rgba(20,16,4,0.5));
}

.contact-split__info {
  position: relative;
  z-index: 2;
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.contact-split__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
}
.contact-split__info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-split__info ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(240,232,200,0.7);
}
.contact-split__info ul li span {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 20px;
}
.contact-socials a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,168,75,0.35);
  padding-bottom: 2px;
  transition: border-color var(--ease);
}
.contact-socials a:hover { border-color: var(--gold); }

/* Form right */
.contact-split__right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-split__form-wrap {
  padding: 80px 64px;
  width: 100%;
  max-width: 560px;
}
.contact-split__form-wrap .eyebrow { margin-bottom: 8px; }
.contact-split__form-wrap h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 40px;
  line-height: 1.2;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--warm-mid);
  outline: none;
  appearance: none;
  transition: border-color var(--ease);
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a84b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--beige);
  color: var(--gold-dark);
  font-size: 13px;
  text-align: center;
  border-left: 3px solid var(--gold);
}
.form-success.show { display: block; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
#footer { background: var(--warm-black); padding: 56px 0 0; }

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav-inline {
  display: flex;
  gap: 32px;
}
.footer-nav-inline a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,232,200,0.4);
  transition: color var(--ease);
}
.footer-nav-inline a:hover { color: var(--gold); }

.footer-gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240,232,200,0.22);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: rgba(240,232,200,0.3);
  font-size: 11px;
  transition: color var(--ease);
}
.footer-legal-links a:hover { color: var(--gold); }
.footer-credit { font-style: italic; color: rgba(200,168,75,0.2) !important; }

/* ── Scroll animations ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  #ueber-mich { grid-template-columns: 1fr; }
  .studio-fullimg { min-height: 480px; }
  .studio-overlay { display: none; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__left { min-height: 460px; }
}

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row--reverse { direction: ltr; }
  .service-row__img { min-height: 260px; }
  .service-row__text { padding: 36px 28px; }
  .masonry { columns: 2; }
  .header-inner { grid-template-columns: 1fr auto; }
  #nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; grid-column: 2; }
  .logo { grid-column: 1; text-align: left; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .intro-inner { padding: 0 24px; flex-direction: column; }
  .intro-line { width: 60px; height: 1px; flex: none; }
  .mini-grid { grid-template-columns: 1fr; }
  .reviews-strip { flex-direction: column; }
  .review-divider { width: 100%; height: 1px; }
  .price-cards { grid-template-columns: 1fr; }
  .contact-split__form-wrap { padding: 48px 28px; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-nav-inline { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-corner { display: none; }
  #hero h1 { font-size: clamp(42px, 10vw, 66px); }
}

@media (max-width: 520px) {
  .masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
}
