/* =====================================================
   ROOT & RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #D4A0A8;
  --gold-dark:  #B07880;
  --brown:      #6B3A42;
  --cream:      #FAF6F8;
  --cream-alt:  #F5ECEE;
  --text:       #333333;
  --text-light: #666666;
  --white:      #FFFFFF;

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

  --nav-h:      70px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* =====================================================
   UTILITY
   ===================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream-alt);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav-wrapper.scrolled {
  background: var(--brown);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity var(--transition), color var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.75) 0%, rgba(62,39,35,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding-top: var(--nav-h);
}

.hero-sub {
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(201,165,106,0.2);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(62,39,35,0.12);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-body {
  padding: 1.5rem 1.75rem;
  border-top: 3px solid var(--gold);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit {
  text-align: center;
  padding: 1rem;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* =====================================================
   ÜBER UNS
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-signature {
  font-family: var(--font-serif) !important;
  font-size: 1.8rem !important;
  color: var(--brown) !important;
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img {
    height: 320px;
  }
}

/* =====================================================
   PRICE TABLE
   ===================================================== */
.price-table-wrapper {
  overflow-x: auto;
  margin-top: 2.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table thead {
  background: var(--brown);
  color: var(--white);
}

.price-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(201,165,106,0.2);
  color: var(--text);
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr:nth-child(even) { background: var(--cream); }

.price-table tbody tr:hover { background: rgba(201,165,106,0.1); }

.price-table td:last-child {
  font-weight: 700;
  color: var(--gold-dark);
}

/* =====================================================
   INFO GRID (HOURS + CONTACT)
   ===================================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-block .section-title { margin-bottom: 1.5rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,165,106,0.25);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--brown);
}

.info-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 1rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201,165,106,0.25);
}

.contact-list li:last-child { border-bottom: none; }

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-list a:hover { color: var(--gold-dark); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--brown);
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .nav-links.open { display: flex; }

  .nav-wrapper { background: var(--brown); }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { min-height: 90vh; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
