/* ==========================================================================
   Natürlich Schön – Stylesheet
   ========================================================================== */

:root {
  --color-cream: #faf6ef;
  --color-cream-alt: #f4ede0;
  --color-beige: #e9dcc3;
  --color-sage: #9bae93;
  --color-sage-dark: #607557;
  --color-sage-light: #d7ded4;
  --color-gold: #b08c4f;
  --color-gold-light: #e3c795;
  --color-text: #3b362e;
  --color-text-muted: #6b6459;
  --color-white: #ffffff;
  --color-border: #e2d8c4;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", Roboto, sans-serif;

  --container-width: 1160px;
  --radius: 10px;
  --shadow-soft: 0 12px 32px rgba(59, 54, 46, 0.08);
  --transition: 0.25s ease;
  --banner-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }

a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-gold); }

ul { list-style: none; margin: 0; padding: 0; }

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

section { padding: 96px 0; }

.center { text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 500;
  margin: 0 0 0.9em;
}
.eyebrow.center { text-align: center; }

.section-intro {
  max-width: 720px;
  margin: 0 auto 1.2em;
  text-align: center;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-sage-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-sage-dark);
  color: var(--color-white);
}
.btn-primary:hover {
  background: #485742;
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}
.btn-secondary:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
}

.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-small { padding: 10px 22px; font-size: 0.88rem; }

.btn-submit { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: var(--banner-h, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.logo:hover { color: var(--color-sage-dark); }

.logo-mark {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: var(--color-text);
  font-size: 0.98rem;
  position: relative;
}
.main-nav a:hover { color: var(--color-sage-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59, 54, 46, 0.45) 0%, rgba(59, 54, 46, 0.35) 45%, rgba(250, 246, 239, 0.96) 96%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 720px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 0.3em;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.7em;
}

.hero-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 2em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.8);
}
.hero .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-sage-dark);
}

/* ==========================================================================
   About
   ========================================================================== */

.about { background: var(--color-white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.about-text .eyebrow { margin-bottom: 0.7em; }

/* ==========================================================================
   Treatments
   ========================================================================== */

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

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.treatment-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.treatment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  margin-bottom: 18px;
}
.treatment-icon svg { width: 26px; height: 26px; }

.treatment-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.treatment-card p { margin-bottom: 0; font-size: 0.96rem; }

.treatment-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.treatment-category { margin-top: 56px; }
.treatment-category:first-of-type { margin-top: 48px; }

.category-title {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}

.category-badge {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: var(--color-beige);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.treatment-card--priced {
  display: flex;
  flex-direction: column;
}
.treatment-card--priced h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3em;
}

.treatment-card-image {
  display: block;
  width: calc(100% + 56px);
  aspect-ratio: 4 / 3;
  margin: -34px -28px 20px;
  padding: 0;
  border: none;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-cream-alt);
}
.treatment-card-image[hidden] { display: none; }
.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.treatment-card-image:hover img { transform: scale(1.04); }
.treatment-card-image:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

.treatment-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.treatment-more-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.treatment-more-link:hover { color: var(--color-gold); }
.treatment-subtitle {
  font-size: 0.9rem;
  margin-bottom: 0.6em;
}
.treatment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0.4em 0 1.2em;
}
.duration-tag {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.price-tag {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-sage-dark);
}
.btn-card {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits { background: var(--color-sage-dark); color: var(--color-white); }
.benefits .eyebrow { color: var(--color-gold-light); }
.benefits h2 { color: var(--color-white); }

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px 32px;
  max-width: 900px;
  margin: 48px auto 56px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95);
}

.benefit-mark {
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.tagline {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-gold-light);
  margin: 0;
}

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

.faq { background: var(--color-white); }

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-cream-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 4px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--color-sage-dark);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

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

.faq-item p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Events
   ========================================================================== */

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

.events-empty {
  max-width: 520px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
}
.events-empty[hidden] { display: none; }

.event-feature-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  text-align: center;
}
.event-feature-card[hidden] { display: none; }
.event-feature-card h3 { font-size: 1.5rem; margin-bottom: 0.4em; }
.events-section-location,
.event-feature-card .events-section-location {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1em;
}
.events-section-description,
.event-feature-card .events-section-description {
  color: var(--color-text-muted);
  margin-bottom: 1.6em;
}

@media (max-width: 480px) {
  .event-feature-card { padding: 28px 22px; }
}

/* ==========================================================================
   Booking
   ========================================================================== */

.booking { background: var(--color-white); }

/* Verfügbarkeits-Widget */
.availability {
  background: var(--color-cream-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 32px 26px;
  margin-bottom: 56px;
}

.availability-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.availability-title { font-size: 1.3rem; margin: 0; }

.availability-nav { display: flex; gap: 8px; }

.availability-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage-dark);
  background: transparent;
  color: var(--color-sage-dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.availability-nav-btn:hover { background: var(--color-sage-dark); color: var(--color-white); }

.availability-status {
  text-align: center;
  padding: 20px 12px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}
.availability-status[hidden] { display: none; }

.availability-body {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.avail-day {
  flex: 0 0 126px;
  scroll-snap-align: start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avail-day--closed { opacity: 0.6; }

.avail-day-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}
.avail-day-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  color: var(--color-gold);
  font-weight: 600;
}
.avail-day-date { font-size: 1rem; color: var(--color-text); }

.avail-closed-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 8px 0 0;
  text-align: center;
}

.avail-call-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-sage-dark);
}

.avail-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 2px;
}

.avail-slot {
  width: 100%;
  padding: 7px 4px;
  border-radius: 999px;
  border: 1.5px solid var(--color-sage-dark);
  background: var(--color-white);
  color: var(--color-sage-dark);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.avail-slot:hover { background: var(--color-sage-dark); color: var(--color-white); }

.avail-slot--selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.avail-slot--busy {
  border-color: var(--color-border);
  background: var(--color-beige);
  color: var(--color-text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.7;
}

.availability-hint {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.booking-intro { position: sticky; top: 120px; }

.booking-notice {
  background: var(--color-beige);
  border-left: 3px solid var(--color-gold);
  padding: 16px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--color-text);
  margin-top: 1.4em;
}

.booking-form {
  background: var(--color-cream-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--color-text);
}

.optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.85em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-sage-dark);
}

textarea { resize: vertical; min-height: 90px; }

#datum[readonly], #uhrzeit[readonly] {
  background: var(--color-beige);
  color: var(--color-text);
  cursor: pointer;
}

.slot-picker-hint {
  margin: -10px 0 20px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-muted);
}

/* Honeypot field: hidden from sighted users and screen readers, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.payment-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.policy-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.policy-box h3 {
  font-size: 0.98rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.policy-box p {
  font-size: 0.87rem;
  margin-bottom: 0;
}

.form-checkboxes { margin-bottom: 26px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  cursor: pointer;
}
.checkbox-row input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-sage-dark);
}

.form-message {
  margin-top: 18px;
  font-size: 0.92rem;
  min-height: 1em;
}
.form-message--success {
  color: var(--color-sage-dark);
  font-weight: 500;
}
.form-message--error {
  color: #a34a3f;
  font-weight: 500;
}

.alt-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 780px;
  margin: 56px auto 44px;
}

.contact-block address { font-style: normal; color: var(--color-text-muted); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 400;
  color: var(--color-text-muted);
}
.hours-table th { color: var(--color-text); font-weight: 500; }

.hours-note { font-size: 0.82rem; font-style: italic; color: var(--color-text-muted); }

.parking-note {
  font-size: 0.86rem;
  font-style: italic;
  margin-top: 12px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #4f6048;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.6em;
}

.footer-col address { font-style: normal; margin-bottom: 0.6em; }
.footer-col p { margin-bottom: 0.4em; color: rgba(255, 255, 255, 0.82); }
.footer-col a { color: rgba(255, 255, 255, 0.82); }
.footer-col a:hover { color: var(--color-gold-light); }

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1em;
}

.footer-hours li, .footer-legal li { margin-bottom: 0.6em; font-size: 0.92rem; }

.footer-bottom {
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Legal pages (impressum / datenschutz / agb)
   ========================================================================== */

.legal-main {
  padding-top: 160px;
  padding-bottom: 100px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 { margin-bottom: 0.3em; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 1.6em;
}
.legal-content p, .legal-content li { color: var(--color-text-muted); }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-note {
  background: var(--color-beige);
  border-left: 3px solid var(--color-gold);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 1.6em 0;
}
.back-link { display: inline-block; margin-bottom: 2em; }

/* ==========================================================================
   Scroll offset for anchor targets (fixed header)
   ========================================================================== */

section[id], main[id] { scroll-margin-top: 88px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .about-grid,
  .booking-inner {
    grid-template-columns: 1fr;
  }
  .booking-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  section { padding: 68px 0; }

  .availability { padding: 22px 18px 18px; margin-bottom: 40px; }
  .avail-day { flex: 0 0 108px; }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 24px;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1.05rem;
  }

  .header-actions .btn-small { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding-top: 120px; padding-bottom: 72px; }

  .form-row { grid-template-columns: 1fr; }

  .booking-form { padding: 26px; }
}

@media (max-width: 480px) {
  .btn-large { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   Event-Banner (temporär) & Anmelde-Modal
   ========================================================================== */

.event-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-beige));
  border-bottom: 1px solid var(--color-gold);
}
.event-banner[hidden] { display: none; }

.event-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.event-banner-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text);
}
.event-banner-text strong { font-family: var(--font-serif); }

.event-banner-actions { display: flex; align-items: center; gap: 10px; }

.event-banner-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 2px 8px;
}
.event-banner-close:hover { color: var(--color-text); }

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.event-modal[hidden] { display: none; }

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(59, 54, 46, 0.55);
}

.event-modal-dialog {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}

.event-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}
.event-modal-close:hover { color: var(--color-text); }

.event-modal-heading { font-size: 1.4rem; margin-bottom: 0.3em; }
.event-modal-description { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 1.4em; }

.treatment-modal-dialog { max-width: 560px; padding: 0 0 32px; overflow: hidden; }
.treatment-modal-dialog .event-modal-close {
  background: rgba(250, 246, 239, 0.85);
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.treatment-modal-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-cream-alt);
  margin-bottom: 24px;
}
.treatment-modal-image-wrap[hidden] { display: none; }
.treatment-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-modal-dialog .treatment-subtitle,
.treatment-modal-dialog .event-modal-heading,
.treatment-modal-dialog .treatment-meta,
.treatment-modal-dialog .btn {
  margin-left: 32px;
  margin-right: 32px;
}
.treatment-modal-dialog .treatment-meta { margin-bottom: 1.6em; }

@media (max-width: 480px) {
  .event-modal-dialog { padding: 28px 20px; }
  .treatment-modal-dialog { padding: 0 0 24px; }
  .treatment-modal-dialog .treatment-subtitle,
  .treatment-modal-dialog .event-modal-heading,
  .treatment-modal-dialog .treatment-meta,
  .treatment-modal-dialog .btn {
    margin-left: 20px;
    margin-right: 20px;
  }
}
