/* ── Tokens ─────────────────────────────────────────── */
:root {
  --cream:    #FAF7F2;
  --warm:     #F0E8DB;
  --sand:     #D4B896;
  --terracotta: #B5714A;
  --dark:     #2A1F14;
  --mid:      #6B4F3A;
  --light-text: #9A7D68;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--terracotta);
}
.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-burger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--mid); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  justify-content: center;   /* zentriert das Text+Video-Paar */
  gap: 2rem;                 /* definierter Abstand im Paar */
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  max-width: 640px;
  position: relative; z-index: 2;
}
.hero-tagline {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Decorative elements */
.hero-img-wrap {
  position: relative;        /* im Fluss -> wird Teil der zentrierten Gruppe */
  display: flex;
  align-items: center;
  z-index: 1;
  margin-left: -3rem;        /* Video-Fade schiebt sich dezent unter den Text */
}
.hero-img-placeholder {
  width: 380px;
  height: 500px;
  background: var(--warm);
  border-radius: 200px 200px 200px 200px;
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-img {
  width: clamp(380px, 46vw, 660px); height: 500px;
  object-fit: cover;
  border-radius: 25px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 45%);
  mask-image: linear-gradient(to right, transparent 0%, black 45%);
}
.deco-1 {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  top: 50%; right: 40px;
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: -1;
}
/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--terracotta);
}

/* ── Container ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.services .container {
  overflow: visible;
  padding: 0;
}

/* ── Section labels ──────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-label.center { text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--terracotta); }

/* ── About ───────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  aspect-ratio: 3/4;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
/* Swap in with: <img src="/static/img/portrait.jpg" alt="Lisa, mobile Friseurin" class="about-img"> */
.about-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.about-text p { color: var(--mid); margin-bottom: 1rem; }
.about-perks {
  list-style: none;
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.about-perks li { font-size: 0.9rem; color: var(--mid); letter-spacing: 0.03em; }

/* ── Services / Preisübersicht ───────────────────────── */
.services { padding: 7rem 0; background: var(--cream); }

.price-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.price-group-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand);
}
.price-list { list-style: none; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0;
}
.price-name {
  color: var(--dark);
  font-size: 0.95rem;
}
.price-name small {
  display: block;
  font-size: 0.78rem;
  color: var(--light-text);
  margin-top: 0.1rem;
}
.price-dots {
  flex: 1;
  min-width: 2rem;
  border-bottom: 2px dotted var(--sand);
  transform: translateY(-4px);
}
.price-value {
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
.price-group-note {
  margin-top: 1.3rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--light-text);
}

/* ── Galerie (Sidescroller) ──────────────────────────── */
.gallery { padding: 7rem 0; }
.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1.5rem;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
}
.gallery-item img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}
.gallery-item img:hover { transform: scale(1.03); }
.gallery-empty {
  text-align: center;
  color: var(--light-text);
  font-style: italic;
}

/* Pfeil-Buttons (Galerie) */
.services-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.scroll-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: transparent;
  color: var(--mid);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.scroll-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

/* ── Contact ─────────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: var(--warm);
}
.contact-intro {
  text-align: center;
  color: var(--mid);
  margin-bottom: 3rem;
}
.contact-form { max-width: 680px; margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-family: var(--sans);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--serif);
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  background: #F2F0ED;
  border: 1px solid var(--mid);
  border-bottom: 1px solid var(--sand);
  border-radius: 8px;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid);
  font-style: var(--serif);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom: 1px solid var(--terracotta);
  box-shadow: none;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.8;
}

.form-group select {
  cursor: pointer;
  color: var(--dark);
}

.form-group select option[value=""] {
  color: var(--sand);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.85rem;
}
.form-feedback {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.15rem;
  min-height: 1.5rem;
  font-family: var(--serif);
  font-weight: 500;
}
.form-feedback.success {
  color: #1b4332;
  background: #d8f3dc;
  border: 1px solid #95d5b2;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
}
.form-feedback.error {
  color: #c0392b;
  background: #fdecea;
  border: 1px solid #f5c6c2;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--warm);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--sand);
}
.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; }
.footer-copy { font-size: 0.8rem; color: var(--light-text); opacity: 0.6; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { justify-content: flex-start; gap: 0; }
  .hero-img-wrap {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 52%;
    justify-content: center;
    margin-left: 0;
  }
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    z-index: 99;
  }

  .hero { padding: 7rem 1.5rem 4rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

  .price-groups { grid-template-columns: 1fr; gap: 2.5rem; }
	.price-row {
    	flex-direction: column;
    	align-items: center;
    	text-align: center;
 	gap: 0.15rem;
  }
  .price-dots { display: none; }
  .price-name { font-size: 1.05rem; }
  .price-value { font-size: 1.05rem; }
  .price-group-title { text-align: center; }
  .price-group-note { text-align: center; }
}

@media (max-width: 480px) {
  .gallery-item img { width: 240px; height: 320px; }
}

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline { animation: fadeUp 0.6s ease both; }
.hero-title   { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub     { animation: fadeUp 0.6s 0.2s ease both; }
.btn-primary  { animation: fadeUp 0.6s 0.3s ease both; }

/* ── Custom Select ───────────────────────────────────── */
.custom-select {
  position: relative;
  user-select: none;
}
.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #F2F0ED;
  border: 1px solid var(--mid);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--sand);
  transition: border-color var(--transition);
}
.custom-select-trigger.selected { color: var(--dark); }
.custom-select-trigger:hover { border-color: var(--terracotta); }
.custom-select-arrow {
  font-size: 0.8rem;
  color: var(--mid);
  transition: transform var(--transition);
}
.custom-select.open .custom-select-arrow { transform: rotate(180deg); }
.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #F5F0E8;
  border: 1px solid var(--mid);
  border-radius: 8px;
  list-style: none;
  overflow: hidden;
  z-index: 50;
}
.custom-select.open .custom-select-options { display: block; }
.custom-select-options li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition);
}
.custom-select-options li span {
  color: var(--terracotta);
  font-size: 0.85rem;
}
.custom-select-options li:hover { background: var(--warm); }
.custom-select-options li.active { background: var(--warm); color: var(--terracotta); }


/* ── Label-Icons (Inline-SVG statt Icon-Webfont) ─────── */
.label-icon {
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.label-optional {
  font-weight: 300;
  color: var(--light-text);
  text-transform: none;
  letter-spacing: normal;
}

/* ── Honeypot: visuell komplett versteckt ────────────── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ── Datenschutz-Hinweis unterm Formular ─────────────── */
.form-privacy-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--light-text);
  text-align: center;
}
.form-privacy-note a {
  color: var(--terracotta);
  text-decoration: underline;
}

/* ── Rechtsseiten (Impressum / Datenschutz) ──────────── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 1.5rem 4rem;
}
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 2.2rem 0 0.8rem;
  scroll-margin-top: 6rem; /* Sprungmarken landen nicht unter der fixen Navbar */
}
.legal-page h3 { margin: 1.5rem 0 0.5rem; font-size: 1.05rem; }
.legal-page p, .legal-page li { color: var(--mid); font-size: 0.95rem; }
.legal-page ul { padding-left: 1.3rem; margin: 0.6rem 0; }
.legal-page a { color: var(--terracotta); text-decoration: underline; }
.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta) !important;
  text-decoration: none !important;
}

/* ── Hero-Animationen: driftende Farbflächen + Ken Burns ── */

/* Zwei weichgezeichnete "Blobs", die langsam durch den Hero wandern.
   Als Pseudo-Elemente -> keine HTML-Änderung nötig. */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.45), transparent 70%);
  top: -120px; left: -100px;
  animation: blobDrift1 22s ease-in-out infinite alternate;
}
.hero::after {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(181, 113, 74, 0.22), transparent 70%);
  bottom: -180px; right: 18%;
  animation: blobDrift2 28s ease-in-out infinite alternate;
}
@keyframes blobDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, 60px) scale(1.15); }
}
@keyframes blobDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-80px, -50px) scale(1.1); }
}

/* Ken-Burns-Zoom auf dem Portrait: kaum merklich, aber lebendig */
.hero-img {
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* Deko-Kreis atmet leicht mit */
.deco-1 {
  animation: decoPulse 12s ease-in-out infinite alternate;
}
@keyframes decoPulse {
  from { transform: translateY(-50%) scale(1);    opacity: 0.4; }
  to   { transform: translateY(-50%) scale(1.07); opacity: 0.25; }
}

/* Barrierefreiheit: Nutzer mit reduzierter Bewegung bekommen Ruhe */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-img, .deco-1 {
    animation: none;
  }
}

/* ── Hero-Video (Loop im Portrait-Slot) ──────────────── */
.hero-video {
  width: clamp(380px, 46vw, 660px); height: 500px;
  object-fit: cover;            /* füllt den Rahmen, schneidet Überstand ab */
  border-radius: 25px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
  mask-image: linear-gradient(to right, transparent 0%, black 55%);
  background: var(--warm);      /* Platzhalterfläche, bis Poster/Video lädt */
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-logo-mark {
  height: 1.5em;        /* skaliert mit der font-size der Logo-Schrift */
  width: auto;
  display: block;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-logo-mark {
  height: 1.4em;
  width: auto;
  display: block;
}
