/* ══════════════════════════════════════════════════════════
   STUDIO BEAUTÉ — Stylesheet
   ══════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream:        #F8F3EE;
  --cream-dark:   #EDE5DA;
  --beige:        #DDD0C0;
  --dark:         #3A3330;
  --dark-light:   #6B5F59;
  --gold:         #B8956A;
  --gold-light:   #D4B896;
  --white:        #FDFAF8;

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

  --nav-h:        72px;
  --section-pad:  120px;
  --radius:       4px;
  --transition:   0.35s ease;
  --shadow:       0 4px 32px rgba(58,51,48,0.10);
  --shadow-sm:    0 2px 12px rgba(58,51,48,0.08);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p { color: var(--dark-light); font-size: 0.97rem; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header__sub {
  font-size: 1rem;
  margin-top: 0.75rem;
  color: var(--dark-light);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9em 2.5em;
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn:hover {
  background: transparent;
  color: var(--dark);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--full { width: 100%; text-align: center; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ══════════════════════════════════════════ NAVIGATION ══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253,250,248,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 1300px;
  margin: 0 auto;
}
.nav__wordmark {
  height: 22px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(800%) hue-rotate(340deg) brightness(90%);
  transition: opacity var(--transition);
}
.nav__wordmark:hover { opacity: 0.6; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--dark);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  opacity: 1 !important;
  padding: 0.6em 1.6em;
  border: 1.5px solid var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
}
.nav__cta:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
}

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(253,250,248,0.97);
  backdrop-filter: blur(12px);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  gap: 0;
  border-top: 1px solid var(--cream-dark);
}
.nav__mobile.open { display: flex; }
.mobile-link {
  padding: 1rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--cream-dark);
  opacity: 0.8;
}
.mobile-link--cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.9em;
  border: 1.5px solid var(--dark);
  border-radius: var(--radius);
  opacity: 1;
}

/* ══════════════════════════════════════════════ HERO ══ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(184,149,106,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(184,149,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero__logo {
  width: clamp(180px, 35vw, 340px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(800%) hue-rotate(340deg) brightness(90%);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--dark-light);
  letter-spacing: 0.04em;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════════ ABOUT ══ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-wrap::before {
  content: '';
  position: absolute;
  inset: -24px -24px 24px 24px;
  background: var(--cream);
  border-radius: 2px;
  z-index: 0;
}
.about__image-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__icon {
  width: 40%;
  opacity: 0.25;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(800%) hue-rotate(340deg) brightness(90%);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__text h2 { line-height: 1.1; }
.about__text p { font-size: 1rem; line-height: 1.8; }

/* ══════════════════════════════════════════ LEISTUNGEN ══ */
.leistungen {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--beige);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}
.service-card:hover { background: var(--cream); }
.service-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-card ul li {
  font-size: 0.85rem;
  color: var(--dark-light);
  padding-left: 1rem;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.service-card__link {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  opacity: 0.5;
  transition: opacity var(--transition), color var(--transition);
}
.service-card__link:hover { opacity: 1; color: var(--gold); }

/* ══════════════════════════════════════════ PREISLISTE ══ */
.preisliste {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.price-category {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.price-category:last-child { margin-bottom: 0; }
.price-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.price-category__icon { font-size: 1.2rem; }
.price-category__header h3 {
  font-size: 1.6rem;
  color: var(--dark);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--cream);
  transition: background var(--transition);
}
.price-item:last-of-type { border-bottom: none; }
.price-item:hover { background: var(--cream); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: var(--radius); }
.price-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.price-item__info h4 { font-size: 1.05rem; color: var(--dark); }
.price-item__sub { font-weight: 300; font-size: 0.9rem; color: var(--dark-light); font-family: var(--font-sans); }
.price-item__info p { font-size: 0.88rem; color: var(--dark-light); margin: 0; }
.price-item__note { font-style: italic; color: var(--gold) !important; }
.price-item__duration {
  font-size: 0.78rem;
  color: var(--dark-light);
  opacity: 0.65;
}
.price-item__tag {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.price-item__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  white-space: nowrap;
  padding-top: 0.1rem;
}

/* Sub-item (Auffüllen) */
.price-item--sub { background: transparent; }
.price-item--sub h4 { margin-bottom: 0.5rem; }
.price-item__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.price-item__list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--dark-light);
  padding-right: 1rem;
  max-width: 360px;
}
.price-item__list li span:last-child {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
}

/* Extras */
.extras-grid {
  display: flex;
  flex-direction: column;
}
.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.9rem;
  color: var(--dark-light);
  gap: 1rem;
}
.extra-item span:last-child {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════ TERMIN ══ */
.termin {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.termin__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.termin__booking {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Form */
.termin__form-wrap { position: relative; }
.termin__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.65;
}
input, textarea, select {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 0.8em 1em;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--dark); opacity: 0.3; }
input:focus, textarea:focus, select:focus { border-color: var(--dark); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A3330' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--dark-light);
  margin-top: 0.5rem;
}
.form-note a {
  color: var(--dark);
  border-bottom: 1px solid var(--beige);
  transition: border-color var(--transition);
}
.form-note a:hover { border-color: var(--dark); }

/* Success state */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success[hidden] { display: none; }
.form-success__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success__icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 56px;
  text-align: center;
}
.form-success__inner h3 { font-size: 1.8rem; }
.form-success__inner p { color: var(--dark-light); font-size: 0.95rem; }

/* Contact Card */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 1.7rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  color: var(--dark);
  opacity: 0.7;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 2px;
  line-height: 1.2;
  font-weight: 400;
}
.contact-item > div {
  line-height: 1.3;
}
.contact-item a, .contact-item em {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--dark-light);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--dark); }

/* ══════════════════════════════════════════════ FOOTER ══ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 0 2.5rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer__logo-img {
  height: 70px;
  width: auto;
  filter: invert(1) brightness(0.85);
  opacity: 0.7;
}
.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}
.footer__links a { transition: opacity var(--transition); }
.footer__links a:hover { opacity: 1; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(253,250,248,0.2);
  border-radius: 50%;
  color: var(--cream);
  opacity: 0.55;
  transition: opacity var(--transition), border-color var(--transition);
}
.footer__social a:hover { opacity: 1; border-color: rgba(253,250,248,0.6); }
.footer__copy {
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.35;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.3;
}
.footer__legal a:hover { opacity: 1; }

/* ══════════════════════════════════════════ RESPONSIVE ══ */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrap::before { display: none; }
  .about__image-placeholder { aspect-ratio: 16/10.89; }
  .about__icon { width: 20%; }

  .leistungen__grid { grid-template-columns: 1fr; }

  .termin__grid { grid-template-columns: 1fr; }
  .termin__booking iframe { height: 500px; }

  .price-item:hover { margin: 0; padding-left: 0; padding-right: 0; background: transparent; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px; }

  .hero__content { gap: 1.5rem; }
  .hero__logo { width: clamp(160px, 60vw, 260px); }

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

  .extras-grid { grid-template-columns: 1fr; }

  .footer__links { gap: 1.25rem; }
}
