/* =============================================
   NAILROOM — Dark Editorial Redesign
   ============================================= */

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #FF5C8D;
  --pink-d:     #e04478;
  --bg:         #f5f2ee;
  --dark:       #0d0d0d;
  --dark-2:     #151515;
  --border:     rgba(13,13,13,0.1);
  --border-lt:  rgba(255,255,255,0.1);
  --text:       #0d0d0d;
  --muted:      #7a7671;
  --white:      #fafafa;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Space Grotesk', system-ui, sans-serif;
  --hdr:        68px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Type ───────────────────────────────────── */
h1,h2,h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 8vw, 8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; }
em { font-style: italic; }

/* ── Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: clamp(5rem, 10vw, 9rem); }
.section-dark { background: var(--dark); color: var(--white); }

/* ── Reveal ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,92,141,0.35); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.section-dark .btn-outline { color: var(--white); border-color: var(--white); }
.section-dark .btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Labels ─────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}
.label--pink { color: var(--pink); }

/* ── HEADER ─────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--hdr);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(245,242,238,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1400px;
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo-diamond { color: var(--pink); font-size: 0.7rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.25s var(--ease);
}

.main-nav a:hover { color: var(--pink); }
.main-nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.burger span {
  display: block; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem,5vw,3rem) 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }
.mobile-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.0) 0%,
    rgba(13,13,13,0.3) 40%,
    rgba(13,13,13,0.82) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem,5vw,3rem) clamp(4rem,8vw,7rem);
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  color: var(--white);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.dot {
  width: 5px; height: 5px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.hero-line { display: block; }
.hero-line.italic { color: var(--pink); font-style: italic; }

.hero-foot {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.hero-stars { color: var(--pink); letter-spacing: -2px; }

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem,5vw,3rem);
  bottom: clamp(3rem,6vw,5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

/* ── TICKER ─────────────────────────────────── */
.ticker {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding-block: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.ticker-track span { white-space: nowrap; }
.sep { color: var(--pink); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── LEISTUNGEN ─────────────────────────────── */
.split-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem,6vw,5rem);
}

.split-header--light h2 { color: var(--white); }
.split-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.75; padding-bottom: 0.3rem; }
.split-desc--muted { color: rgba(255,255,255,0.45); }

.service-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 120px 48px;
  gap: 0 2rem;
  align-items: center;
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}

.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row:hover { background: rgba(255,92,141,0.03); }

.service-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.service-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.4rem; }
.service-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; max-width: 500px; }

.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-row:hover .service-img img { transform: scale(1.06); }

.service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.25s;
  justify-self: end;
}

.service-arrow:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ── GALERIE ────────────────────────────────── */
.gallery-scroll-wrap { margin-top: 0; }

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-lt);
  background: transparent;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.filter:hover, .filter.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.gallery-grid {
  column-count: 3;
  column-gap: 0.6rem;
  padding-inline: clamp(1.25rem,5vw,3rem);
}

@media (max-width: 768px) { .gallery-grid { column-count: 2; } }
@media (max-width: 420px) { .gallery-grid { column-count: 1; } }

.g-item {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.g-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.g-item.g-tall img { aspect-ratio: 3/4; }
.g-item:hover img { transform: scale(1.05); }

.g-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8), transparent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.5rem 0.9rem 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.g-item:hover .g-label { opacity: 1; }

/* ── PREISE ─────────────────────────────────── */
.price-table-wrap {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
}

@media (max-width: 860px) {
  .price-table-wrap { grid-template-columns: 1fr; }
  .price-divider { display: none; }
}

.price-divider { background: var(--border); }

.price-col { padding: 0 2.5rem; }

@media (max-width: 860px) {
  .price-col { padding: 0 0 2.5rem; border-bottom: 1px solid var(--border); }
  .price-col:last-child { border-bottom: none; padding-bottom: 0; margin-top: 2.5rem; }
}

.price-cat {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(13,13,13,0.05);
  font-size: 0.88rem;
}

.price-row:last-of-type { border-bottom: none; }
.price-row span:first-child { color: var(--muted); }

.price-amt {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.55;
}

/* ── CTA BAND ───────────────────────────────── */
.cta-band {
  background: var(--dark);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ── TEAM ───────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; } }

.team-card { display: flex; flex-direction: column; }

.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.team-card:hover .team-photo img { transform: scale(1.04); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,92,141,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-overlay span {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.03em;
}

.team-info h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.team-info > p:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── BEWERTUNGEN ────────────────────────────── */
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem,5vw,4rem);
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-num {
  font-family: var(--serif);
  font-size: clamp(3rem,6vw,5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--pink);
}

.score-stars { color: var(--pink); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.25rem; }
.reviews-score > div > p { font-size: 0.78rem; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

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

.review {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review--featured {
  background: var(--dark);
}

.review p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

.review--featured p { color: var(--white); }

.review footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review--featured footer { border-color: rgba(255,255,255,0.1); }

.review footer strong { font-size: 0.82rem; font-weight: 600; }
.review footer span { font-size: 0.72rem; color: var(--muted); }
.review--featured footer strong { color: var(--white); }
.review--featured footer span { color: rgba(255,255,255,0.35); }

/* ── KONTAKT ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-left h2 { font-size: clamp(3rem,6vw,5.5rem); font-weight: 300; color: var(--white); margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }

.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.contact-item p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-item a:hover { color: var(--pink); }
.muted { color: rgba(255,255,255,0.3); }

.contact-socials { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-socials a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.contact-socials a:hover { color: var(--pink); }

.contact-right { display: flex; flex-direction: column; gap: 1rem; }

.contact-map-placeholder {
  flex: 1;
  min-height: 340px;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #181818 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content { text-align: center; color: rgba(255,255,255,0.4); }
.map-content svg { margin: 0 auto 0.75rem; color: var(--pink); }
.map-content strong { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.map-content p { font-size: 0.82rem; margin-top: 0.25rem; }
.map-hint { color: var(--pink) !important; font-size: 0.75rem !important; margin-top: 0.5rem !important; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-copy a { color: var(--pink); font-weight: 500; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .split-header { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr 40px; }
  .service-img { display: none; }
  .price-table-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-inner > .btn { display: none; }
  .burger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .service-row { grid-template-columns: 40px 1fr; }
  .service-arrow { display: none; }
}
