/* ============================================
   PELUQUERÍA LOLI — Grau & Weiß
   #FFFFFF / #F7F7F7 / #EEEEEE / #222222 / #555
   Keine Farbe außer Schwarz/Weiß/Grau.
   Keine border-radius.
   ============================================ */

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

:root {
  --w0:  #FFFFFF;
  --w1:  #F7F7F7;
  --w2:  #EEEEEE;
  --w3:  #DDDDDD;
  --g1:  #AAAAAA;
  --g2:  #666666;
  --g3:  #333333;
  --blk: #111111;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Syne', system-ui, sans-serif;
  --max:   1240px;
  --tr:    0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--w0);
  color: var(--blk);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ────────────────────────────
   CALLBAR
──────────────────────────── */
.callbar {
  background: var(--blk);
  color: var(--g1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 300;
}
.callbar__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.callbar a {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--w0);
  letter-spacing: 0.08em;
  font-style: italic;
}
.callbar a:hover { color: var(--g1); }
.callbar__dot { width: 3px; height: 3px; background: var(--g2); display: inline-block; vertical-align: middle; }
.callbar__right { margin-left: auto; }

/* ────────────────────────────
   NAV
──────────────────────────── */
.nav {
  background: var(--w0);
  border-bottom: 1px solid var(--w2);
  position: sticky;
  top: 40px;
  z-index: 200;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--blk);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo em { font-style: italic; font-weight: 300; color: var(--g1); }

.nav__links { display: flex; gap: 0; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--g2);
  transition: color var(--tr);
}
.nav__links a:hover { color: var(--blk); }

.nav__tel {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--blk);
  border: 1px solid var(--blk);
  padding: 7px 20px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr);
}
.nav__tel:hover { background: var(--blk); color: var(--w0); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--blk); transition: transform var(--tr), opacity var(--tr); }

.nav__links.is-open {
  display: flex !important;
  position: fixed;
  inset: 0;
  background: var(--w0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 299;
}
.nav__links.is-open a { font-size: 28px; font-family: var(--serif); font-style: italic; padding: 14px 24px; text-transform: none; letter-spacing: 0; color: var(--blk); }

/* ────────────────────────────
   HERO  (zwei Spalten)
──────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: calc(100vh - 104px);
  border-bottom: 1px solid var(--w2);
}

/* Linke Seite: Bild */
.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--w2);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.92);
  transition: filter 0.6s ease;
}
.hero__visual:hover img { filter: grayscale(15%) brightness(0.97); }

/* Rechte Seite: Text */
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 56px;
  border-left: 1px solid var(--w2);
  background: var(--w0);
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g1);
}
.hero__mid {}
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--blk);
  margin-bottom: 28px;
}
.hero__h1 em { display: block; font-style: italic; font-weight: 600; }
.hero__tagline { font-size: 16px; color: var(--g2); line-height: 1.7; margin-bottom: 40px; }
.hero__bottom { border-top: 1px solid var(--w2); padding-top: 28px; }
.hero__rating { font-size: 13px; color: var(--g1); letter-spacing: 0.04em; margin-bottom: 12px; }
.hero__rating strong { color: var(--blk); }

/* ────────────────────────────
   BUTTONS
──────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--blk);
  background: var(--blk);
  color: var(--w0);
  transition: background var(--tr), color var(--tr);
  cursor: pointer;
}
.btn:hover { background: var(--g3); border-color: var(--g3); }
.btn--outline { background: transparent; color: var(--blk); }
.btn--outline:hover { background: var(--blk); color: var(--w0); }
.btn--light { background: var(--w0); color: var(--blk); border-color: var(--w0); }
.btn--light:hover { background: var(--w2); border-color: var(--w2); }

/* ────────────────────────────
   SECTION HEADERS
──────────────────────────── */
.stag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--g1);
  display: block;
  margin-bottom: 14px;
}
.stag--light { color: rgba(255,255,255,0.35); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--blk);
}
.h2 em { font-style: italic; font-weight: 600; }
.h2--light { color: var(--w0); }

/* ────────────────────────────
   PRECIOS
──────────────────────────── */
.precios {
  padding: 100px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.precios__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.precios__left .stag { margin-bottom: 14px; }
.precios__left .h2 { margin-bottom: 28px; }
.precios__left p {
  font-size: 14px;
  color: var(--g2);
  line-height: 1.8;
}
.precios__left a { color: var(--blk); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.precio-list { border-top: 1px solid var(--blk); }
.precio-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--w2);
  font-size: 16px;
}
.precio-row span:first-child { color: var(--blk); font-weight: 400; }
.precio-row span:last-child {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--g3);
  font-weight: 600;
  white-space: nowrap;
}
.precio-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--g1);
  font-style: italic;
}

/* ────────────────────────────
   SERVICIOS BAND
──────────────────────────── */
.band {
  background: var(--w1);
  border-top: 1px solid var(--w2);
  border-bottom: 1px solid var(--w2);
  padding: 14px 32px;
  overflow: hidden;
  white-space: nowrap;
}
.band__track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 28s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--g2);
}
.band__track .dot { color: var(--w3); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────
   TRABAJOS
──────────────────────────── */
.trabajos {
  background: var(--blk);
  padding: 100px 32px;
}
.trabajos__header {
  max-width: var(--max);
  margin: 0 auto 52px;
}
.trabajos__sub { color: rgba(255,255,255,0.35); font-size: 14px; margin-top: 14px; }

.trabajos__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.trab {
  position: relative;
  overflow: hidden;
  background: var(--g3);
}
.trab--tall { grid-row: span 2; }
.trab--wide { grid-column: span 2; }
.trab img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.78);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.trab:hover img { filter: grayscale(0%) brightness(0.95); transform: scale(1.04); }
.trab__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: var(--w0);
  color: var(--blk);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--tr);
}
.trab:hover .trab__caption { transform: translateY(0); }

.trabajos__footer {
  max-width: var(--max);
  margin: 44px auto 0;
}
.trabajos__toggle { display: none; } /* nur mobil via @media */

/* ────────────────────────────
   SALON FOTOS
──────────────────────────── */
.salon {
  padding: 100px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.salon__header { margin-bottom: 48px; }
.salon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 4px;
}
.salon-img {
  overflow: hidden;
  background: var(--w2);
}
.salon-img--main { grid-column: span 2; grid-row: span 2; }
.salon-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(35%) brightness(0.88);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.salon-img:hover img { filter: grayscale(0%) brightness(0.97); transform: scale(1.03); }

/* ────────────────────────────
   NOSOTRAS
──────────────────────────── */
.nosotras {
  background: var(--blk);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nosotras__photo { overflow: hidden; min-height: 560px; }
.nosotras__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.65);
}
.nosotras__text {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.nosotras__text p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.85; }
.nosotras__nums {
  display: flex;
  gap: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nosotras__nums strong {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  font-style: italic;
  color: var(--w0);
  line-height: 1;
}
.nosotras__nums span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}
.nosotras__text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 24px;
}
.nosotras__text blockquote cite {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  margin-top: 14px;
  font-family: var(--sans);
  text-transform: uppercase;
}

/* ────────────────────────────
   RESEÑAS
──────────────────────────── */
.resenas { padding: 90px 32px; background: var(--w1); }
.resenas__wrap { max-width: var(--max); margin: 0 auto; }
.resenas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border: 1px solid var(--w2);
}
.resena {
  padding: 40px 36px;
  border-right: 1px solid var(--w2);
}
.resena:last-child { border-right: none; }
.resena__stars { font-size: 14px; color: var(--g3); letter-spacing: 4px; margin-bottom: 20px; }
.resena p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.75;
  color: var(--g3);
  margin-bottom: 20px;
}
.resena cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g1);
}

/* ────────────────────────────
   CONTACTO
──────────────────────────── */
.contacto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.contacto__info {
  background: var(--blk);
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.contacto__tel {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 600;
  font-style: italic;
  color: var(--w0);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color var(--tr);
}
.contacto__tel:hover { color: var(--g1); }
.contacto__detalles { display: flex; flex-direction: column; gap: 22px; }
.contacto__detalles > div { display: flex; flex-direction: column; gap: 5px; }
.contacto__detalles strong {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.contacto__detalles span { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.contacto__mapa { overflow: hidden; }
.contacto__mapa iframe { width: 100%; height: 100%; display: block; filter: grayscale(40%); }

/* ────────────────────────────
   FOOTER
──────────────────────────── */
.footer { background: #080808; }
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--w0);
}
.footer__logo em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer__tel {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  transition: color var(--tr);
}
.footer__tel:hover { color: var(--w0); }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { height: 55vh; }
  .hero__text { padding: 56px 40px; border-left: none; border-top: 1px solid var(--w2); }

  .precios__layout { grid-template-columns: 1fr; gap: 48px; }

  .trabajos__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .trab--tall { grid-row: unset; }
  .trab--wide { grid-column: span 2; }

  .salon__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .salon-img--main { grid-column: span 2; height: 340px; }
  .salon-img:not(.salon-img--main) { height: 210px; }

  .nosotras { grid-template-columns: 1fr; }
  .nosotras__photo { min-height: 360px; }
  .nosotras__text { padding: 60px 48px; }

  .contacto { grid-template-columns: 1fr; }
  .contacto__info { padding: 60px 48px; }
  .contacto__mapa { height: 360px; }

  .resenas__grid { grid-template-columns: 1fr; }
  .resena { border-right: none; border-bottom: 1px solid var(--w2); }
  .resena:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .callbar__dot { display: none; }
  .callbar__wrap > span:first-child,
  .callbar__right { display: none; }

  .nav__links { display: none; }
  .nav__tel { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__text { padding: 44px 28px; }
  .precios { padding: 72px 24px; }
  .trabajos { padding: 72px 24px; }
  .salon { padding: 72px 24px; }
  .resenas { padding: 72px 24px; }

  .trabajos__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .trab { height: 240px; }
  .trab--wide { grid-column: unset; }

  /* Nur die ersten 2 sichtbar — Rest versteckt */
  .trab:nth-child(n+3) { display: none; }
  .trabajos__grid.is-open .trab:nth-child(n+3) { display: block; }

  /* Toggle-Button nur auf Mobil */
  .trabajos__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--w0);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--tr);
  }
  .trabajos__toggle:hover { background: rgba(255,255,255,0.1); }
  .trabajos__toggle .toggle-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.4s ease;
  }
  .trabajos__toggle.is-open .toggle-icon { transform: rotate(45deg); }

  .salon__grid { grid-template-columns: 1fr; }
  .salon-img--main,
  .salon-img:not(.salon-img--main) { height: 220px; grid-column: unset; }

  .nosotras__text { padding: 48px 28px; }
  .nosotras__nums { gap: 28px; }
  .contacto__info { padding: 48px 28px; }

  .footer__top { flex-direction: column; gap: 12px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}
