/* ============================================================
   STAR Damen & Herren Friseursalon — Bad Ems
   Bold salon design system: confident upright serif signage type
   (matches the salon's own upright gold "STAR" wordmark), gold/espresso,
   graphic-led (no stock photos)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* palette — cream paper, saturated gold, near-black espresso (matches the salon's own gold-on-dark-wood STAR sign) */
  --paper: #faf6ee;
  --paper-2: #f1e6d3;
  --card: #ffffff;
  --ink: #1c130c;
  --ink-soft: #6b5d4f;
  --gold-light: #e7c465;
  --gold: #c8992c;
  --gold-deep: #9c7218;
  --gold-tint: #f4e6c3;
  --walnut: #241610;
  --walnut-deep: #140c08;
  --line: rgba(28, 19, 12, 0.14);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --gold-gradient: linear-gradient(115deg, var(--gold-deep) 0%, var(--gold-light) 45%, var(--gold) 75%, var(--gold-deep) 100%);

  --shadow-soft: 0 14px 34px -16px rgba(20, 12, 8, 0.35);
  --shadow-card: 0 24px 50px -20px rgba(20, 12, 8, 0.4);
  --radius: 8px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 7px 16px 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: "\2726"; font-size: 0.95em; }
.section--walnut .eyebrow,
.cta-band .eyebrow { background: var(--gold); color: var(--walnut-deep); }

.section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.05rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
}

.section-intro {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section { padding: 90px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--paper-2); }
.section--walnut {
  background:
    linear-gradient(155deg, rgba(200, 153, 44, 0.1), transparent 40%),
    var(--walnut);
  color: #f6ede1;
}
.section--walnut .section-intro { color: rgba(246, 237, 225, 0.78); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gold-gradient);
  background-size: 220% auto;
  background-position: 0% 50%;
  color: var(--walnut-deep);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background-position: 100% 50%; box-shadow: var(--shadow-card); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--gold-light); }
.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 0.8rem; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.brand strong {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.brand small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.brand-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.logo-stars {
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 4px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.btn):hover,
.nav-links a.is-active { color: var(--ink); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  padding: 4px 10px !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: var(--ink-soft);
}
.lang-switch a.is-active { background: var(--ink); color: var(--gold-light) !important; }
.lang-switch a.is-active::after { display: none; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--gold-gradient);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 3px; background: var(--ink); border-radius: 2px; }

/* hero */
.hero {
  position: relative;
  padding: 76px 0 108px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 4%, var(--gold-tint) 0%, transparent 42%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
.hero-content { position: relative; }
.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--ink);
  aspect-ratio: 4 / 5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.photo-banner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 7;
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.services-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  align-items: start;
}
.services-visual { aspect-ratio: 4 / 5; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.hero-badge .stars { color: var(--gold-light); letter-spacing: 1px; }
.hero-badge--outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: none;
}
.hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
}
.hero-sub {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-meta a { color: var(--ink); font-weight: 800; }
.hero-meta a:hover { color: var(--gold-deep); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* trust strip */
.trust-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.88);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
  padding: 20px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.trust-strip strong { color: var(--gold-light); font-weight: 800; }

/* services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.service-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: var(--gold-deep); }
.service-card .glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  background-size: 220% auto;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--walnut-deep);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.32rem;
  margin: 0 0 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.service-card .price-note {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.price-callout {
  margin-top: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.price-callout p { margin: 0; font-size: 0.98rem; color: rgba(255,255,255,0.82); max-width: 480px; }
.price-callout strong { display: block; font-family: var(--font-body); font-size: 1.2rem; font-weight: 800; color: var(--gold-light); margin-bottom: 4px; }

/* why / about */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.about-copy p { color: rgba(246, 237, 225, 0.86); font-size: 1.02rem; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-fact {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 153, 44, 0.4);
  border-radius: var(--radius);
  padding: 20px;
}
.about-fact strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.7rem;
  background: var(--gold-gradient);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.about-fact span { font-size: 0.86rem; color: rgba(246,237,225,0.72); font-weight: 600; }

.quote-list { display: flex; flex-direction: column; gap: 16px; }
.quote-card {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.quote-card .stars { color: var(--gold-light); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.quote-card p { margin: 0; font-style: normal; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; line-height: 1.5; color: #f6ede1; }
.quote-card cite { display: block; margin-top: 12px; font-style: normal; font-size: 0.82rem; color: rgba(246,237,225,0.65); }

/* reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.review-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.review-card .stars { color: var(--gold-deep); font-size: 0.9rem; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.review-card p { font-size: 0.98rem; color: var(--ink); margin: 0 0 14px; }
.review-card cite { font-style: normal; font-size: 0.84rem; color: var(--ink-soft); font-weight: 700; }
.review-source {
  margin-top: 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.review-source a { color: var(--gold-deep); font-weight: 800; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 40px;
  align-items: start;
}
.contact-card {
  background: var(--ink);
  color: #f6ede1;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-gradient); background-size: 220% auto;
  color: var(--walnut-deep); font-family: var(--font-body); font-weight: 800; font-size: 0.78rem;
}
.contact-row h4 { margin: 0 0 4px; font-size: 0.98rem; font-weight: 800; }
.contact-row p { margin: 0; color: rgba(246,237,225,0.75); font-size: 0.94rem; }
.contact-row a { font-weight: 700; color: #fff; }
.contact-row a:hover { color: var(--gold-light); }
.hours-note {
  margin-top: 18px;
  background: rgba(200, 153, 44, 0.12);
  border: 1px solid rgba(200, 153, 44, 0.4);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: rgba(246,237,225,0.9);
}
.hours-note a { color: var(--gold-light); }
.map-frame {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; flex: 1; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }
.map-frame-link {
  display: block;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
}
.map-frame-link strong { display: block; font-weight: 800; margin-bottom: 3px; }
.map-frame-link span { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.map-frame-link:hover span { color: var(--gold-light); }

/* final CTA */
.cta-band {
  background: var(--walnut);
  background-image: linear-gradient(155deg, rgba(200, 153, 44, 0.12), transparent 45%);
  color: #f6ede1;
  text-align: center;
  padding: 78px 0;
}
.cta-band .eyebrow { margin-left: auto; margin-right: auto; }
.cta-band h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin: 16px 0 16px;
}
.cta-band p { color: rgba(246,237,225,0.8); max-width: 520px; margin: 0 auto 32px; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* footer */
.site-footer {
  background: var(--walnut-deep);
  color: rgba(246,237,225,0.7);
  padding: 46px 0 30px;
  font-size: 0.88rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: #fff; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
}

/* legal pages */
.legal-page { padding: 64px 0 100px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.legal-page h2 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 12px;
}
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 0.98rem; }
.placeholder-note {
  background: var(--gold-tint);
  border: 1px solid rgba(173,127,62,0.4);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 34px;
}
.placeholder-note strong { color: var(--gold-deep); }
.fill-gap { background: #fce8c9; padding: 1px 6px; border-radius: 3px; font-style: normal; }

/* back to top / misc */
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 280px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-intro-row { grid-template-columns: 1fr; }
  .services-visual { display: none; }
}

@media (max-width: 600px) {
  .photo-banner { aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 82px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  html.js .nav-links { transform: translateX(100%); }
  html.js .nav-links.is-open { transform: translateX(0); }
  html:not(.js) .nav-links { display: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0 64px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-cta .btn, .cta-band .btn { width: 100%; justify-content: center; }
}
