/*
 * style.css — Inna Schelle · Mobiler Friseur Lüneburg
 * Ästhetik: Elegant Bridal / Mobile Artisan
 * Palette: Ivory · Champagne · Blush
 */

@import url('fonts.css');

:root {
  --paper:    #FBF9F6;
  --paper-d:  #F3EEE8;
  --ink:      #1A1410;
  --ink-s:    #3D3530;
  --accent:   #B8956A;
  --accent-d: #9A7A52;
  --muted:    #8C8070;
  --line:     #DDD5CC;
  --blush:    #E8D5CF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --pad-x:     clamp(1.25rem, 5vw, 2.5rem);
  --radius:    2px;
}

/* ——— Reset & Base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ——— Demo-Banner ——— */
.demo-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem var(--pad-x);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.demo-banner a { text-decoration: underline; opacity: 0.85; }
.demo-banner a:hover { opacity: 1; }

/* ——— Masthead ——— */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad-x);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.masthead .brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.masthead .brand span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}
.masthead nav {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.masthead nav a { color: var(--ink-s); transition: color 0.2s; }
.masthead nav a:hover { color: var(--accent); }
.masthead .nav-cta {
  background: var(--accent);
  color: var(--paper);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.masthead .nav-cta:hover { background: var(--accent-d); }

@media (max-width: 680px) {
  .masthead nav { gap: 1rem; }
  .masthead nav a.nav-hide { display: none; }
}

/* ——— Container ——— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ——— Section ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-alt {
  background: var(--paper-d);
}

/* ——— Hero ——— */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { }
.hero-eyebrow {
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-s);
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-visual-inner {
  aspect-ratio: 4/5;
  background: var(--paper-d);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.hero-visual-bg {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(184, 149, 106, 0.04) 20px,
      rgba(184, 149, 106, 0.04) 21px
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
}
.hero-ornament {
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  opacity: 0.6;
}
.hero-visual-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.25rem;
  background: var(--accent);
  color: var(--paper);
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 160px;
  font-family: var(--font-body);
}
.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 9vw, 4rem); }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent-d); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink-s);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ——— USP-Leiste ——— */
.usp-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-d);
  padding: 1.5rem 0;
}
.usp-list {
  display: flex;
  gap: 0;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.usp-list li {
  padding: 0.6rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-s);
  font-weight: 500;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.usp-list li:last-child { border-right: 0; }
.usp-list li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.7rem;
}

/* ——— Section-Header ——— */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-header.centered { text-align: center; }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  margin-top: 0.85rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}
.section-header.centered .section-sub { margin: 0.85rem auto 0; }

/* ——— Services Bento-Grid ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--paper-d); }
.service-card.featured {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}
.service-card.featured:hover { background: var(--ink-s); }
.service-card.blush {
  background: var(--blush);
}
.service-card.blush:hover { background: #ddc5be; }
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-card.featured .service-icon {
  border-color: rgba(255,255,255,0.2);
  color: var(--paper);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.service-card.featured .service-name {
  font-size: 2rem;
  font-style: italic;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-card.featured .service-desc {
  color: rgba(255,255,255,0.65);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  margin-top: 1rem;
  display: block;
}
.service-card.featured .service-price {
  font-size: 2.5rem;
  color: var(--paper);
  opacity: 0.9;
  text-align: right;
  line-height: 1;
  align-self: end;
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .service-card.featured .service-price { text-align: left; }
}
@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: span 1;
  }
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-portrait {
  aspect-ratio: 3/4;
  background: var(--paper-d);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-portrait-placeholder {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
  opacity: 0.7;
}
.about-quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--paper);
  padding: 1.25rem 1.4rem;
  max-width: 220px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}
.about-quote-card::before {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  display: block;
  opacity: 0.4;
  margin-bottom: 0.25rem;
}
.about-content {}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.about-lead em { font-style: italic; color: var(--accent); }
.about-body {
  font-size: 0.97rem;
  color: var(--ink-s);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pill {
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-s);
  background: transparent;
}
.pill.active {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--ink);
}

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

/* ——— Ablauf ——— */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.process-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
}

/* ——— Kontakt ——— */
.contact-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.contact-heading em { font-style: italic; color: var(--accent); }
.contact-sub {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  opacity: 0.85;
}
.contact-details .detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.15rem;
  display: block;
}
.contact-details .detail-value {
  font-size: 0.95rem;
}
.contact-details a:hover { color: var(--accent); }
.detail-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Kontakt-Formular */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--paper);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { opacity: 0.4; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select option { background: #1A1410; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.78rem;
  opacity: 0.45;
  line-height: 1.5;
}
.contact-form .btn-primary {
  align-self: flex-start;
}

@media (max-width: 780px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ——— Footer ——— */
.footer {
  margin-top: auto;
  padding: 2rem var(--pad-x) 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-s);
}
.footer nav {
  display: flex;
  gap: 1.5rem;
}
.footer nav a:hover { color: var(--accent); }
.footer-note {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ——— Scroll-Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ——— Legal ——— */
.legal { max-width: 760px; margin: 0 auto; padding: 4rem 2.5rem; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.legal .sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.55;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 2rem 0 0.5rem;
}
.legal p, .legal li { margin-bottom: 0.5rem; opacity: 0.82; font-size: 0.95rem; }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal a { color: inherit; text-decoration: underline; }
@media (max-width: 540px) { .legal { padding: 2.5rem 1.25rem; } }

/* ——— Utility ——— */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
