.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
}

.hero-text-section {
  position: relative;
  background: var(--ivory);
  z-index: 10;
  opacity: 0;
  transform: translateY(100vh);
  animation: heroFadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.25rem 1.5rem;
  color: var(--charcoal);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 15ch;
  margin: 1rem 0;
  color: var(--charcoal);
}

.hero-content p {
  max-width: 70ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.8;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(100vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text-section {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.intro-overlay {
  position: absolute;
  top: 8vh;
  left: 0;
  right: 0;
  background: transparent;
  margin: 0;
  z-index: 15;
  pointer-events: none;
  will-change: transform, opacity;
}

.intro-overlay .inner {
  pointer-events: auto;
  text-align: center;
  padding: 3rem 1.5rem;
}

.intro-overlay .section-tag {
  color: rgba(255, 255, 255, 0.85);
  justify-content: center;
}

.intro-overlay .section-tag::before {
  display: none;
}

.intro-overlay .section-title {
  color: var(--white);
  text-align: center;
}

.services {
  background: var(--charcoal);
  color: var(--ivory);
}

.services .section-tag {
  color: var(--accent-soft);
}

.services .section-tag::before {
  background: var(--accent-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  border: 1px solid rgba(250, 249, 247, 0.16);
  padding: 1.5rem;
  background: rgba(250, 249, 247, 0.04);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.75;
}

.awards {
  background: var(--ivory);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar {
  border: 1px solid var(--ivory-deep);
  background: var(--ivory-dark);
  padding: 1.25rem;
}

.pillar h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about {
  background: var(--ivory-dark);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.testimonials {
  background: var(--charcoal);
  color: var(--ivory);
}

.testimonials .section-tag {
  color: var(--accent-soft);
}

.testimonials .section-tag::before {
  background: var(--accent-soft);
}

.quotes {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-soft) transparent;
}

.quotes::-webkit-scrollbar {
  height: 6px;
}

.quotes::-webkit-scrollbar-thumb {
  background: var(--accent-soft);
  border-radius: 3px;
}

.quotes-loading {
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.quote {
  flex: 0 0 clamp(260px, 78vw, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid rgba(250, 249, 247, 0.16);
  background: rgba(250, 249, 247, 0.04);
}

.quote-stars {
  color: var(--accent-soft);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.quote-text {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.quote-tags span {
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(250, 249, 247, 0.22);
  border-radius: 999px;
  color: var(--accent-soft);
}

.quote-foot {
  margin-top: auto;
  padding-top: 0.4rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.quote-foot cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
}

.quote-date {
  font-size: 0.72rem;
  color: rgba(250, 249, 247, 0.5);
  white-space: nowrap;
}

.quote-source {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  text-decoration: none;
}

.quote-source:hover {
  text-decoration: underline;
}

.quotes-hint {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.4);
}

.prices {
  background: var(--ivory);
}

.table-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--ivory-deep);
  vertical-align: top;
}

th {
  background: var(--ivory-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td {
  font-size: 1rem;
}

td strong {
  font-weight: 600;
}

.retreat {
  background: var(--ivory-dark);
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.retreat img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.retreat p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-soft);
}

.retreat-meta {
  margin-top: 1rem;
  color: var(--charcoal);
}

.contact {
  background: var(--charcoal);
  color: var(--ivory);
}

.contact .section-tag {
  color: var(--accent-soft);
}

.contact .section-tag::before {
  background: var(--accent-soft);
}

.contact .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.2rem;
}

.contact-tiles {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  border: 1px solid rgba(250, 249, 247, 0.2);
  background: rgba(250, 249, 247, 0.06);
  padding: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 249, 247, 0.45);
  background: rgba(250, 249, 247, 0.1);
}

.contact-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: var(--accent);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-tile h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.contact-tile p {
  color: rgba(250, 249, 247, 0.9);
  margin-bottom: 0.6rem;
}

.contact-meta {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}

.contact-image-placeholder {
  min-height: 360px;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.contact-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ---------- Content-Update: Chips, Warum, Listen, Lash & Brow ---------- */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.service-chips span {
  border: 1px solid var(--ivory-deep);
  background: var(--ivory-dark);
  color: var(--charcoal);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.why {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.why-grid > p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1.08rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  line-height: 1.5;
}

.suited {
  margin-top: 1.5rem;
}

.suited > span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.suited ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
}

.suited li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 1rem;
}

.suited li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Lash & Brow — an die übrigen Textsektionen angeglichen (linksbündig,
   grüner Tag oben wie bei der Preisliste, gleiche Schriftgrößen) */
.lashbrow {
  background: var(--ivory);
}

.lashbrow .lb-body {
  max-width: 760px;
}

.lashbrow p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-soft);
}

.lashbrow .closing {
  color: var(--accent-dark);
}

/* Harmonisierte Absatz-Abstände in allen Textsektionen */
.why-grid > p,
.retreat .retreat-grid > div > p,
.about .about-wrap > div > p,
.lashbrow .lb-body > p {
  margin-bottom: 1.15rem;
}

/* Moderne Handschrift-Signatur „Deine Cindy" */
.about .signature,
.contact .signature {
  font-family: var(--script);
  font-size: 3rem;
  line-height: 1;
  margin-top: 0.4rem;
}

.about .signature {
  color: var(--accent-dark);
  margin-top: 1.1rem;
}

.about .cert-badge {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
}

.contact .contact-signoff {
  color: rgba(250, 249, 247, 0.85);
  font-size: 1rem;
}

.contact .signature {
  color: var(--accent-soft);
}

@media (max-width: 960px) {
  .contact-tiles {
    grid-template-rows: auto;
  }

  .cards,
  .pillars,
  .quotes,
  .table-wrap,
  .about-wrap,
  .contact-grid,
  .retreat-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }
}

/* ===== Einheitliche Section-Header über ALLE Sektionen =====
   WICHTIG: Selektor als p.section-tag / p.eyebrow (Spezifität 0-1-1) und ganz
   am Dateiende. Nur so schlägt er die generischen Textregeln .retreat p /
   .about p / .lashbrow p / .hero-content p (ebenfalls 0-1-1, aber weiter oben),
   die sonst die Tags dunkel (--text-soft) und groß (1.05rem) machen würden.
   Die dunklen Overrides (.services/.testimonials/.contact .section-tag, 0-2-0)
   gewinnen weiterhin -> dort hellgrün. */
p.section-tag,
p.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

p.section-tag::before,
p.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* Bild-Sektionen abwechselnd links/rechts ausrichten */
.retreat-grid.media-right > img,
.about-wrap.media-right > img {
  order: 2;
}
