/* =============================================
   CASUALLINE TATTOO – Stylesheet v2
   High-contrast white/black + rose accents
   No green anywhere.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* === VARIABLES === */
:root {
  --white:       #FAFAF8;
  --off-white:   #F3EFEE;
  --rose-pale:   #F7EDEF;
  --black:       #191919;   /* slightly lifted from pure black – better readability */
  --near-black:  #222222;
  --rose:        #C2909B;
  --rose-light:  #E8C5CC;
  --rose-dark:   #9A6575;
  --gray:        #888888;
  --gray-light:  #BBBBBB;   /* lifted: was #AAA, now readable on dark bg */
  --text-on-dark: rgba(250,250,248,0.80); /* body text on dark sections */
  --border-l:    #E5DFDF;
  --border-d:    #333333;   /* slightly lighter dark border */
  --nav-height:  76px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: pointer;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }



/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400; line-height: 1.1; letter-spacing: 0.01em;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.label {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  display: block; margin-bottom: 0.8rem;
}
.label--rose  { color: var(--rose); }
.label--light { color: rgba(194,144,155,0.85); }

.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.on-dark .section-title { color: var(--white); }
.section-sub { font-size: 0.9rem; line-height: 1.9; color: var(--gray); max-width: 500px; }
.on-dark .section-sub { color: var(--gray-light); }

.divider { width: 48px; height: 1px; background: var(--rose); margin: 1.2rem 0 1.8rem; }
.divider--center { margin: 1.2rem auto 1.8rem; }

/* === LAYOUT === */
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }
.bg-white   { background: var(--white); }
.bg-black   { background: var(--black); }
.bg-gray    { background: var(--off-white); }

/* === BUTTONS (NO GREEN) === */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  border-radius: 2px;
}
.btn-dark {
  background: var(--black); color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-dark:hover {
  background: var(--rose-dark); border-color: var(--rose-dark);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black); color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.btn-wa {
  background: var(--rose); color: var(--white);
  border: 1.5px solid var(--rose);
}
.btn-wa:hover {
  background: var(--rose-dark); border-color: var(--rose-dark);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(140,80,100,0.35);
}

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.nav.nav-shadow { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
/* Logo: transparent PNG, no mix-blend-mode needed */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2.8rem; }
.nav-links a {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--rose);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; }
.nav-cta .btn { padding: 0.62rem 1.4rem; font-size: 0.62rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; margin-right: -10px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border-l);
  padding: 2rem; flex-direction: column; gap: 1.5rem;
  z-index: 999; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); padding: 0.5rem 0; border-bottom: 1px solid var(--border-l);
  transition: color 0.25s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--rose); }

/* === HOME HERO – SPLIT LAYOUT === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
}
.hero__left {
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  max-width: 700px; margin-left: auto;
}

/* LOGO – freigestellt, dominantes Designelement */
.hero__logo {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-l);
}
.hero__logo img {
  width: clamp(300px, 80%, 500px); /* füllt den linken Hero-Bereich dominant aus */
  height: auto;
  display: block;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.4rem;
}
.hero__eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--rose); flex-shrink: 0;
}
.hero__eyebrow span {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 300; line-height: 1.08;
  color: var(--black); margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--rose); }
.hero__desc {
  font-size: 0.88rem; color: var(--gray);
  max-width: 400px; margin-bottom: 2.2rem; line-height: 1.9;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Right side: full-height photo */
.hero__right { position: relative; overflow: hidden; }
.hero__right-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 10s var(--ease);
}
.hero__right:hover .hero__right-img { transform: scale(1.04); }
.hero__right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 18%),
              linear-gradient(to top, rgba(17,17,17,0.35) 0%, transparent 40%);
  z-index: 1;
}
.hero__badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  background: rgba(17,17,17,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.3rem; cursor: pointer;
}
.hero__badge p { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 0.25rem; }
.hero__badge span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative; height: 42vh; min-height: 340px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-bottom: 3.5rem; padding-top: var(--nav-height); background: var(--black);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.6);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(17,17,17,0.93) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: 1220px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.page-hero__content h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: var(--white); }

/* === FLOATING WA (ROSE – no green!) === */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; background: var(--rose);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(160,100,120,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s; cursor: pointer;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(140,80,100,0.55); }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* === FOOTER === */
.footer { background: var(--black); border-top: 1px solid var(--border-d); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
/* On black bg: invert logo so it shows white */
.footer-brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
}
.footer-brand p { font-size: 0.83rem; color: var(--gray-light); line-height: 1.9; max-width: 300px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--gray-light); transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--rose-light); }
.footer-col address { font-style: normal; font-size: 0.83rem; color: var(--gray-light); line-height: 2.1; }
.footer-bottom { border-top: 1px solid var(--border-d); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.72rem; color: #888; }

/* === STYLES GRID (on black bg) === */
.styles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 3.5rem; }
.style-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--near-black); }
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s var(--ease), filter 0.3s; filter: brightness(0.55) saturate(0.7); }
.style-card:hover img { transform: scale(1.07); filter: brightness(0.4) saturate(0.8); }
.style-card__label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1.8rem 1.5rem; background: linear-gradient(to top, rgba(17,17,17,0.88) 0%, transparent 55%); }
.style-card__label h3 { font-size: 1.5rem; color: var(--white); }
.style-card__label span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-top: 0.4rem; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
.style-card:hover .style-card__label span { opacity: 1; transform: translateY(0); }
.style-card__link { position: absolute; inset: 0; z-index: 1; }

/* === PROCESS STEPS (on white bg) === */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border-l); margin-top: 3.5rem; }
.process-step { padding: 2.5rem 2rem; border-right: 1px solid var(--border-l); position: relative; transition: background 0.3s; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--rose-pale); }
.process-step__num { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300; color: rgba(0,0,0,0.055); line-height: 1; margin-bottom: 1rem; transition: color 0.3s; }
.process-step:hover .process-step__num { color: rgba(194,144,155,0.2); }
.process-step h4 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 0.7rem; }
.process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.85; }

/* === REVIEWS (on black bg) === */
.reviews-slider-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform 0.3s var(--ease); }
.review-card { min-width: calc(33.333% - 1rem); background: var(--near-black); border: 1px solid var(--border-d); padding: 2.2rem; flex-shrink: 0; transition: border-color 0.3s; }
.review-card:hover { border-color: rgba(194,144,155,0.3); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--rose); font-size: 0.95rem; letter-spacing: 0.05em; }
.review-stars span { color: var(--rose); font-size: 0.95rem; }
.review-text { font-size: 0.88rem; color: rgba(250,250,248,0.78); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.review-text::before { content: '"'; font-family: var(--font-serif); font-size: 2.2rem; line-height: 0; vertical-align: -0.55rem; color: var(--rose); margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 0.9rem; }
.review-author__avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(194,144,155,0.1); border: 1px solid rgba(194,144,155,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.1rem; color: var(--rose); flex-shrink: 0; }
.review-author__info strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--white); }
.review-author__info span  { font-size: 0.7rem; color: var(--gray); }
.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.reviews-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-d); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.25s, background 0.25s; color: var(--white); }
.reviews-btn:hover { border-color: var(--rose); background: rgba(194,144,155,0.1); }
.reviews-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.reviews-dots { display: flex; gap: 7px; }
.reviews-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-d); transition: background 0.3s, transform 0.3s; cursor: pointer; }
.reviews-dot.active { background: var(--rose); transform: scale(1.4); }

/* === GALLERY === */
.gallery-filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gallery-filter-bar::-webkit-scrollbar { display: none; }
.filter-btn { padding: 0.55rem 1.4rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-sans); background: transparent; color: var(--gray); border: 1px solid var(--border-l); border-radius: 2px; cursor: pointer; transition: all 0.25s; }
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; position: relative; overflow: hidden; background: var(--off-white); border: 1px solid var(--border-l); }
.gallery-item img { width: 100%; display: block; transition: transform 0.3s var(--ease), filter 0.25s; filter: brightness(0.95) saturate(0.82); }
.gallery-item:hover img { transform: scale(1.03); filter: brightness(0.65) saturate(0.85); }
.gallery-item__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: 1rem; background: linear-gradient(to top, rgba(17,17,17,0.7) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; background: var(--white); color: var(--black); padding: 0.28rem 0.7rem; }
.gallery-item.hidden { display: none; }

    }

/* === ABOUT === */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split img { width: 100%; height: auto; display: block; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: brightness(0.9) saturate(0.85); }
.about-image-wrap::before { content: ''; position: absolute; top: -1.5rem; left: -1.5rem; right: 1.5rem; bottom: 1.5rem; border: 1px solid var(--border-l); z-index: -1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-l); margin-top: 2.5rem; }
.stat-box { padding: 1.5rem; border-right: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); }
.stat-box:nth-child(2n) { border-right: none; }
.stat-box:nth-child(n+3) { border-bottom: none; }
.stat-box__num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300; color: var(--rose); line-height: 1; margin-bottom: 0.3rem; }
.stat-box__label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

/* === STUDIO === */
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.studio-img-card { overflow: hidden; border: 1px solid var(--border-l); background: var(--off-white); }
.studio-img-card img { width: 100%; height: 520px; object-fit: cover; object-position: center; transition: transform 0.3s var(--ease); filter: brightness(0.88) saturate(0.82); }
.studio-img-card:first-child { grid-column: 1 / 3; }
.studio-img-card:first-child img { height: 520px; }
.studio-img-card:hover img { transform: scale(1.03); }
.studio-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border-l); margin-top: 3.5rem; }
.studio-feature { padding: 2.5rem 2rem; border-right: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); transition: background 0.3s; }
.studio-feature:nth-child(3n) { border-right: none; }
.studio-feature:nth-child(n+4) { border-bottom: none; }
.studio-feature:hover { background: var(--rose-pale); }
.studio-feature__icon { width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--border-l); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.studio-feature__icon svg { width: 20px; height: 20px; stroke: var(--rose-dark); fill: none; stroke-width: 1.5; }
.studio-feature h4 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 0.6rem; }
.studio-feature p { font-size: 0.85rem; color: var(--gray); line-height: 1.85; }

/* === CONTACT === */
.wa-button-main { display: inline-flex; align-items: center; gap: 1rem; background: var(--rose); color: var(--white); padding: 1.1rem 2.8rem; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; box-shadow: 0 4px 20px rgba(160,100,120,0.3); cursor: pointer; }
.wa-button-main:hover { background: var(--rose-dark); transform: translateY(-3px); box-shadow: 0 10px 35px rgba(140,80,100,0.45); }
.wa-button-main svg { width: 22px; height: 22px; fill: currentColor; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border-l); margin-top: 4rem; }
.contact-info-card { padding: 2.5rem 2rem; border-right: 1px solid var(--border-l); transition: background 0.3s; }
.contact-info-card:last-child { border-right: none; }
.contact-info-card:hover { background: var(--rose-pale); }
.contact-info-card h4 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 0.9rem; }
.contact-info-card p, .contact-info-card address { font-size: 0.87rem; color: var(--gray); font-style: normal; line-height: 2; }
.cta-banner { border: 1px solid var(--border-l); padding: 4rem 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-banner--dark { background: var(--black); border-color: var(--border-d); }
.cta-banner--dark h2 { color: var(--white); }
.cta-banner--dark p  { color: var(--gray-light); }
.map-wrap { border: 1px solid var(--border-l); overflow: hidden; height: 380px; transition: filter 0.4s; filter: saturate(0.3) brightness(0.9); }
.map-wrap:hover { filter: saturate(0.7) brightness(1); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === ANIMATIONS === */
/* reveal: legacy support */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* reveal-up: supports CSS --delay custom property */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* stagger: each item gets .visible added individually via JS timeout */
.stagger-item { opacity: 0; transform: translateY(12px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.stagger-item.visible { opacity: 1; transform: none; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .divider { margin-left: auto; margin-right: auto; }
.section-header--center .section-sub { margin: 0 auto; text-align: center; }

/* === MARQUEE STRIP === */
.marquee-strip {
  overflow: hidden; background: var(--black);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 0.9rem 0;
  user-select: none;
}
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(250,250,248,0.4);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === REVIEWS RATING HEADER === */
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 0.8rem; }
.reviews-stars { color: var(--rose); font-size: 1.05rem; letter-spacing: 0.1em; }
.reviews-meta  { font-size: 0.8rem; color: var(--gray); }

/* Review cards on light bg (bg-gray) */
.bg-gray .review-card { background: var(--white); border-color: var(--border-l); }
.bg-gray .review-text { color: var(--gray); }
.bg-gray .review-author__info strong { color: var(--black); }
.bg-gray .review-stars { color: var(--rose); }
.bg-gray .reviews-btn { border-color: var(--border-l); color: var(--black); }
.bg-gray .reviews-btn:hover { border-color: var(--rose); background: var(--rose-pale); color: var(--rose-dark); }
.bg-gray .reviews-dot { background: var(--border-l); }
.bg-gray .reviews-dot.active { background: var(--rose); }

/* === STYLE CARD (updated structure) === */
.style-card__img-wrap { position: absolute; inset: 0; }
.style-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s var(--ease), filter 0.3s; filter: brightness(0.55) saturate(0.7); }
.style-card:hover .style-card__img-wrap img { transform: scale(1.07); filter: brightness(0.4) saturate(0.8); }
.style-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1.8rem 1.5rem; background: linear-gradient(to top, rgba(17,17,17,0.88) 0%, transparent 55%); z-index: 1; }
.style-card__body h3 { font-size: 1.5rem; color: var(--white); }
.style-card__body span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-top: 0.4rem; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
.style-card:hover .style-card__body span { opacity: 1; transform: translateY(0); }

/* === PROCESS STEP (on dark bg) === */
.bg-black .process-grid { border-color: var(--border-d); margin-top: 3.5rem; }
.bg-black .process-step { border-right-color: var(--border-d); background: transparent; }
.bg-black .process-step:hover { background: rgba(255,255,255,0.04); }
.bg-black .process-step__num { color: rgba(250,250,248,0.06); }
.bg-black .process-step:hover .process-step__num { color: rgba(194,144,155,0.2); }
.bg-black .process-step__icon svg { stroke: var(--rose); }
.bg-black .process-step h4 { color: var(--rose-light); }
.bg-black .process-step p { color: var(--text-on-dark); } /* was --gray (#888) – now readable */

/* === PROCESS STEP ICON === */
.process-step__icon { width: 40px; height: 40px; border: 1px solid var(--border-l); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.process-step__icon svg { width: 18px; height: 18px; stroke: var(--rose-dark); fill: none; stroke-width: 1.5; }
.bg-black .process-step__icon { border-color: var(--border-d); }

/* === CTA BANNER TEXT GROUP === */
.cta-banner__text h2 { margin-bottom: 0.5rem; }
.cta-banner__text p { font-size: 0.9rem; color: var(--gray); margin-top: 0.4rem; }

/* === BUTTON RESET for reviews dots === */
.reviews-dot { border: none; padding: 0; }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }

/* ===================================================
   RESPONSIVE
   =================================================== */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); border: none; }
  .process-step { border: 1px solid var(--border-l); margin: -1px 0 0 -1px; }
  .bg-black .process-step { border-color: var(--border-d); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* --- Tablet portrait / small laptop --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { max-width: 100%; padding: 3.5rem 2rem 3rem; margin-left: 0; }
  .hero__right { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap::before { display: none; }
  .section { padding: 5rem 0; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 42px; }

  /* Hero */
  .hero__left { padding: 3rem 1.5rem 2.5rem; align-items: center; text-align: center; }
  .hero__logo { width: 100%; display: flex; justify-content: center; }
  .hero__logo img { width: clamp(220px, 72vw, 340px); }
  .hero__eyebrow { justify-content: center; }
  .hero__actions { align-items: center; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero__desc { font-size: 0.85rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  /* Sections */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; border: none; }
  .process-step { border: 1px solid var(--border-l); margin: -1px 0 0 0; border-right: 1px solid var(--border-l) !important; }
  .bg-black .process-step { border-color: var(--border-d) !important; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 0.6rem; }
  .gallery-filter-bar { flex-wrap: nowrap; gap: 0.4rem; padding-bottom: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.6rem; white-space: nowrap; flex-shrink: 0; }
  /* Overlay-Tags auf Touch-Geräten immer sichtbar */
  .gallery-item__overlay { opacity: 1; background: linear-gradient(to top, rgba(17,17,17,0.55) 0%, transparent 45%); }

  /* Reviews */
  .review-card { min-width: 86vw; }
  .reviews-track { gap: 0.75rem; }

  /* Contact info */
  .contact-info-grid { grid-template-columns: 1fr; border: none; }
  .contact-info-card { border: 1px solid var(--border-l); margin-top: -1px; border-right: 1px solid var(--border-l) !important; }

  /* Studio */
  .studio-features { grid-template-columns: 1fr 1fr; border: none; }
  .studio-feature { border: 1px solid var(--border-l); margin: -1px 0 0 -1px; }
  .studio-grid { grid-template-columns: 1fr !important; }
  .studio-img-card:first-child { grid-column: auto !important; }

  /* CTA */
  .cta-banner { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; gap: 1.5rem; }
  .cta-banner .btn, .cta-banner .wa-button-main { align-self: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Marquee – slower on mobile */
  .marquee-track { animation-duration: 18s; }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .styles-grid { grid-template-columns: 1fr 1fr; }
  .studio-features { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .wa-card { padding: 1.8rem 1.2rem; }
  .process-mini { padding: 0 0.5rem; }
  .footer { padding: 3.5rem 0 2rem; }
}
