/* Sandy — Yoga & Pilates | Variante 1a (warm/erdig) */

:root {
  --bg-beige: #f3e9dc;
  --bg-white: #fff;
  --brown-dark: #4a3122;
  --brown-accent: #8a5a44;
  --brown-text: #5c4736;
  --brown-text-soft: #6b5342;
  --brown-eyebrow: #a3785e;
  --light-on-dark: #c9a488;
  --text-on-dark: #f0e4d4;
  --card-border: rgba(90,60,40,.15);
  --divider: rgba(90,60,40,.1);
  --shadow: 0 1px 3px rgba(0,0,0,.06);
  --radius-card: 8px;
  --radius-btn: 30px;
  --radius-photo: 6px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: 1120px;
  --wrap-narrow: 640px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-white);
  color: var(--brown-text);
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg-beige);
  border-bottom: 1px solid rgba(90,60,40,.12);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  position: relative;
}
.brand {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 600;
  color: #5c3d2e; letter-spacing: .02em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 17px; font-weight: 600; color: #7a5744;
  padding: 4px 0; transition: color .15s;
}
.nav-links a:hover { color: var(--brown-dark); }
.nav-toggle { display: none; }
.burger { display: none; width: 26px; height: 20px; position: relative; cursor: pointer; }
.burger span {
  position: absolute; left: 0; right: 0;
  height: 2px; background: var(--brown-dark);
  transition: transform .25s, opacity .2s;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 16px; }

/* Sections */
.section { padding: 80px 32px; }
.section-light { background: var(--bg-white); }
.section-beige { background: var(--bg-beige); }
.section-dark  { background: var(--brown-dark); color: var(--text-on-dark); }
.wrap        { max-width: var(--wrap);        margin: 0 auto; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 8px; }
.center      { text-align: center; }
.section-head { margin-bottom: 44px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }

/* Cards */
.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 500;
  color: var(--brown-dark);
  margin: 0 0 14px;
}
.card p { margin: 0; font-size: 19px; color: var(--brown-text-soft); }

/* Typo */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; color: var(--brown-dark); }
h2 { font-size: 58px; margin: 0 0 24px; line-height: 1.1; }
p  { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-size: 15px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown-eyebrow);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--light-on-dark); }
.hint { font-size: 20px; color: var(--brown-text-soft); margin-top: 28px; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(74,49,34,.88) 0%, rgba(74,49,34,.62) 42%, rgba(74,49,34,.15) 75%);
}
.hero-content { position: relative; max-width: 560px; padding: 100px 48px; }
.hero h1 {
  font-size: clamp(64px, 10vw, 100px);
  line-height: 1; color: #fff; font-weight: 600;
  letter-spacing: .01em; margin: 0;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.divider { width: 56px; height: 2px; background: var(--light-on-dark); margin: 20px 0 18px; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15; color: var(--text-on-dark);
  font-weight: 500; font-style: italic;
  margin: 0;
}
.hero-lead {
  font-size: 20px; line-height: 1.6;
  color: var(--text-on-dark);
  margin: 22px 0 32px; max-width: 460px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: var(--radius-btn);
  font-weight: 600; font-size: 18px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  transition: filter .15s, transform .15s;
}
.btn-primary { background: var(--brown-accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }

/* Über mich */
.portrait { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-photo); }

/* Philosophie */
.quote {
  font-family: var(--font-serif);
  font-size: 52px; color: var(--brown-dark);
  max-width: 800px; margin: 0 auto 40px;
  line-height: 1.2;
}
.pills { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.pill {
  background: var(--brown-accent);
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600; font-size: 18px;
}
.section-beige.center p:last-of-type {
  color: var(--brown-text-soft);
  max-width: 560px; margin: 0 auto;
  line-height: 1.75;
}

/* Studio Split */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.split-text {
  background: var(--brown-dark);
  color: var(--text-on-dark);
  padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.split-text h2 { font-size: 50px; color: var(--text-on-dark); margin: 0 0 20px; line-height: 1.15; }
.split-text > p { color: #d9c6b3; line-height: 1.7; font-size: 19px; }

/* Hotelgäste-Highlight */
.guest-highlight {
  margin-top: 56px;
  padding: 40px 40px 44px;
  background: rgba(201,164,136,.14);
  border-left: 5px solid var(--light-on-dark);
  border-radius: 10px;
}
.guest-badge {
  display: inline-block;
  background: var(--light-on-dark);
  color: var(--brown-dark);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.guest-headline {
  font-family: var(--font-serif);
  font-size: 34px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 500;
}
.guest-body {
  color: #e8dcc8;
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.btn-light {
  background: var(--text-on-dark);
  color: var(--brown-dark);
  padding: 18px 36px;
  font-size: 19px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: filter .15s, transform .15s, box-shadow .15s;
}
.btn-light:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.disclaimer {
  margin: 22px 0 0;
  font-size: 14px;
  color: rgba(240,228,212,.55);
  font-style: italic;
}

/* Stundenplan */
.table-wrap { background: var(--bg-white); border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.schedule { width: 100%; border-collapse: collapse; font-size: 19px; color: var(--brown-dark); }
.schedule thead tr { background: var(--brown-accent); color: #fff; }
.schedule th, .schedule td { padding: 16px 22px; text-align: left; }
.schedule th { font-size: 15px; font-weight: 600; letter-spacing: .04em; }
.schedule tbody tr { border-bottom: 1px solid var(--divider); }
.schedule tbody tr:last-child { border-bottom: none; }

.event-card {
  margin-top: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.event-title { font-family: var(--font-serif); font-size: 36px; color: var(--brown-dark); margin: 0; }

/* Preise */
.prices .card { padding: 52px 28px; }
.price-label { font-size: 24px; color: var(--brown-text-soft); margin-bottom: 18px; font-weight: 500; }
.price-amount { font-family: var(--font-serif); font-size: 60px; color: var(--brown-dark); margin: 0; line-height: 1; font-weight: 600; }
.price-featured { border: 2px solid var(--brown-accent); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 780px; margin: 0 auto; }
.info-item { margin-bottom: 22px; }
.info-item:last-child { margin-bottom: 0; }
.info-label { font-size: 15px; color: var(--light-on-dark); margin: 0 0 6px; letter-spacing: .04em; }
.info-value { font-size: 20px; margin: 0; color: var(--text-on-dark); line-height: 1.5; }
.info-value a { border-bottom: 1px solid transparent; transition: border-color .15s; }
.info-value a:hover { border-color: var(--light-on-dark); }

.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 17px;
  transition: border-color .15s, background .15s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(240,228,212,.7); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--light-on-dark);
  background: rgba(255,255,255,.12);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form button { margin-top: 4px; }
.section-dark h2 { color: var(--text-on-dark); }

/* Footer */
.site-footer {
  background: var(--brown-dark);
  color: var(--light-on-dark);
  text-align: center;
  padding: 24px 16px;
  font-size: 12px;
  letter-spacing: .04em;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .section { padding: 64px 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 260px; }
  .split-text { padding: 48px 32px; }
  .guest-highlight { padding: 26px 24px; }
  .guest-headline { font-size: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 80px 32px; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 16px 20px; }
  .burger { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-beige);
    border-bottom: 1px solid rgba(90,60,40,.12);
    padding: 8px 20px 20px;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(90,60,40,.08); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle:checked ~ .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .section { padding: 56px 20px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  h2 { font-size: 40px; }
  .quote { font-size: 34px; }
  .split-text h2 { font-size: 36px; }
  .brand { font-size: 30px; }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 24px; }
  .hero-lead { font-size: 16px; }
  .event-card { flex-direction: column; align-items: flex-start; }
  .schedule thead { display: none; }
  .schedule, .schedule tbody, .schedule tr, .schedule td { display: block; width: 100%; }
  .schedule tr { padding: 14px 0; border-bottom: 1px solid var(--divider); background: var(--bg-white); }
  .schedule td { padding: 4px 20px; display: flex; justify-content: space-between; gap: 12px; }
  .schedule td::before {
    content: attr(data-label);
    font-weight: 600; color: var(--brown-eyebrow);
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    align-self: center;
  }
}
