/*
Theme Name: Lumika Waxing
Theme URI:
Author: KOMP
Description: Custom theme for Lumika
Version: 2.0.0
Text Domain: lumika
*/

/* ============================================================
   DESIGN SYSTEM — White / Pine Teal / Black / Faded Copper / Ash Grey
   ============================================================ */

:root {
  --bg:       #ffffff;      /* White */
  --bg-warm:  #edf3f1;      /* Ash Grey very light tint – derived */
  --bg-dark:  #020202;      /* Black */
  --teal:     #325e54;      /* Pine Teal */

  --text:       #020202;    /* Black */
  --text-muted: #4e7068;    /* derived: dark Pine Teal family, readable */
  --text-light: #a2b8b3;    /* Ash Grey */
  --border:     #c5d4d1;    /* derived: medium-light Ash Grey */
  --accent:     #a38764;    /* Faded Copper */

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

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 36px; width: auto; display: block; filter: invert(1); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

.nav-links a:hover        { color: var(--accent); }
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.nav-cta {
  display: inline-block;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  transition: opacity 0.3s;
}

.nav-cta:hover        { opacity: 0.82; }
.nav-cta:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-dark {
  display: inline-block;
  background: var(--text);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.3s;
}

.btn-dark:hover        { opacity: 0.82; }
.btn-dark:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover        { background: var(--text); color: #ffffff; }
.btn-outline:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline-light:hover        { background: #ffffff; color: var(--text); border-color: #ffffff; }
.btn-outline-light:focus-visible { outline: 2px solid #ffffff; outline-offset: 4px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 4rem;
}

/* ============================================================
   HERO — split layout
   ============================================================ */

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 3rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: block;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--teal);
  margin-bottom: 3.5rem;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ============================================================
   INFO STRIP — 4 columns below hero
   ============================================================ */

.info-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-col {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}

.info-col:last-child { border-right: none; }

.info-col-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.info-col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.info-col a {
  color: var(--text);
  transition: color 0.3s;
}

.info-col a:hover { color: var(--accent); }

/* ============================================================
   SERVICES / PREISLISTE
   ============================================================ */

.services {
  padding: 8rem 1.5rem;
  background: var(--bg);
}

.services-inner { max-width: 1200px; margin: 0 auto; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-header-left {}
.services-header-right {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  white-space: nowrap;
  align-self: flex-end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem;
  transition: background 0.25s;
}

.service-card:hover { background: var(--bg-warm); }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 1rem;
}

.service-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-cta { margin-top: 4rem; text-align: center; }

/* Promo banner — full width */
.promo-band {
  background: #325e54;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1.5rem;
  width: 100%;
}

.promo-band-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.promo-band-sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2rem;
}

/* ============================================================
   ABOUT / STORY — split layout
   ============================================================ */

.about {
  padding: 8rem 1.5rem;
  background: var(--bg-warm);
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-img-wrap {}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.about-text {}

.about h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--teal);
  margin-bottom: 2rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
}

.about-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.about-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   ERSTBESUCH / STEPS
   ============================================================ */

.erstbesuch {
  padding: 8rem 1.5rem;
  background: var(--bg);
}

.erstbesuch-inner { max-width: 1200px; margin: 0 auto; }

.erstbesuch-header {
  max-width: 560px;
  margin-bottom: 5rem;
}

.erstbesuch-header .section-title { margin-bottom: 1rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.step {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}

.step:hover { background: var(--bg-warm); }

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 8rem 1.5rem;
  background: var(--bg-warm);
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.testimonial-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--teal);
  margin-bottom: 2rem;
}

.testimonial-quote::before { content: '\201E'; }
.testimonial-quote::after  { content: '\201C'; }

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 8rem 1.5rem;
  background: var(--bg);
}

.faq-inner { max-width: 860px; margin: 0 auto; }

.faq-header { margin-bottom: 4rem; }

.faq-grid { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.75rem 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary       { color: var(--accent); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.faq-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  padding-bottom: 1.75rem;
  max-width: 720px;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */

.booking-cta {
  padding: 10rem 1.5rem;
  background: var(--teal);
  text-align: center;
}

.booking-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-wrap: balance;
}

.booking-cta > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}

.booking-note {
  margin-top: 2.5rem !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.08em;
}

/* Booking Placeholder */
.booking-placeholder {
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 480px;
}

.booking-placeholder-text {
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 !important;
}

/* ============================================================
   LOCATION
   ============================================================ */

.location {
  padding: 8rem 1.5rem;
  background: var(--bg-warm);
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.location-info {
  padding: 4rem;
  border-right: 1px solid var(--border);
}

.location-info h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 3rem;
}

.location-address { margin-bottom: 2rem; }

.location-address strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.location-address p { font-size: 15px; color: var(--text-muted); }

.location-email { margin-bottom: 3rem; }

.location-email a {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  transition: opacity 0.3s;
}

.location-email a:hover        { opacity: 0.75; }
.location-email a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.hours-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

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

.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.875rem 0;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hours-table td:last-child { text-align: right; }

.location-map { overflow: hidden; min-height: 420px; }

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  filter: grayscale(25%) brightness(0.95);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-dark);
  padding: 5rem 1.5rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #ffffff;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 220px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-col a:hover        { color: #ffffff; }
.footer-col a:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 4px; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links a:hover { color: #ffffff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   PAGE TEMPLATES (Impressum / Datenschutz)
   ============================================================ */

.page-hero {
  padding: 12rem 1.5rem 4rem;
  background: var(--bg-warm);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--teal);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 8rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 16px;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  margin: 3rem 0 1rem;
}

.page-content p { margin-bottom: 1rem; }

.page-content a {
  color: var(--accent);
  border-bottom: 1px solid rgba(119, 77, 49, 0.35);
  transition: border-color 0.3s;
}

.page-content a:hover { border-color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 767px) {
  .nav              { padding: 1.25rem 1.5rem; }
  .nav-links        { display: none; }
  .nav-cta          { display: none; }
  .nav-burger       { display: flex; }

  .hero             { grid-template-columns: 1fr; }
  .hero-content     { padding: 7rem 1.5rem 3rem; }
  .hero-image       { min-height: 60vw; position: relative; }
  .hero-image img   { position: absolute; }

  .info-strip-inner { grid-template-columns: 1fr 1fr; }
  .info-col:nth-child(2)               { border-right: none; }
  .info-col:nth-child(3)               { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .info-col:nth-child(4)               { border-top: 1px solid var(--border); }

  .services-grid        { grid-template-columns: 1fr; }
  .services-header      { flex-direction: column; align-items: flex-start; }
  .about-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid           { grid-template-columns: 1fr 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .location-inner       { grid-template-columns: 1fr; }
  .location-info        { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 1.5rem; }
  .footer-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-col { border-right: none !important; border-top: 1px solid var(--border); }
  .info-col:first-child { border-top: none; }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 99;
}

.nav-links.open a {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
