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

    :root {
      --white: #FDFCFB;
      --beige: #E1D2C9;
      --gold: #C09068;
      --red: #EB2E49;
      --dark: #2A2220;
      --mid: #6B5E59;
      --light-bg: #F7F3F0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: #C4243D; transform: translateY(-1px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 30px;
      border: 1.5px solid var(--dark);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--dark); color: #fff; }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in.delay-1 { transition-delay: 0.1s; }
    .fade-in.delay-2 { transition-delay: 0.2s; }
    .fade-in.delay-3 { transition-delay: 0.35s; }

    /* ── SUBPAGE HEADER ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(253, 252, 251, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--beige);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(42,34,32,0.06); }

    .nav-logo-img {
      height: 24px;
      width: auto;
      display: block;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }
    .back-link svg { transition: transform 0.2s; }
    .back-link:hover { color: var(--red); gap: 14px; }
    .back-link:hover svg { transform: translateX(-3px); }

    /* ── HERO ── */
    #hero {
      padding-top: 72px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      min-height: 88vh;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* Fixed-ish left gutter instead of auto-centering within the grid cell
         (which collapsed to 0 on smaller screens and over-shot on wide ones). */
      max-width: none;
      margin: 0;
      padding: 80px 72px 80px clamp(40px, 6vw, 120px);
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-line { width: 40px; height: 1.5px; background: var(--gold); }
    .hero-eyebrow span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-text h1 {
      font-size: clamp(56px, 6vw, 104px);
      font-weight: 300;
      line-height: 0.95;
      letter-spacing: -0.01em;
      margin-bottom: 36px;
    }
    .hero-text h1 .reg { color: var(--red); font-size: 0.45em; vertical-align: super; }

    .hero-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.5vw, 34px);
      font-weight: 400;
      font-style: normal;
      line-height: 1.32;
      color: var(--dark);
      max-width: 30ch;
    }
    .hero-lead em { color: var(--red); font-style: italic; }

    .hero-image {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .hero-image-bg {
      position: absolute;
      inset: 0;
      background: url('/img/wirkungsmacher.jpg') center 30% / cover no-repeat;
    }
    .hero-image-media {
      position: relative;
      flex: 1 1 auto;
      min-height: 0;
    }
    .hero-image-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* ── CRYSTAL LEGEND ── */
    .crystal-legend {
      list-style: none;
      margin: 0;
      padding: 0 24px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 28px;
    }
    .crystal-legend li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--dark);
    }
    .crystal-legend-dot {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── INTRO BAND ── */
    #intro {
      background: #F7F3F0;
      padding: 110px 0;
    }
    .intro-inner {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 40px;
      text-align: center;
    }
    .intro-inner p {
      font-size: clamp(17px, 1.7vw, 21px);
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
    }
    .intro-inner p strong { color: var(--dark); font-weight: 600; }
    .intro-divider {
      width: 64px;
      height: 2px;
      background: var(--red);
      margin: 0 auto 44px;
    }

    /* ── INHALT + DAUER ── */
    #inhalt {
      padding: 120px 0;
      background: var(--white);
    }
    .inhalt-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .inhalt-left h2 {
      font-size: clamp(34px, 3.4vw, 50px);
      font-weight: 300;
      line-height: 1.12;
      margin-bottom: 14px;
    }
    .inhalt-left h2 em { font-style: italic; color: var(--gold); }
    .inhalt-kreislauf {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 44px;
      max-width: 46ch;
    }

    .inhalt-list-intro {
      font-size: 15.5px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .inhalt-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .inhalt-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 14px;
      align-items: start;
      font-size: 15.5px;
      line-height: 1.5;
      color: var(--dark);
    }
    .inhalt-list .marker {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--red);
    }

    /* Info / booking card */
    .inhalt-card {
      position: sticky;
      top: 100px;
      background: var(--light-bg);
      padding: 44px 40px;
      border-top: 3px solid var(--red);
    }
    .inhalt-card .card-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .card-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 20px 0;
      border-bottom: 1px solid var(--beige);
    }
    .card-row:first-of-type { padding-top: 0; }
    .card-row .label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
    }
    .card-row .value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.2;
    }
    .card-row .value small {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      color: var(--mid);
      font-weight: 400;
      display: block;
      margin-top: 4px;
    }
    .inhalt-card .btn-primary {
      width: 100%;
      justify-content: center;
      margin-top: 32px;
    }
    .inhalt-card .card-note {
      font-size: 12px;
      color: var(--mid);
      text-align: center;
      margin-top: 14px;
      line-height: 1.5;
    }

    /* ── CTA ── */
    #cta {
      padding: 120px 0;
      background: var(--light-bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 400px;
      color: var(--beige);
      opacity: 0.4;
      line-height: 1;
      pointer-events: none;
    }
    #cta .section-label { text-align: center; }
    #cta h2 {
      font-size: clamp(38px, 4.5vw, 66px);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 22px;
      position: relative;
    }
    #cta h2 em { font-style: italic; color: var(--red); }
    #cta p {
      font-size: 16px;
      color: var(--mid);
      max-width: 480px;
      margin: 0 auto 44px;
      line-height: 1.7;
      position: relative;
    }
    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* ── FOOTER ── */
    footer {
      background: #505050;
      padding: 72px 0 40px;
      color: rgba(255,255,255,0.6);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo {
      color: #fff;
      font-size: 24px;
      font-family: 'Cormorant Garamond', serif;
      text-decoration: none;
    }
    .footer-logo { display: inline-block; line-height: 0; }
    .footer-logo img {
      height: 30px;
      width: auto;
      display: block;
    }
    .footer-brand p {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      max-width: 260px;
    }
    .footer-social { display: flex; gap: 12px; margin-top: 24px; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s;
    }
    .social-link:hover { border-color: var(--red); color: #fff; background: var(--red); }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .container { padding: 0 24px; }
      nav { padding: 0 24px; }
      #hero { grid-template-columns: 1fr; min-height: 0; }
      .hero-text { padding: 56px 24px 48px; }
      .hero-image { min-height: 360px; }
      .inhalt-grid { grid-template-columns: 1fr; gap: 48px; }
      .inhalt-list { grid-template-columns: 1fr; }
      .inhalt-card { position: static; }
      .intro-inner { padding: 0 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }
/* ── NAV LOGO (icon + wordmark) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  height: 34px;
  width: auto;
  display: block;
}

/* ── NAV LOGO: mobile stacked & smaller ── */
@media (max-width: 900px) {
  .nav-logo {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .nav-logo-icon { height: 26px; }
  .nav-logo-img { height: 17px; }
}
